create-cloudflare 2.50.6 → 2.50.8
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/dist/cli.js +2187 -2100
- package/package.json +4 -4
- package/templates/angular/pages/c3.ts +1 -5
- package/templates/angular/workers/c3.ts +1 -5
- package/templates/common/js/__dot__gitignore +4 -9
- package/templates/common/ts/__dot__gitignore +0 -8
- package/templates/hello-world/js/__dot__gitignore +4 -9
- package/templates/hello-world/py/__dot__gitignore +4 -9
- package/templates/hello-world/ts/__dot__gitignore +4 -9
- package/templates/hello-world-assets-only/templates/__dot__gitignore +167 -0
- package/templates/hello-world-durable-object/js/__dot__gitignore +4 -9
- package/templates/hello-world-durable-object/py/__dot__gitignore +4 -9
- package/templates/hello-world-durable-object/ts/__dot__gitignore +4 -9
- package/templates/hello-world-durable-object-with-assets/js/__dot__gitignore +4 -9
- package/templates/hello-world-durable-object-with-assets/py/__dot__gitignore +4 -9
- package/templates/hello-world-durable-object-with-assets/ts/__dot__gitignore +4 -9
- package/templates/hello-world-with-assets/js/__dot__gitignore +4 -9
- package/templates/hello-world-with-assets/py/__dot__gitignore +4 -9
- package/templates/hello-world-with-assets/ts/__dot__gitignore +4 -9
- package/templates/openapi/ts/__dot__gitignore +4 -9
- package/templates/pre-existing/js/__dot__gitignore +4 -9
- package/templates/queues/js/__dot__gitignore +4 -9
- package/templates/queues/ts/__dot__gitignore +4 -9
- package/templates/scheduled/js/__dot__gitignore +4 -9
- package/templates/scheduled/ts/__dot__gitignore +4 -9
|
@@ -92,14 +92,6 @@ web_modules/
|
|
|
92
92
|
|
|
93
93
|
.yarn-integrity
|
|
94
94
|
|
|
95
|
-
# dotenv environment variable files
|
|
96
|
-
|
|
97
|
-
.env
|
|
98
|
-
.env.development.local
|
|
99
|
-
.env.test.local
|
|
100
|
-
.env.production.local
|
|
101
|
-
.env.local
|
|
102
|
-
|
|
103
95
|
# parcel-bundler cache (https://parceljs.org/)
|
|
104
96
|
|
|
105
97
|
.cache
|
|
@@ -168,5 +160,8 @@ dist
|
|
|
168
160
|
|
|
169
161
|
# wrangler project
|
|
170
162
|
|
|
171
|
-
.dev.vars
|
|
163
|
+
.dev.vars*
|
|
164
|
+
!.dev.vars.example
|
|
165
|
+
.env*
|
|
166
|
+
!.env.example
|
|
172
167
|
.wrangler/
|