-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2eb6ff9
commit d03aac2
Showing
410 changed files
with
18,823 additions
and
44,174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,60 @@ | ||
node_modules/ | ||
public | ||
|
||
# @generated expo-cli sync-2b81b286409207a5da26e14c78851eb30d8ccbdb | ||
# The following patterns were generated by expo-cli | ||
|
||
expo-env.d.ts | ||
# @end expo-cli | ||
|
||
# keep types in repo to track them | ||
# **/types/**/*.d.ts | ||
# but map can be ignored and just published on npm | ||
**/types/**/*.d.ts.map | ||
|
||
.yarn/* | ||
!.yarn/patches | ||
!.yarn/plugins | ||
!.yarn/releases | ||
!.yarn/sdks | ||
!.yarn/versions | ||
|
||
.turbo | ||
|
||
.ultra.cache.json | ||
tmp | ||
*.tsbuildinfo | ||
*.tmp.js | ||
yarn-error.log | ||
dist | ||
tsconfig.tsbuildinfo | ||
node_modules | ||
**/_ | ||
**/tests/spec/out | ||
.DS_Store | ||
|
||
.next | ||
|
||
.vercel | ||
|
||
apps/site/out | ||
apps/kitchen-sink/ios | ||
|
||
.tamagui | ||
|
||
.idea | ||
|
||
.env | ||
# local env files | ||
.env.local | ||
.env.development.local | ||
.env.test.localp | ||
.env.production.local | ||
|
||
apps/kitchen-sink/ios | ||
apps/kitchen-sink/android | ||
|
||
# ignore until videos finalized | ||
apps/site/public/talk/ | ||
|
||
apps/studio/types/** | ||
|
||
.expo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
20.11.1 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
compressionLevel: mixed | ||
|
||
enableGlobalCache: false | ||
|
||
enableTelemetry: false | ||
|
||
logFilters: | ||
- code: YN0002 | ||
level: discard | ||
- code: YN0060 | ||
level: discard | ||
- code: YN0006 | ||
level: discard | ||
- code: YN0076 | ||
level: discard | ||
|
||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-4.0.2.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
# lukebrooker.com | ||
|
||
My new site in progress (2016) | ||
|
||
Built with [Gatsby](https://github.com/gatsbyjs/gatsby). | ||
This is my personal website available on [lukebrooker.com](https://lukebrooker.com). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"expo": { | ||
"name": "Luke Brooker", | ||
"slug": "lukebrooker", | ||
"version": "1.0.0", | ||
"orientation": "portrait", | ||
"icon": "./public/images/icon.png", | ||
"scheme": "lukebrooker", | ||
"userInterfaceStyle": "automatic", | ||
"splash": { | ||
"image": "./public/images/splash.png", | ||
"resizeMode": "contain", | ||
"backgroundColor": "#ffffff" | ||
}, | ||
"assetBundlePatterns": [ | ||
"**/*" | ||
], | ||
"ios": { | ||
"supportsTablet": true | ||
}, | ||
"android": { | ||
"adaptiveIcon": { | ||
"foregroundImage": "./public/images/adaptive-icon.png", | ||
"backgroundColor": "#ffffff" | ||
} | ||
}, | ||
"web": { | ||
"bundler": "metro", | ||
"output": "static", | ||
"favicon": "./public/images/favicon.png" | ||
}, | ||
"plugins": [ | ||
"expo-font", | ||
[ | ||
"expo-router", | ||
{ | ||
"origin": "https://lukebrooker.com" | ||
} | ||
] | ||
], | ||
"experiments": { | ||
"typedRoutes": true, | ||
"tsconfigPaths": true | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = (api) => { | ||
api.cache(true) | ||
return { | ||
presets: ['babel-preset-expo'], | ||
} | ||
} |
Oops, something went wrong.