create-ncf 0.1.0 → 0.1.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-ncf",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Scaffold a Next.js 15 + Cloudflare Workers project with optional tRPC, Drizzle, auth, and more",
5
5
  "type": "module",
6
6
  "exports": "./dist/index.js",
@@ -0,0 +1,41 @@
1
+ # dependencies
2
+ /node_modules
3
+ /.pnp
4
+ .pnp.js
5
+ .yarn/install-state.gz
6
+
7
+ # testing
8
+ /coverage
9
+
10
+ # next.js
11
+ /.next/
12
+ /out/
13
+
14
+ # production
15
+ /build
16
+
17
+ # misc
18
+ .DS_Store
19
+ *.pem
20
+
21
+ # debug
22
+ npm-debug.log*
23
+ yarn-debug.log*
24
+ yarn-error.log*
25
+
26
+ # local env files
27
+ .env*.local
28
+
29
+ # typescript
30
+ *.tsbuildinfo
31
+ next-env.d.ts
32
+
33
+ # OpenNext
34
+ /.open-next
35
+
36
+ # wrangler files
37
+ .wrangler
38
+ .dev.vars*
39
+ !.dev.vars.example
40
+ .env*
41
+ !.env.example