Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade to blitz 2.0.9 #229

Merged
merged 34 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
a51652c
chore: update gitignore
Vandivier May 15, 2024
ca713f3
chore: update deps
Vandivier May 15, 2024
72c368c
feat: commit app components
Vandivier May 15, 2024
6111fd9
chore: tsconfig auto update
Vandivier May 15, 2024
4ea7e90
chore: typed routes
Vandivier May 15, 2024
207fedc
fix: illegal home page ref
Vandivier May 15, 2024
d1a2ffe
fix: temp use compat router
Vandivier May 15, 2024
1d9dfff
feat: upgrade rpcHandler
Vandivier May 15, 2024
6f88625
Merge remote-tracking branch 'origin/main' into 189-upgrade-blitz-subv-9
Vandivier May 20, 2024
e926412
chore: dev server lock
Vandivier May 20, 2024
213e993
feat: move user logic
Vandivier May 20, 2024
7723c05
chore: rename schemas
Vandivier May 20, 2024
f361b34
feat: move checklists
Vandivier May 20, 2024
7f5965a
chore: rm legacy blitz server
Vandivier May 20, 2024
ab9aa58
fix: some imports
Vandivier May 20, 2024
e66cafc
feat: migrate signup.ts
Vandivier May 20, 2024
1332307
chore: dedupe more
Vandivier May 20, 2024
aea5cb3
feat: migrate change pass
Vandivier May 20, 2024
53fc33a
chore: rm dup forgot pass mutation
Vandivier May 20, 2024
67d6b90
fix: imports
Vandivier May 21, 2024
fc39093
chore: bump next
Vandivier May 21, 2024
e6e15f8
feat: migrate tailwind
Vandivier May 21, 2024
114c27d
feat: migrate login page
Vandivier May 21, 2024
09ff659
feat: better hooks article
Vandivier May 21, 2024
c2dea69
Merge remote-tracking branch 'origin/main' into 189-upgrade-blitz-subv-9
Vandivier May 21, 2024
68d048e
fix: some imports
Vandivier May 21, 2024
1e0edfc
fix: build
Vandivier May 21, 2024
2be8858
feat: migrate auth pages
Vandivier May 21, 2024
2579e37
fix: forgot pass page
Vandivier May 21, 2024
10150f2
feat: rm routes from topnav
Vandivier May 21, 2024
5a49221
feat: use compat router less
Vandivier May 21, 2024
6dee2e0
feat: prioritize image load
Vandivier May 21, 2024
30c6cc4
fix: async issue on home
Vandivier May 21, 2024
705646b
feat: deleteUser
Vandivier May 22, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
57 changes: 41 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,28 +1,52 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
node_modules
node_modules/
.pnp
.pnp.js
.pnp.*
.npm
web_modules/

# Yarn related
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
.pnp.*
.npm
web_modules/

# blitz
/.blitz/
# testing
/coverage

# next.js
/.next/
*.sqlite
*.sqlite-journal
.now
*.sqlite*
*.sqlite-journal

# Blitz.js
.blitz**
blitz-log.log
# ignore physical backups of blitz db
db/bak.user*.json
db/premium-checklists.json

# production/build
/out/

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env*
.env.local
.env.*.local
.envrc
Expand All @@ -31,6 +55,9 @@ blitz-log.log
logs
*.log

# Vercel
.vercel

# Runtime data
pids
*.pid
Expand All @@ -44,23 +71,21 @@ pids
lib-cov

# Caches
*.tsbuildinfo
.yarn-integrity
.eslintcache
.node_repl_history
.yarn-integrity
*.tsbuildinfo
next-env.d.ts

# Serverless directories
.serverless/

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# ignore physical backups of blitz db
db/bak.user*.json
db/premium-checklists.json
.vercel


# Stripe and Teachable data
stripe_paymen*.json
teachable_dat*.json

# Database backups
db/*.bak.json
1 change: 1 addition & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
/// <reference types="next/navigation-types/compat/navigation" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
3 changes: 3 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ const { withBlitz } = require("@blitzjs/next")
* @type {import('@blitzjs/next').BlitzConfig}
**/
const config = {
experimental: {
typedRoutes: true,
},
images: {
domains: ["files.cdn.printful.com"],
},
Expand Down
Loading