Skip to content

Commit 4814ce6

Browse files
authored
Merge pull request #229 from Vandivier/189-upgrade-blitz-subv-9
chore: upgrade to blitz 2.0.9
2 parents de06f3e + 705646b commit 4814ce6

File tree

100 files changed

+3643
-4169
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+3643
-4169
lines changed

Diff for: .eslintrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "next/core-web-vitals"
3+
}

Diff for: .gitignore

+41-16
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,52 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
13
# dependencies
2-
node_modules
4+
node_modules/
5+
.pnp
6+
.pnp.js
7+
.pnp.*
8+
.npm
9+
web_modules/
10+
11+
# Yarn related
312
.yarn/*
413
!.yarn/patches
514
!.yarn/plugins
615
!.yarn/releases
716
!.yarn/sdks
817
!.yarn/versions
9-
.pnp.*
10-
.npm
11-
web_modules/
1218

13-
# blitz
14-
/.blitz/
19+
# testing
20+
/coverage
21+
22+
# next.js
1523
/.next/
16-
*.sqlite
17-
*.sqlite-journal
1824
.now
25+
*.sqlite*
26+
*.sqlite-journal
27+
28+
# Blitz.js
1929
.blitz**
2030
blitz-log.log
31+
# ignore physical backups of blitz db
32+
db/bak.user*.json
33+
db/premium-checklists.json
34+
35+
# production/build
36+
/out/
2137

2238
# misc
2339
.DS_Store
40+
*.pem
41+
42+
# debug
43+
npm-debug.log*
44+
yarn-debug.log*
45+
yarn-error.log*
46+
.pnpm-debug.log*
2447

2548
# local env files
49+
.env*
2650
.env.local
2751
.env.*.local
2852
.envrc
@@ -31,6 +55,9 @@ blitz-log.log
3155
logs
3256
*.log
3357

58+
# Vercel
59+
.vercel
60+
3461
# Runtime data
3562
pids
3663
*.pid
@@ -44,23 +71,21 @@ pids
4471
lib-cov
4572

4673
# Caches
47-
*.tsbuildinfo
74+
.yarn-integrity
4875
.eslintcache
4976
.node_repl_history
50-
.yarn-integrity
77+
*.tsbuildinfo
78+
next-env.d.ts
5179

5280
# Serverless directories
5381
.serverless/
5482

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

58-
# ignore physical backups of blitz db
59-
db/bak.user*.json
60-
db/premium-checklists.json
61-
.vercel
62-
63-
86+
# Stripe and Teachable data
6487
stripe_paymen*.json
6588
teachable_dat*.json
89+
90+
# Database backups
6691
db/*.bak.json

Diff for: next-env.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3+
/// <reference types="next/navigation-types/compat/navigation" />
34

45
// NOTE: This file should not be edited
56
// see https://nextjs.org/docs/basic-features/typescript for more information.

Diff for: next.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ const { withBlitz } = require("@blitzjs/next")
55
* @type {import('@blitzjs/next').BlitzConfig}
66
**/
77
const config = {
8+
experimental: {
9+
typedRoutes: true,
10+
},
811
images: {
912
domains: ["files.cdn.printful.com"],
1013
},

0 commit comments

Comments
 (0)