@storm-software/cloudflare-tools 0.63.12 → 0.63.14
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/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/dist/chunk-DEJJ3E7B.mjs +209 -0
- package/dist/{chunk-LRAWVWAE.js → chunk-EDGMZMSI.js} +2 -2
- package/dist/{chunk-NT7QQFG2.mjs → chunk-HIF5FI2F.mjs} +1 -1
- package/dist/{chunk-LRDYN7AR.js → chunk-HYKWJFHA.js} +33 -34
- package/dist/{chunk-2MLHKN5R.js → chunk-N4ABVEWN.js} +1 -1
- package/dist/chunk-OCIDTLFH.js +262 -0
- package/dist/chunk-SUG73IGM.js +209 -0
- package/dist/{chunk-RWTT7VDO.mjs → chunk-UDO5RHFZ.mjs} +2 -3
- package/dist/chunk-WH4VPE6X.mjs +265 -0
- package/dist/{chunk-Q44FJY6W.mjs → chunk-ZLI4XREA.mjs} +1 -1
- package/dist/executors.js +1 -1
- package/dist/executors.mjs +1 -1
- package/dist/generators.js +3 -3
- package/dist/generators.mjs +2 -2
- package/dist/index.js +4 -4
- package/dist/index.mjs +3 -3
- package/dist/src/executors/cloudflare-publish/executor.js +1 -1
- package/dist/src/executors/cloudflare-publish/executor.mjs +1 -1
- package/dist/src/executors/serve/executor.js +2 -2
- package/dist/src/executors/serve/executor.mjs +1 -1
- package/dist/src/generators/init/generator.js +2 -2
- package/dist/src/generators/init/generator.mjs +1 -1
- package/dist/src/generators/worker/generator.js +3 -3
- package/dist/src/generators/worker/generator.mjs +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
import {
|
|
2
|
+
getConfig
|
|
3
|
+
} from "./chunk-7H2K6PT4.mjs";
|
|
4
|
+
import {
|
|
5
|
+
findWorkspaceRoot,
|
|
6
|
+
getStopwatch,
|
|
7
|
+
writeDebug,
|
|
8
|
+
writeError,
|
|
9
|
+
writeFatal,
|
|
10
|
+
writeInfo,
|
|
11
|
+
writeTrace
|
|
12
|
+
} from "./chunk-GOL5LHR6.mjs";
|
|
13
|
+
import {
|
|
14
|
+
generator_default
|
|
15
|
+
} from "./chunk-ZLI4XREA.mjs";
|
|
16
|
+
import {
|
|
17
|
+
__dirname
|
|
18
|
+
} from "./chunk-2ET7ZYTU.mjs";
|
|
19
|
+
|
|
20
|
+
// src/generators/worker/generator.ts
|
|
21
|
+
import {
|
|
22
|
+
convertNxGenerator,
|
|
23
|
+
ensurePackage,
|
|
24
|
+
formatFiles,
|
|
25
|
+
generateFiles,
|
|
26
|
+
joinPathFragments,
|
|
27
|
+
names,
|
|
28
|
+
readProjectConfiguration,
|
|
29
|
+
runTasksInSerial,
|
|
30
|
+
updateJson,
|
|
31
|
+
updateProjectConfiguration
|
|
32
|
+
} from "@nx/devkit";
|
|
33
|
+
import { determineProjectNameAndRootOptions } from "@nx/devkit/src/generators/project-name-and-root-utils";
|
|
34
|
+
import { applicationGenerator as nodeApplicationGenerator } from "@nx/node";
|
|
35
|
+
import { nxVersion } from "@nx/node/src/utils/versions";
|
|
36
|
+
import { join } from "path";
|
|
37
|
+
|
|
38
|
+
// src/generators/worker/libs/get-account-id.ts
|
|
39
|
+
function getAccountId(accountId) {
|
|
40
|
+
return `account_id = "${accountId}"`;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
// src/generators/worker/libs/vitest-imports.ts
|
|
44
|
+
var vitestImports = `import { describe, expect, it, beforeAll, afterAll } from 'vitest';`;
|
|
45
|
+
|
|
46
|
+
// src/generators/worker/libs/vitest-script.ts
|
|
47
|
+
var vitestScript = `"test": "vitest run"`;
|
|
48
|
+
|
|
49
|
+
// src/generators/worker/generator.ts
|
|
50
|
+
async function applicationGenerator(tree, schema) {
|
|
51
|
+
const stopwatch = getStopwatch("Storm Worker generator");
|
|
52
|
+
let config;
|
|
53
|
+
try {
|
|
54
|
+
writeInfo(`\u26A1 Running the Storm Worker generator...
|
|
55
|
+
|
|
56
|
+
`, config);
|
|
57
|
+
const workspaceRoot = findWorkspaceRoot();
|
|
58
|
+
writeDebug(
|
|
59
|
+
`Loading the Storm Config from environment variables and storm.json file...
|
|
60
|
+
- workspaceRoot: ${workspaceRoot}`,
|
|
61
|
+
config
|
|
62
|
+
);
|
|
63
|
+
config = await getConfig(workspaceRoot);
|
|
64
|
+
writeTrace(
|
|
65
|
+
`Loaded Storm config into env:
|
|
66
|
+
${Object.keys(process.env).map((key) => ` - ${key}=${JSON.stringify(process.env[key])}`).join("\n")}`,
|
|
67
|
+
config
|
|
68
|
+
);
|
|
69
|
+
const options = await normalizeOptions(tree, schema, config);
|
|
70
|
+
const tasks = [];
|
|
71
|
+
tasks.push(
|
|
72
|
+
await generator_default(tree, {
|
|
73
|
+
...options,
|
|
74
|
+
skipFormat: true
|
|
75
|
+
})
|
|
76
|
+
);
|
|
77
|
+
tasks.push(
|
|
78
|
+
await nodeApplicationGenerator(tree, {
|
|
79
|
+
...options,
|
|
80
|
+
framework: "none",
|
|
81
|
+
skipFormat: true,
|
|
82
|
+
unitTestRunner: options.unitTestRunner == "vitest" ? "none" : options.unitTestRunner,
|
|
83
|
+
e2eTestRunner: "none",
|
|
84
|
+
name: schema.name
|
|
85
|
+
})
|
|
86
|
+
);
|
|
87
|
+
if (options.unitTestRunner === "vitest") {
|
|
88
|
+
const { vitestGenerator, createOrEditViteConfig } = ensurePackage(
|
|
89
|
+
"@nx/vite",
|
|
90
|
+
nxVersion
|
|
91
|
+
);
|
|
92
|
+
const vitestTask = await vitestGenerator(tree, {
|
|
93
|
+
project: options.name,
|
|
94
|
+
uiFramework: "none",
|
|
95
|
+
coverageProvider: "v8",
|
|
96
|
+
skipFormat: true,
|
|
97
|
+
testEnvironment: "node"
|
|
98
|
+
});
|
|
99
|
+
tasks.push(vitestTask);
|
|
100
|
+
createOrEditViteConfig(
|
|
101
|
+
tree,
|
|
102
|
+
{
|
|
103
|
+
project: options.name,
|
|
104
|
+
includeLib: false,
|
|
105
|
+
includeVitest: true,
|
|
106
|
+
testEnvironment: "node"
|
|
107
|
+
},
|
|
108
|
+
true
|
|
109
|
+
);
|
|
110
|
+
}
|
|
111
|
+
addCloudflareFiles(tree, options);
|
|
112
|
+
updateTsAppConfig(tree, options);
|
|
113
|
+
addTargets(tree, options);
|
|
114
|
+
if (options.unitTestRunner === "none") {
|
|
115
|
+
removeTestFiles(tree, options);
|
|
116
|
+
}
|
|
117
|
+
if (!options.skipFormat) {
|
|
118
|
+
await formatFiles(tree);
|
|
119
|
+
}
|
|
120
|
+
if (options.template === "hono") {
|
|
121
|
+
tasks.push(() => {
|
|
122
|
+
const packageJsonPath = joinPathFragments(
|
|
123
|
+
options.directory ?? "",
|
|
124
|
+
"package.json"
|
|
125
|
+
);
|
|
126
|
+
if (tree.exists(packageJsonPath)) {
|
|
127
|
+
updateJson(tree, packageJsonPath, (json) => ({
|
|
128
|
+
...json,
|
|
129
|
+
dependencies: {
|
|
130
|
+
hono: "4.4.0",
|
|
131
|
+
...json?.dependencies
|
|
132
|
+
}
|
|
133
|
+
}));
|
|
134
|
+
}
|
|
135
|
+
});
|
|
136
|
+
}
|
|
137
|
+
return runTasksInSerial(...tasks);
|
|
138
|
+
} catch (error) {
|
|
139
|
+
return () => {
|
|
140
|
+
writeFatal(
|
|
141
|
+
"A fatal error occurred while running the generator - the process was forced to terminate",
|
|
142
|
+
config
|
|
143
|
+
);
|
|
144
|
+
writeError(
|
|
145
|
+
`An exception was thrown in the generator's process
|
|
146
|
+
- Details: ${error.message}
|
|
147
|
+
- Stacktrace: ${error.stack}`,
|
|
148
|
+
config
|
|
149
|
+
);
|
|
150
|
+
};
|
|
151
|
+
} finally {
|
|
152
|
+
stopwatch();
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
function updateTsAppConfig(tree, options) {
|
|
156
|
+
updateJson(tree, join(options.appProjectRoot, "tsconfig.app.json"), (json) => {
|
|
157
|
+
json.compilerOptions = {
|
|
158
|
+
...json.compilerOptions,
|
|
159
|
+
esModuleInterop: true,
|
|
160
|
+
target: "es2021",
|
|
161
|
+
lib: ["es2021"],
|
|
162
|
+
module: "es2022",
|
|
163
|
+
moduleResolution: "node",
|
|
164
|
+
resolveJsonModule: true,
|
|
165
|
+
allowJs: true,
|
|
166
|
+
checkJs: false,
|
|
167
|
+
noEmit: true,
|
|
168
|
+
isolatedModules: true,
|
|
169
|
+
allowSyntheticDefaultImports: true,
|
|
170
|
+
forceConsistentCasingInFileNames: true,
|
|
171
|
+
strict: true,
|
|
172
|
+
skipLibCheck: true
|
|
173
|
+
};
|
|
174
|
+
json.compilerOptions.types = [
|
|
175
|
+
...json.compilerOptions.types,
|
|
176
|
+
"@cloudflare/workers-types"
|
|
177
|
+
];
|
|
178
|
+
return json;
|
|
179
|
+
});
|
|
180
|
+
}
|
|
181
|
+
function addCloudflareFiles(tree, options) {
|
|
182
|
+
tree.delete(join(options.appProjectRoot, "src/main.ts"));
|
|
183
|
+
generateFiles(
|
|
184
|
+
tree,
|
|
185
|
+
join(__dirname, "./files/common"),
|
|
186
|
+
options.appProjectRoot,
|
|
187
|
+
{
|
|
188
|
+
...options,
|
|
189
|
+
tmpl: "",
|
|
190
|
+
name: options.name,
|
|
191
|
+
accountId: options.accountId ? getAccountId(options.accountId) : "",
|
|
192
|
+
vitestScript: options.unitTestRunner === "vitest" ? vitestScript : ""
|
|
193
|
+
}
|
|
194
|
+
);
|
|
195
|
+
if (options.template && options.template !== "none") {
|
|
196
|
+
generateFiles(
|
|
197
|
+
tree,
|
|
198
|
+
join(__dirname, `./files/${options.template}`),
|
|
199
|
+
join(options.appProjectRoot, "src"),
|
|
200
|
+
{
|
|
201
|
+
...options,
|
|
202
|
+
tmpl: "",
|
|
203
|
+
name: options.name,
|
|
204
|
+
accountId: options.accountId ? getAccountId(options.accountId) : "",
|
|
205
|
+
vitestScript: options.unitTestRunner === "vitest" ? vitestScript : "",
|
|
206
|
+
vitestImports: options.unitTestRunner === "vitest" ? vitestImports : ""
|
|
207
|
+
}
|
|
208
|
+
);
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
function addTargets(tree, options) {
|
|
212
|
+
try {
|
|
213
|
+
const projectConfiguration = readProjectConfiguration(tree, options.name);
|
|
214
|
+
projectConfiguration.targets = {
|
|
215
|
+
...projectConfiguration.targets ?? {},
|
|
216
|
+
serve: {
|
|
217
|
+
executor: "@storm-software/cloudflare-tools:serve",
|
|
218
|
+
options: {
|
|
219
|
+
port: options.port
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"nx-release-publish": {
|
|
223
|
+
executor: "@storm-software/cloudflare-tools:cloudflare-publish"
|
|
224
|
+
}
|
|
225
|
+
};
|
|
226
|
+
if (projectConfiguration.targets.build) {
|
|
227
|
+
delete projectConfiguration.targets.build;
|
|
228
|
+
}
|
|
229
|
+
updateProjectConfiguration(tree, options.name, projectConfiguration);
|
|
230
|
+
} catch (e) {
|
|
231
|
+
console.error(e);
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
function removeTestFiles(tree, options) {
|
|
235
|
+
tree.delete(join(options.appProjectRoot, "src", "index.test.ts"));
|
|
236
|
+
}
|
|
237
|
+
async function normalizeOptions(host, options, config) {
|
|
238
|
+
const { projectName: appProjectName, projectRoot: appProjectRoot } = await determineProjectNameAndRootOptions(host, {
|
|
239
|
+
name: options.name,
|
|
240
|
+
projectType: "application",
|
|
241
|
+
directory: options.directory,
|
|
242
|
+
rootProject: options.rootProject
|
|
243
|
+
});
|
|
244
|
+
options.rootProject = appProjectRoot === ".";
|
|
245
|
+
return {
|
|
246
|
+
addPlugin: process.env.NX_ADD_PLUGINS !== "false",
|
|
247
|
+
accountId: process.env.STORM_BOT_CLOUDFLARE_ACCOUNT,
|
|
248
|
+
...options,
|
|
249
|
+
name: names(appProjectName).fileName,
|
|
250
|
+
frontendProject: options.frontendProject ? names(options.frontendProject).fileName : void 0,
|
|
251
|
+
appProjectRoot,
|
|
252
|
+
unitTestRunner: options.unitTestRunner ?? "vitest",
|
|
253
|
+
rootProject: options.rootProject ?? false,
|
|
254
|
+
template: options.template ?? "fetch-handler",
|
|
255
|
+
port: options.port ?? 3e3
|
|
256
|
+
};
|
|
257
|
+
}
|
|
258
|
+
var generator_default2 = applicationGenerator;
|
|
259
|
+
var applicationSchematic = convertNxGenerator(applicationGenerator);
|
|
260
|
+
|
|
261
|
+
export {
|
|
262
|
+
applicationGenerator,
|
|
263
|
+
generator_default2 as generator_default,
|
|
264
|
+
applicationSchematic
|
|
265
|
+
};
|
|
@@ -7,7 +7,7 @@ var require_package = __commonJS({
|
|
|
7
7
|
"package.json"(exports, module) {
|
|
8
8
|
module.exports = {
|
|
9
9
|
name: "@storm-software/cloudflare-tools",
|
|
10
|
-
version: "0.63.
|
|
10
|
+
version: "0.63.13",
|
|
11
11
|
description: "A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.",
|
|
12
12
|
repository: {
|
|
13
13
|
type: "github",
|
package/dist/executors.js
CHANGED
package/dist/executors.mjs
CHANGED
package/dist/generators.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkEDGMZMSIjs = require('./chunk-EDGMZMSI.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkN4ABVEWNjs = require('./chunk-N4ABVEWN.js');
|
|
10
10
|
require('./chunk-OL65RB72.js');
|
|
11
11
|
require('./chunk-SQUJ3SXL.js');
|
|
12
12
|
require('./chunk-MCKGQKYU.js');
|
|
@@ -15,4 +15,4 @@ require('./chunk-MCKGQKYU.js');
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
exports.applicationGenerator =
|
|
18
|
+
exports.applicationGenerator = _chunkEDGMZMSIjs.applicationGenerator; exports.applicationSchematic = _chunkEDGMZMSIjs.applicationSchematic; exports.initGenerator = _chunkN4ABVEWNjs.initGenerator; exports.initSchematic = _chunkN4ABVEWNjs.initSchematic;
|
package/dist/generators.mjs
CHANGED
|
@@ -2,11 +2,11 @@ import "./chunk-3J7KBHMJ.mjs";
|
|
|
2
2
|
import {
|
|
3
3
|
applicationGenerator,
|
|
4
4
|
applicationSchematic
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-HIF5FI2F.mjs";
|
|
6
6
|
import {
|
|
7
7
|
initGenerator,
|
|
8
8
|
initSchematic
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-ZLI4XREA.mjs";
|
|
10
10
|
import "./chunk-7H2K6PT4.mjs";
|
|
11
11
|
import "./chunk-GOL5LHR6.mjs";
|
|
12
12
|
import "./chunk-2ET7ZYTU.mjs";
|
package/dist/index.js
CHANGED
|
@@ -3,14 +3,14 @@ require('./chunk-DHBG5ASJ.js');
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkEDGMZMSIjs = require('./chunk-EDGMZMSI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkN4ABVEWNjs = require('./chunk-N4ABVEWN.js');
|
|
11
11
|
require('./chunk-CVGPWUNP.js');
|
|
12
12
|
require('./chunk-T2OGA6MB.js');
|
|
13
|
-
require('./chunk-
|
|
13
|
+
require('./chunk-HYKWJFHA.js');
|
|
14
14
|
require('./chunk-Q6WFFOSW.js');
|
|
15
15
|
|
|
16
16
|
|
|
@@ -162,4 +162,4 @@ function createPackageJson(projectJsonPath, workspaceRoot) {
|
|
|
162
162
|
|
|
163
163
|
|
|
164
164
|
|
|
165
|
-
exports.applicationGenerator =
|
|
165
|
+
exports.applicationGenerator = _chunkEDGMZMSIjs.applicationGenerator; exports.applicationSchematic = _chunkEDGMZMSIjs.applicationSchematic; exports.createNodesV2 = createNodesV2; exports.getInternalDependencies = _chunk2HJQOPBDjs.getInternalDependencies; exports.initGenerator = _chunkN4ABVEWNjs.initGenerator; exports.initSchematic = _chunkN4ABVEWNjs.initSchematic; exports.name = name; exports.r2UploadFile = _chunk2HJQOPBDjs.r2UploadFile;
|
package/dist/index.mjs
CHANGED
|
@@ -3,14 +3,14 @@ import "./chunk-3J7KBHMJ.mjs";
|
|
|
3
3
|
import {
|
|
4
4
|
applicationGenerator,
|
|
5
5
|
applicationSchematic
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-HIF5FI2F.mjs";
|
|
7
7
|
import {
|
|
8
8
|
initGenerator,
|
|
9
9
|
initSchematic
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-ZLI4XREA.mjs";
|
|
11
11
|
import "./chunk-7Z5PILRU.mjs";
|
|
12
12
|
import "./chunk-DY4VZ7GU.mjs";
|
|
13
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-UDO5RHFZ.mjs";
|
|
14
14
|
import "./chunk-5M3ADTI2.mjs";
|
|
15
15
|
import {
|
|
16
16
|
getInternalDependencies,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
var _chunkT2OGA6MBjs = require('../../../chunk-T2OGA6MB.js');
|
|
4
|
-
require('../../../chunk-
|
|
4
|
+
require('../../../chunk-HYKWJFHA.js');
|
|
5
5
|
require('../../../chunk-KTFMIXUN.js');
|
|
6
6
|
require('../../../chunk-OL65RB72.js');
|
|
7
7
|
require('../../../chunk-SQUJ3SXL.js');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkHYKWJFHAjs = require('../../../chunk-HYKWJFHA.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunkKTFMIXUNjs = require('../../../chunk-KTFMIXUN.js');
|
|
@@ -55,7 +55,7 @@ async function* serveExecutor(options, context, config) {
|
|
|
55
55
|
success: true
|
|
56
56
|
};
|
|
57
57
|
}
|
|
58
|
-
var executor_default =
|
|
58
|
+
var executor_default = _chunkHYKWJFHAjs.withRunExecutor.call(void 0,
|
|
59
59
|
"Cloudflare Serve executor",
|
|
60
60
|
serveExecutor,
|
|
61
61
|
{
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkN4ABVEWNjs = require('../../../chunk-N4ABVEWN.js');
|
|
6
6
|
require('../../../chunk-MCKGQKYU.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunkN4ABVEWNjs.generator_default; exports.initGenerator = _chunkN4ABVEWNjs.initGenerator; exports.initSchematic = _chunkN4ABVEWNjs.initSchematic;
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
5
|
+
var _chunkEDGMZMSIjs = require('../../../chunk-EDGMZMSI.js');
|
|
6
|
+
require('../../../chunk-N4ABVEWN.js');
|
|
7
7
|
require('../../../chunk-OL65RB72.js');
|
|
8
8
|
require('../../../chunk-SQUJ3SXL.js');
|
|
9
9
|
require('../../../chunk-MCKGQKYU.js');
|
|
@@ -11,4 +11,4 @@ require('../../../chunk-MCKGQKYU.js');
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.applicationGenerator =
|
|
14
|
+
exports.applicationGenerator = _chunkEDGMZMSIjs.applicationGenerator; exports.applicationSchematic = _chunkEDGMZMSIjs.applicationSchematic; exports.default = _chunkEDGMZMSIjs.generator_default;
|
|
@@ -2,8 +2,8 @@ import {
|
|
|
2
2
|
applicationGenerator,
|
|
3
3
|
applicationSchematic,
|
|
4
4
|
generator_default
|
|
5
|
-
} from "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
5
|
+
} from "../../../chunk-HIF5FI2F.mjs";
|
|
6
|
+
import "../../../chunk-ZLI4XREA.mjs";
|
|
7
7
|
import "../../../chunk-7H2K6PT4.mjs";
|
|
8
8
|
import "../../../chunk-GOL5LHR6.mjs";
|
|
9
9
|
import "../../../chunk-2ET7ZYTU.mjs";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/cloudflare-tools",
|
|
3
|
-
"version": "0.63.
|
|
3
|
+
"version": "0.63.14",
|
|
4
4
|
"description": "A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|