create-cloudflare 2.50.6 → 2.50.7
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 +23 -15
- 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-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
package/dist/cli.js
CHANGED
|
@@ -78436,7 +78436,7 @@ var Yargs = YargsFactory(esm_default);
|
|
|
78436
78436
|
var yargs_default = Yargs;
|
|
78437
78437
|
|
|
78438
78438
|
// package.json
|
|
78439
|
-
var version = "2.50.
|
|
78439
|
+
var version = "2.50.7";
|
|
78440
78440
|
|
|
78441
78441
|
// src/metrics.ts
|
|
78442
78442
|
var import_node_async_hooks = require("node:async_hooks");
|
|
@@ -79241,7 +79241,7 @@ var package_default = {
|
|
|
79241
79241
|
dependencies: {
|
|
79242
79242
|
"create-astro": "4.13.0",
|
|
79243
79243
|
"create-analog": "1.8.1",
|
|
79244
|
-
"@angular/create": "
|
|
79244
|
+
"@angular/create": "20.1.3",
|
|
79245
79245
|
"create-docusaurus": "3.8.1",
|
|
79246
79246
|
"create-hono": "0.19.2",
|
|
79247
79247
|
"create-next-app": "15.3.5",
|
|
@@ -79450,11 +79450,7 @@ var c3_default = config;
|
|
|
79450
79450
|
var import_node_path3 = require("node:path");
|
|
79451
79451
|
var { npm: npm2 } = detectPackageManager();
|
|
79452
79452
|
var generate2 = async (ctx) => {
|
|
79453
|
-
await runFrameworkGenerator(ctx, [
|
|
79454
|
-
ctx.project.name,
|
|
79455
|
-
"--ssr",
|
|
79456
|
-
"--server-routing"
|
|
79457
|
-
]);
|
|
79453
|
+
await runFrameworkGenerator(ctx, [ctx.project.name, "--ssr"]);
|
|
79458
79454
|
logRaw("");
|
|
79459
79455
|
};
|
|
79460
79456
|
var configure2 = async (ctx) => {
|
|
@@ -79540,11 +79536,7 @@ var c3_default2 = config2;
|
|
|
79540
79536
|
var import_node_path4 = require("node:path");
|
|
79541
79537
|
var { npm: npm3 } = detectPackageManager();
|
|
79542
79538
|
var generate3 = async (ctx) => {
|
|
79543
|
-
await runFrameworkGenerator(ctx, [
|
|
79544
|
-
ctx.project.name,
|
|
79545
|
-
"--ssr",
|
|
79546
|
-
"--server-routing"
|
|
79547
|
-
]);
|
|
79539
|
+
await runFrameworkGenerator(ctx, [ctx.project.name, "--ssr"]);
|
|
79548
79540
|
logRaw("");
|
|
79549
79541
|
};
|
|
79550
79542
|
var configure3 = async (ctx) => {
|
|
@@ -81898,7 +81890,7 @@ var c3_default50 = config46;
|
|
|
81898
81890
|
var import_node_assert2 = __toESM(require("node:assert"));
|
|
81899
81891
|
|
|
81900
81892
|
// ../wrangler/package.json
|
|
81901
|
-
var version2 = "4.
|
|
81893
|
+
var version2 = "4.27.0";
|
|
81902
81894
|
|
|
81903
81895
|
// src/git.ts
|
|
81904
81896
|
var offerGit = async (ctx) => {
|
|
@@ -82697,11 +82689,27 @@ var addWranglerToGitIgnore = (ctx) => {
|
|
|
82697
82689
|
wranglerGitIgnoreFilesToAdd.push(".wrangler");
|
|
82698
82690
|
}
|
|
82699
82691
|
const hasDotDevDotVars = existingGitIgnoreContent.match(
|
|
82700
|
-
/^\/?\.dev\.vars(
|
|
82692
|
+
/^\/?\.dev\.vars\*(\s|$)/m
|
|
82701
82693
|
);
|
|
82702
82694
|
if (!hasDotDevDotVars) {
|
|
82703
82695
|
wranglerGitIgnoreFilesToAdd.push(".dev.vars*");
|
|
82704
82696
|
}
|
|
82697
|
+
const hasDotDevVarsExample = existingGitIgnoreContent.match(
|
|
82698
|
+
/^!\/?\.dev\.vars\.example(\s|$)/m
|
|
82699
|
+
);
|
|
82700
|
+
if (!hasDotDevVarsExample) {
|
|
82701
|
+
wranglerGitIgnoreFilesToAdd.push("!.dev.vars.example");
|
|
82702
|
+
}
|
|
82703
|
+
const hasDotEnv = existingGitIgnoreContent.match(/^\/?\.env\*(\s|$)/m);
|
|
82704
|
+
if (!hasDotEnv) {
|
|
82705
|
+
wranglerGitIgnoreFilesToAdd.push(".env*");
|
|
82706
|
+
}
|
|
82707
|
+
const hasDotEnvExample = existingGitIgnoreContent.match(
|
|
82708
|
+
/^!\/?\.env\.example(\s|$)/m
|
|
82709
|
+
);
|
|
82710
|
+
if (!hasDotEnvExample) {
|
|
82711
|
+
wranglerGitIgnoreFilesToAdd.push("!.env.example");
|
|
82712
|
+
}
|
|
82705
82713
|
if (wranglerGitIgnoreFilesToAdd.length === 0) {
|
|
82706
82714
|
return;
|
|
82707
82715
|
}
|
|
@@ -82711,7 +82719,7 @@ var addWranglerToGitIgnore = (ctx) => {
|
|
|
82711
82719
|
"",
|
|
82712
82720
|
...!existingGitIgnoreContent.match(/\n\s*$/) ? [""] : []
|
|
82713
82721
|
];
|
|
82714
|
-
if (wranglerGitIgnoreFilesToAdd.length > 1) {
|
|
82722
|
+
if (!hasDotWrangler && wranglerGitIgnoreFilesToAdd.length > 1) {
|
|
82715
82723
|
linesToAppend.push("# wrangler files");
|
|
82716
82724
|
}
|
|
82717
82725
|
wranglerGitIgnoreFilesToAdd.forEach((line) => linesToAppend.push(line));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-cloudflare",
|
|
3
|
-
"version": "2.50.
|
|
3
|
+
"version": "2.50.7",
|
|
4
4
|
"description": "A CLI for creating and deploying new applications to Cloudflare.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cloudflare",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@babel/parser": "^7.21.3",
|
|
31
31
|
"@babel/types": "^7.21.4",
|
|
32
32
|
"@clack/prompts": "^0.6.3",
|
|
33
|
-
"@cloudflare/workers-types": "^4.
|
|
33
|
+
"@cloudflare/workers-types": "^4.20250730.0",
|
|
34
34
|
"@iarna/toml": "^3.0.0",
|
|
35
35
|
"@types/command-exists": "^1.2.0",
|
|
36
36
|
"@types/cross-spawn": "^6.0.2",
|
|
@@ -75,9 +75,9 @@
|
|
|
75
75
|
"@cloudflare/cli": "1.1.1",
|
|
76
76
|
"@cloudflare/eslint-config-worker": "1.1.0",
|
|
77
77
|
"@cloudflare/mock-npm-registry": "0.0.0",
|
|
78
|
-
"@cloudflare/vite-plugin": "1.
|
|
78
|
+
"@cloudflare/vite-plugin": "1.11.0",
|
|
79
79
|
"@cloudflare/workers-tsconfig": "0.0.0",
|
|
80
|
-
"wrangler": "4.
|
|
80
|
+
"wrangler": "4.27.0"
|
|
81
81
|
},
|
|
82
82
|
"engines": {
|
|
83
83
|
"node": ">=18.14.1"
|
|
@@ -12,11 +12,7 @@ import type { C3Context, PackageJson } from "types";
|
|
|
12
12
|
const { npm } = detectPackageManager();
|
|
13
13
|
|
|
14
14
|
const generate = async (ctx: C3Context) => {
|
|
15
|
-
await runFrameworkGenerator(ctx, [
|
|
16
|
-
ctx.project.name,
|
|
17
|
-
"--ssr",
|
|
18
|
-
"--server-routing" /** Dev Preview API */,
|
|
19
|
-
]);
|
|
15
|
+
await runFrameworkGenerator(ctx, [ctx.project.name, "--ssr"]);
|
|
20
16
|
logRaw("");
|
|
21
17
|
};
|
|
22
18
|
|
|
@@ -12,11 +12,7 @@ import type { C3Context, PackageJson } from "types";
|
|
|
12
12
|
const { npm } = detectPackageManager();
|
|
13
13
|
|
|
14
14
|
const generate = async (ctx: C3Context) => {
|
|
15
|
-
await runFrameworkGenerator(ctx, [
|
|
16
|
-
ctx.project.name,
|
|
17
|
-
"--ssr",
|
|
18
|
-
"--server-routing" /** Dev Preview API */,
|
|
19
|
-
]);
|
|
15
|
+
await runFrameworkGenerator(ctx, [ctx.project.name, "--ssr"]);
|
|
20
16
|
logRaw("");
|
|
21
17
|
};
|
|
22
18
|
|
|
@@ -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/
|
|
@@ -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/
|
|
@@ -48,14 +48,6 @@ jspm_packages/
|
|
|
48
48
|
|
|
49
49
|
\*.tgz
|
|
50
50
|
|
|
51
|
-
# dotenv environment variable files
|
|
52
|
-
|
|
53
|
-
.env
|
|
54
|
-
.env.development.local
|
|
55
|
-
.env.test.local
|
|
56
|
-
.env.production.local
|
|
57
|
-
.env.local
|
|
58
|
-
|
|
59
51
|
# public
|
|
60
52
|
|
|
61
53
|
# Stores VSCode versions used for testing VSCode extensions
|
|
@@ -64,5 +56,8 @@ jspm_packages/
|
|
|
64
56
|
|
|
65
57
|
# wrangler project
|
|
66
58
|
|
|
67
|
-
.dev.vars
|
|
59
|
+
.dev.vars*
|
|
60
|
+
!.dev.vars.example
|
|
61
|
+
.env*
|
|
62
|
+
!.env.example
|
|
68
63
|
.wrangler/
|
|
@@ -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/
|
|
@@ -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/
|
|
@@ -48,14 +48,6 @@ jspm_packages/
|
|
|
48
48
|
|
|
49
49
|
\*.tgz
|
|
50
50
|
|
|
51
|
-
# dotenv environment variable files
|
|
52
|
-
|
|
53
|
-
.env
|
|
54
|
-
.env.development.local
|
|
55
|
-
.env.test.local
|
|
56
|
-
.env.production.local
|
|
57
|
-
.env.local
|
|
58
|
-
|
|
59
51
|
# public
|
|
60
52
|
|
|
61
53
|
# Stores VSCode versions used for testing VSCode extensions
|
|
@@ -64,5 +56,8 @@ jspm_packages/
|
|
|
64
56
|
|
|
65
57
|
# wrangler project
|
|
66
58
|
|
|
67
|
-
.dev.vars
|
|
59
|
+
.dev.vars*
|
|
60
|
+
!.dev.vars.example
|
|
61
|
+
.env*
|
|
62
|
+
!.env.example
|
|
68
63
|
.wrangler/
|
|
@@ -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/
|
|
@@ -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/
|
|
@@ -48,14 +48,6 @@ jspm_packages/
|
|
|
48
48
|
|
|
49
49
|
\*.tgz
|
|
50
50
|
|
|
51
|
-
# dotenv environment variable files
|
|
52
|
-
|
|
53
|
-
.env
|
|
54
|
-
.env.development.local
|
|
55
|
-
.env.test.local
|
|
56
|
-
.env.production.local
|
|
57
|
-
.env.local
|
|
58
|
-
|
|
59
51
|
# public
|
|
60
52
|
|
|
61
53
|
# Stores VSCode versions used for testing VSCode extensions
|
|
@@ -64,5 +56,8 @@ jspm_packages/
|
|
|
64
56
|
|
|
65
57
|
# wrangler project
|
|
66
58
|
|
|
67
|
-
.dev.vars
|
|
59
|
+
.dev.vars*
|
|
60
|
+
!.dev.vars.example
|
|
61
|
+
.env*
|
|
62
|
+
!.env.example
|
|
68
63
|
.wrangler/
|
|
@@ -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/
|
|
@@ -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/
|
|
@@ -48,14 +48,6 @@ jspm_packages/
|
|
|
48
48
|
|
|
49
49
|
\*.tgz
|
|
50
50
|
|
|
51
|
-
# dotenv environment variable files
|
|
52
|
-
|
|
53
|
-
.env
|
|
54
|
-
.env.development.local
|
|
55
|
-
.env.test.local
|
|
56
|
-
.env.production.local
|
|
57
|
-
.env.local
|
|
58
|
-
|
|
59
51
|
# public
|
|
60
52
|
|
|
61
53
|
# Stores VSCode versions used for testing VSCode extensions
|
|
@@ -64,5 +56,8 @@ jspm_packages/
|
|
|
64
56
|
|
|
65
57
|
# wrangler project
|
|
66
58
|
|
|
67
|
-
.dev.vars
|
|
59
|
+
.dev.vars*
|
|
60
|
+
!.dev.vars.example
|
|
61
|
+
.env*
|
|
62
|
+
!.env.example
|
|
68
63
|
.wrangler/
|
|
@@ -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/
|
|
@@ -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/
|
|
@@ -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/
|
|
@@ -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/
|
|
@@ -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/
|
|
@@ -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/
|
|
@@ -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/
|