Skip to content

Commit

Permalink
New MVP website for 2024 :excited:
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebrooker committed Mar 13, 2024
1 parent 2eb6ff9 commit d03aac2
Show file tree
Hide file tree
Showing 410 changed files with 18,823 additions and 44,174 deletions.
3 changes: 0 additions & 3 deletions .babelrc

This file was deleted.

3 changes: 0 additions & 3 deletions .eslintrc

This file was deleted.

62 changes: 60 additions & 2 deletions .gitignore
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
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20.11.1
893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.0.2.cjs

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions .yarnrc.yml
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
1 change: 0 additions & 1 deletion CNAME

This file was deleted.

6 changes: 1 addition & 5 deletions README.md
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).
22 changes: 0 additions & 22 deletions app.js

This file was deleted.

46 changes: 46 additions & 0 deletions app.json
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
}
}
}
147 changes: 0 additions & 147 deletions atomicCssConfig.js

This file was deleted.

6 changes: 6 additions & 0 deletions babel.config.js
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'],
}
}
Loading

0 comments on commit d03aac2

Please sign in to comment.