create-vitnode-app 1.2.0-canary.34 → 1.2.0-canary.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,29 @@
1
+ # Dependencies
2
+ node_modules
3
+
4
+ # Turbo
5
+ .turbo
6
+
7
+ # Test & Build
8
+ /coverage
9
+ /desc
10
+ *.tsbuildinfo
11
+
12
+ # Misc
13
+ .DS_Store
14
+ *.pem
15
+ /.pnp
16
+ .pnp.js
17
+ npm-debug.log*
18
+ yarn-debug.log*
19
+ yarn-error.log*
20
+
21
+ # Local env files
22
+ .env
23
+ .env.local
24
+ .env.development.local
25
+ .env.test.local
26
+ .env.production.local
27
+
28
+ # Others
29
+ .vercel
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "api",
3
- "version": "1.2.0-canary.33",
3
+ "version": "1.2.0-canary.34",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "scripts": {
@@ -0,0 +1,29 @@
1
+ # Dependencies
2
+ node_modules
3
+
4
+ # Turbo
5
+ .turbo
6
+
7
+ # Test & Build
8
+ /coverage
9
+ /desc
10
+ *.tsbuildinfo
11
+
12
+ # Misc
13
+ .DS_Store
14
+ *.pem
15
+ /.pnp
16
+ .pnp.js
17
+ npm-debug.log*
18
+ yarn-debug.log*
19
+ yarn-error.log*
20
+
21
+ # Local env files
22
+ .env
23
+ .env.local
24
+ .env.development.local
25
+ .env.test.local
26
+ .env.production.local
27
+
28
+ # Others
29
+ .vercel
@@ -1,20 +1,22 @@
1
- # deps
2
- /node_modules
1
+ # Dependencies
2
+ node_modules
3
+
4
+ # Turbo
3
5
  .turbo
4
6
 
5
- # generated content
7
+ # Generated content
6
8
  .contentlayer
7
9
  .content-collections
8
10
  .source
9
11
 
10
- # test & build
12
+ # Test & Build
11
13
  /coverage
12
14
  /.next/
13
15
  /out/
14
16
  /build
15
17
  *.tsbuildinfo
16
18
 
17
- # misc
19
+ # Misc
18
20
  .DS_Store
19
21
  *.pem
20
22
  /.pnp
@@ -23,7 +25,13 @@ npm-debug.log*
23
25
  yarn-debug.log*
24
26
  yarn-error.log*
25
27
 
26
- # others
27
- .env*.local
28
+ # Local env files
29
+ .env
30
+ .env.local
31
+ .env.development.local
32
+ .env.test.local
33
+ .env.production.local
34
+
35
+ # Others
28
36
  .vercel
29
37
  next-env.d.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vitnode-app",
3
- "version": "1.2.0-canary.34",
3
+ "version": "1.2.0-canary.35",
4
4
  "description": "Create a new VitNode app in seconds.",
5
5
  "author": "VitNode Team",
6
6
  "license": "MIT",
@@ -34,7 +34,7 @@
34
34
  "@types/validate-npm-package-name": "^4.0.2",
35
35
  "eslint": "^9.30.1",
36
36
  "typescript": "^5.8.3",
37
- "@vitnode/eslint-config": "1.2.0-canary.34"
37
+ "@vitnode/eslint-config": "1.2.0-canary.35"
38
38
  },
39
39
  "scripts": {
40
40
  "build:scripts": "tsc && node dist/src/prepare/prepare.js",