@storm-software/cloudflare-tools 0.71.90 → 0.71.92
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 +24 -0
- package/README.md +1 -1
- package/dist/{chunk-P42MQNVF.mjs → chunk-536H3WK5.mjs} +18 -1
- package/dist/{chunk-YQIWTBN7.mjs → chunk-54ORU46C.mjs} +3 -3
- package/dist/{chunk-IH7USDLX.js → chunk-COUZEHRU.js} +18 -18
- package/dist/{chunk-52X4GPEN.mjs → chunk-EXZP5MWY.mjs} +28 -7
- package/dist/{chunk-MDOQR5IS.js → chunk-FPW225FM.js} +4 -4
- package/dist/{chunk-QWSTQIUA.js → chunk-GBAVURC4.js} +51 -34
- package/dist/{chunk-6JVDTXHT.js → chunk-JCQYTCUM.js} +5 -5
- package/dist/{chunk-2KWRE5Y5.js → chunk-PVCPJUY2.js} +28 -7
- package/dist/{chunk-E7SXH3BE.js → chunk-QY2K3DFK.js} +168 -168
- package/dist/{chunk-S2GBNGKD.js → chunk-RJCPRCNG.js} +13 -13
- package/dist/{chunk-3SX7VAO7.mjs → chunk-XVKPJL76.mjs} +3 -3
- package/dist/{chunk-C6CPSE5U.mjs → chunk-YQSDJFL7.mjs} +3 -3
- package/dist/{chunk-YIXC7QU5.mjs → chunk-Z6NBDGWC.mjs} +4 -4
- package/dist/{chunk-OPXJUL5V.mjs → chunk-Z7TZ4UY6.mjs} +1 -1
- package/dist/executors.js +5 -5
- package/dist/executors.mjs +5 -5
- package/dist/generators.js +5 -5
- package/dist/generators.mjs +4 -4
- package/dist/index.js +8 -8
- package/dist/index.mjs +7 -7
- package/dist/src/executors/cloudflare-publish/executor.js +3 -3
- package/dist/src/executors/cloudflare-publish/executor.mjs +3 -3
- package/dist/src/executors/r2-upload-publish/executor.js +5 -5
- package/dist/src/executors/r2-upload-publish/executor.mjs +4 -4
- package/dist/src/executors/serve/executor.js +4 -4
- package/dist/src/executors/serve/executor.mjs +3 -3
- 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 +5 -5
- package/dist/src/generators/worker/generator.mjs +4 -4
- package/dist/src/utils/index.js +3 -3
- package/dist/src/utils/index.mjs +2 -2
- package/dist/src/utils/r2-bucket-helpers.js +3 -3
- package/dist/src/utils/r2-bucket-helpers.mjs +2 -2
- package/package.json +5 -5
|
@@ -1,10 +1,10 @@
|
|
|
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 _chunkFPW225FMjs = require('./chunk-FPW225FM.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkGBAVURC4js = require('./chunk-GBAVURC4.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
@@ -13,7 +13,7 @@ var _chunkQWSTQIUAjs = require('./chunk-QWSTQIUA.js');
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var
|
|
16
|
+
var _chunkPVCPJUY2js = require('./chunk-PVCPJUY2.js');
|
|
17
17
|
|
|
18
18
|
// src/generators/worker/generator.ts
|
|
19
19
|
|
|
@@ -46,23 +46,23 @@ var vitestScript = `"test": "vitest run"`;
|
|
|
46
46
|
|
|
47
47
|
// src/generators/worker/generator.ts
|
|
48
48
|
async function applicationGenerator(tree, schema) {
|
|
49
|
-
const stopwatch =
|
|
49
|
+
const stopwatch = _chunkPVCPJUY2js.getStopwatch.call(void 0, "Storm Worker generator");
|
|
50
50
|
let config;
|
|
51
51
|
try {
|
|
52
|
-
const workspaceRoot =
|
|
53
|
-
config = await
|
|
54
|
-
|
|
55
|
-
`${
|
|
52
|
+
const workspaceRoot = _chunkGBAVURC4js.findWorkspaceRoot.call(void 0, );
|
|
53
|
+
config = await _chunkGBAVURC4js.getConfig.call(void 0, workspaceRoot);
|
|
54
|
+
_chunkPVCPJUY2js.writeInfo.call(void 0,
|
|
55
|
+
`${_chunkPVCPJUY2js.brandIcon.call(void 0, config)} Running the Storm Worker generator...
|
|
56
56
|
|
|
57
57
|
`,
|
|
58
58
|
config
|
|
59
59
|
);
|
|
60
|
-
|
|
60
|
+
_chunkPVCPJUY2js.writeDebug.call(void 0,
|
|
61
61
|
`Loading the Storm Config from environment variables and storm.json file...
|
|
62
62
|
- workspaceRoot: ${workspaceRoot}`,
|
|
63
63
|
config
|
|
64
64
|
);
|
|
65
|
-
|
|
65
|
+
_chunkPVCPJUY2js.writeTrace.call(void 0,
|
|
66
66
|
`Loaded Storm config into env:
|
|
67
67
|
${Object.keys(process.env).map((key) => ` - ${key}=${JSON.stringify(process.env[key])}`).join("\n")}`,
|
|
68
68
|
config
|
|
@@ -70,7 +70,7 @@ ${Object.keys(process.env).map((key) => ` - ${key}=${JSON.stringify(process.env[
|
|
|
70
70
|
const options = await normalizeOptions(tree, schema, config);
|
|
71
71
|
const tasks = [];
|
|
72
72
|
tasks.push(
|
|
73
|
-
await
|
|
73
|
+
await _chunkFPW225FMjs.generator_default.call(void 0, tree, {
|
|
74
74
|
...options,
|
|
75
75
|
skipFormat: true
|
|
76
76
|
})
|
|
@@ -138,11 +138,11 @@ ${Object.keys(process.env).map((key) => ` - ${key}=${JSON.stringify(process.env[
|
|
|
138
138
|
return _devkit.runTasksInSerial.call(void 0, ...tasks);
|
|
139
139
|
} catch (error) {
|
|
140
140
|
return () => {
|
|
141
|
-
|
|
141
|
+
_chunkPVCPJUY2js.writeFatal.call(void 0,
|
|
142
142
|
"A fatal error occurred while running the generator - the process was forced to terminate",
|
|
143
143
|
config
|
|
144
144
|
);
|
|
145
|
-
|
|
145
|
+
_chunkPVCPJUY2js.writeError.call(void 0,
|
|
146
146
|
`An exception was thrown in the generator's process
|
|
147
147
|
- Details: ${error.message}
|
|
148
148
|
- Stacktrace: ${error.stack}`,
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
getEncoding,
|
|
6
6
|
getInternalDependencies,
|
|
7
7
|
uploadFile
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-Z7TZ4UY6.mjs";
|
|
9
9
|
import {
|
|
10
10
|
createCliOptions,
|
|
11
11
|
getPackageInfo
|
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
import {
|
|
14
14
|
findWorkspaceRoot,
|
|
15
15
|
getConfig
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-536H3WK5.mjs";
|
|
17
17
|
import {
|
|
18
18
|
correctPaths,
|
|
19
19
|
joinPaths,
|
|
@@ -21,7 +21,7 @@ import {
|
|
|
21
21
|
writeSuccess,
|
|
22
22
|
writeTrace,
|
|
23
23
|
writeWarning
|
|
24
|
-
} from "./chunk-
|
|
24
|
+
} from "./chunk-EXZP5MWY.mjs";
|
|
25
25
|
|
|
26
26
|
// src/executors/r2-upload-publish/executor.ts
|
|
27
27
|
import {
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
getWorkspaceConfig,
|
|
9
9
|
schemaRegistry,
|
|
10
10
|
workspaceConfigSchema
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-536H3WK5.mjs";
|
|
12
12
|
import {
|
|
13
13
|
brandIcon,
|
|
14
14
|
correctPaths,
|
|
@@ -24,7 +24,7 @@ import {
|
|
|
24
24
|
writeSuccess,
|
|
25
25
|
writeTrace,
|
|
26
26
|
writeWarning
|
|
27
|
-
} from "./chunk-
|
|
27
|
+
} from "./chunk-EXZP5MWY.mjs";
|
|
28
28
|
import {
|
|
29
29
|
__dirname
|
|
30
30
|
} from "./chunk-FVRCPE3R.mjs";
|
|
@@ -1460,7 +1460,7 @@ var resolveOptions = async (userOptions) => {
|
|
|
1460
1460
|
dts: true,
|
|
1461
1461
|
shims: true,
|
|
1462
1462
|
silent: !debug,
|
|
1463
|
-
logLevel: workspaceConfig.logLevel === "success" || workspaceConfig.logLevel === "debug" || workspaceConfig.logLevel === "trace" || workspaceConfig.logLevel === "all" ? "info" : workspaceConfig.logLevel === "fatal" ? "error" : workspaceConfig.logLevel,
|
|
1463
|
+
logLevel: workspaceConfig.logLevel === "success" || workspaceConfig.logLevel === "performance" || workspaceConfig.logLevel === "debug" || workspaceConfig.logLevel === "trace" || workspaceConfig.logLevel === "all" ? "info" : workspaceConfig.logLevel === "fatal" ? "error" : workspaceConfig.logLevel,
|
|
1464
1464
|
sourcemap: debug ? "inline" : false,
|
|
1465
1465
|
clean: false,
|
|
1466
1466
|
fixedExtension: true,
|
|
@@ -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.71.
|
|
10
|
+
version: "0.71.91",
|
|
11
11
|
private: false,
|
|
12
12
|
description: "A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.",
|
|
13
13
|
keywords: [
|
|
@@ -156,9 +156,9 @@ var require_package = __commonJS({
|
|
|
156
156
|
"@nx/js": "catalog:",
|
|
157
157
|
"@nx/node": "catalog:",
|
|
158
158
|
"@nx/web": "catalog:",
|
|
159
|
-
"@storm-software/config": "1.
|
|
160
|
-
"@storm-software/config-tools": "1.189.
|
|
161
|
-
"@storm-software/workspace-tools": "1.295.
|
|
159
|
+
"@storm-software/config": "1.136.0",
|
|
160
|
+
"@storm-software/config-tools": "1.189.41",
|
|
161
|
+
"@storm-software/workspace-tools": "1.295.17",
|
|
162
162
|
nx: "catalog:",
|
|
163
163
|
tsup: "catalog:",
|
|
164
164
|
wrangler: ">=3.58.0"
|
package/dist/executors.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";require('./chunk-XO66D74Z.js');
|
|
2
|
-
require('./chunk-
|
|
2
|
+
require('./chunk-COUZEHRU.js');
|
|
3
3
|
require('./chunk-KUGEZPUO.js');
|
|
4
|
-
require('./chunk-
|
|
4
|
+
require('./chunk-JCQYTCUM.js');
|
|
5
5
|
require('./chunk-QBD2OGUY.js');
|
|
6
|
-
require('./chunk-
|
|
6
|
+
require('./chunk-QY2K3DFK.js');
|
|
7
7
|
require('./chunk-N7FW365Q.js');
|
|
8
|
-
require('./chunk-
|
|
9
|
-
require('./chunk-
|
|
8
|
+
require('./chunk-GBAVURC4.js');
|
|
9
|
+
require('./chunk-PVCPJUY2.js');
|
|
10
10
|
require('./chunk-MCKGQKYU.js');
|
package/dist/executors.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import "./chunk-YSCEY447.mjs";
|
|
2
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-XVKPJL76.mjs";
|
|
3
3
|
import "./chunk-SWYYMID7.mjs";
|
|
4
|
-
import "./chunk-
|
|
4
|
+
import "./chunk-Z7TZ4UY6.mjs";
|
|
5
5
|
import "./chunk-M2RRHQ7N.mjs";
|
|
6
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-YQSDJFL7.mjs";
|
|
7
7
|
import "./chunk-3MAI3FU2.mjs";
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-536H3WK5.mjs";
|
|
9
|
+
import "./chunk-EXZP5MWY.mjs";
|
|
10
10
|
import "./chunk-FVRCPE3R.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkRJCPRCNGjs = require('./chunk-RJCPRCNG.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
10
|
-
require('./chunk-
|
|
11
|
-
require('./chunk-
|
|
9
|
+
var _chunkFPW225FMjs = require('./chunk-FPW225FM.js');
|
|
10
|
+
require('./chunk-GBAVURC4.js');
|
|
11
|
+
require('./chunk-PVCPJUY2.js');
|
|
12
12
|
require('./chunk-MCKGQKYU.js');
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
exports.applicationGenerator =
|
|
18
|
+
exports.applicationGenerator = _chunkRJCPRCNGjs.applicationGenerator; exports.applicationSchematic = _chunkRJCPRCNGjs.applicationSchematic; exports.initGenerator = _chunkFPW225FMjs.initGenerator; exports.initSchematic = _chunkFPW225FMjs.initSchematic;
|
package/dist/generators.mjs
CHANGED
|
@@ -2,13 +2,13 @@ import "./chunk-3J7KBHMJ.mjs";
|
|
|
2
2
|
import {
|
|
3
3
|
applicationGenerator,
|
|
4
4
|
applicationSchematic
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-54ORU46C.mjs";
|
|
6
6
|
import {
|
|
7
7
|
initGenerator,
|
|
8
8
|
initSchematic
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-Z6NBDGWC.mjs";
|
|
10
|
+
import "./chunk-536H3WK5.mjs";
|
|
11
|
+
import "./chunk-EXZP5MWY.mjs";
|
|
12
12
|
import "./chunk-FVRCPE3R.mjs";
|
|
13
13
|
export {
|
|
14
14
|
applicationGenerator,
|
package/dist/index.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }require('./chunk-XO66D74Z.js');
|
|
2
|
-
require('./chunk-
|
|
2
|
+
require('./chunk-COUZEHRU.js');
|
|
3
3
|
require('./chunk-DHBG5ASJ.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkRJCPRCNGjs = require('./chunk-RJCPRCNG.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
var
|
|
11
|
+
var _chunkFPW225FMjs = require('./chunk-FPW225FM.js');
|
|
12
12
|
require('./chunk-KUGEZPUO.js');
|
|
13
13
|
require('./chunk-CVGPWUNP.js');
|
|
14
14
|
|
|
@@ -16,15 +16,15 @@ require('./chunk-CVGPWUNP.js');
|
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
var
|
|
19
|
+
var _chunkJCQYTCUMjs = require('./chunk-JCQYTCUM.js');
|
|
20
20
|
require('./chunk-QBD2OGUY.js');
|
|
21
|
-
require('./chunk-
|
|
21
|
+
require('./chunk-QY2K3DFK.js');
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
var _chunkN7FW365Qjs = require('./chunk-N7FW365Q.js');
|
|
26
|
-
require('./chunk-
|
|
27
|
-
require('./chunk-
|
|
26
|
+
require('./chunk-GBAVURC4.js');
|
|
27
|
+
require('./chunk-PVCPJUY2.js');
|
|
28
28
|
require('./chunk-MCKGQKYU.js');
|
|
29
29
|
|
|
30
30
|
// src/plugins/index.ts
|
|
@@ -160,4 +160,4 @@ function createPackageJson(projectJsonPath, workspaceRoot) {
|
|
|
160
160
|
|
|
161
161
|
|
|
162
162
|
|
|
163
|
-
exports.applicationGenerator =
|
|
163
|
+
exports.applicationGenerator = _chunkRJCPRCNGjs.applicationGenerator; exports.applicationSchematic = _chunkRJCPRCNGjs.applicationSchematic; exports.createNodesV2 = createNodesV2; exports.getEncoding = _chunkJCQYTCUMjs.getEncoding; exports.getInternalDependencies = _chunkJCQYTCUMjs.getInternalDependencies; exports.initGenerator = _chunkFPW225FMjs.initGenerator; exports.initSchematic = _chunkFPW225FMjs.initSchematic; exports.isTextFile = _chunkJCQYTCUMjs.isTextFile; exports.name = name; exports.uploadFile = _chunkJCQYTCUMjs.uploadFile;
|
package/dist/index.mjs
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import "./chunk-YSCEY447.mjs";
|
|
2
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-XVKPJL76.mjs";
|
|
3
3
|
import "./chunk-3J7KBHMJ.mjs";
|
|
4
4
|
import {
|
|
5
5
|
applicationGenerator,
|
|
6
6
|
applicationSchematic
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-54ORU46C.mjs";
|
|
8
8
|
import {
|
|
9
9
|
initGenerator,
|
|
10
10
|
initSchematic
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-Z6NBDGWC.mjs";
|
|
12
12
|
import "./chunk-SWYYMID7.mjs";
|
|
13
13
|
import "./chunk-7Z5PILRU.mjs";
|
|
14
14
|
import {
|
|
@@ -16,15 +16,15 @@ import {
|
|
|
16
16
|
getInternalDependencies,
|
|
17
17
|
isTextFile,
|
|
18
18
|
uploadFile
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-Z7TZ4UY6.mjs";
|
|
20
20
|
import "./chunk-M2RRHQ7N.mjs";
|
|
21
|
-
import "./chunk-
|
|
21
|
+
import "./chunk-YQSDJFL7.mjs";
|
|
22
22
|
import {
|
|
23
23
|
ProjectTagConstants,
|
|
24
24
|
addProjectTag
|
|
25
25
|
} from "./chunk-3MAI3FU2.mjs";
|
|
26
|
-
import "./chunk-
|
|
27
|
-
import "./chunk-
|
|
26
|
+
import "./chunk-536H3WK5.mjs";
|
|
27
|
+
import "./chunk-EXZP5MWY.mjs";
|
|
28
28
|
import "./chunk-FVRCPE3R.mjs";
|
|
29
29
|
|
|
30
30
|
// src/plugins/index.ts
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
var _chunkQBD2OGUYjs = require('../../../chunk-QBD2OGUY.js');
|
|
4
|
-
require('../../../chunk-
|
|
4
|
+
require('../../../chunk-QY2K3DFK.js');
|
|
5
5
|
require('../../../chunk-N7FW365Q.js');
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
6
|
+
require('../../../chunk-GBAVURC4.js');
|
|
7
|
+
require('../../../chunk-PVCPJUY2.js');
|
|
8
8
|
require('../../../chunk-MCKGQKYU.js');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runExecutor
|
|
3
3
|
} from "../../../chunk-M2RRHQ7N.mjs";
|
|
4
|
-
import "../../../chunk-
|
|
4
|
+
import "../../../chunk-YQSDJFL7.mjs";
|
|
5
5
|
import "../../../chunk-3MAI3FU2.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
6
|
+
import "../../../chunk-536H3WK5.mjs";
|
|
7
|
+
import "../../../chunk-EXZP5MWY.mjs";
|
|
8
8
|
import "../../../chunk-FVRCPE3R.mjs";
|
|
9
9
|
export {
|
|
10
10
|
runExecutor as default
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkCOUZEHRUjs = require('../../../chunk-COUZEHRU.js');
|
|
4
4
|
require('../../../chunk-KUGEZPUO.js');
|
|
5
|
-
require('../../../chunk-
|
|
5
|
+
require('../../../chunk-JCQYTCUM.js');
|
|
6
6
|
require('../../../chunk-N7FW365Q.js');
|
|
7
|
-
require('../../../chunk-
|
|
8
|
-
require('../../../chunk-
|
|
7
|
+
require('../../../chunk-GBAVURC4.js');
|
|
8
|
+
require('../../../chunk-PVCPJUY2.js');
|
|
9
9
|
require('../../../chunk-MCKGQKYU.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.default =
|
|
12
|
+
exports.default = _chunkCOUZEHRUjs.runExecutor;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runExecutor
|
|
3
|
-
} from "../../../chunk-
|
|
3
|
+
} from "../../../chunk-XVKPJL76.mjs";
|
|
4
4
|
import "../../../chunk-SWYYMID7.mjs";
|
|
5
|
-
import "../../../chunk-
|
|
5
|
+
import "../../../chunk-Z7TZ4UY6.mjs";
|
|
6
6
|
import "../../../chunk-3MAI3FU2.mjs";
|
|
7
|
-
import "../../../chunk-
|
|
8
|
-
import "../../../chunk-
|
|
7
|
+
import "../../../chunk-536H3WK5.mjs";
|
|
8
|
+
import "../../../chunk-EXZP5MWY.mjs";
|
|
9
9
|
import "../../../chunk-FVRCPE3R.mjs";
|
|
10
10
|
export {
|
|
11
11
|
runExecutor as default
|
|
@@ -1,11 +1,11 @@
|
|
|
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 _chunkQY2K3DFKjs = require('../../../chunk-QY2K3DFK.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunkN7FW365Qjs = require('../../../chunk-N7FW365Q.js');
|
|
7
|
-
require('../../../chunk-
|
|
8
|
-
require('../../../chunk-
|
|
7
|
+
require('../../../chunk-GBAVURC4.js');
|
|
8
|
+
require('../../../chunk-PVCPJUY2.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
var _chunkMCKGQKYUjs = require('../../../chunk-MCKGQKYU.js');
|
|
@@ -55,7 +55,7 @@ async function* serveExecutor(options, context) {
|
|
|
55
55
|
success: true
|
|
56
56
|
};
|
|
57
57
|
}
|
|
58
|
-
var executor_default =
|
|
58
|
+
var executor_default = _chunkQY2K3DFKjs.withRunExecutor.call(void 0,
|
|
59
59
|
"Cloudflare Serve executor",
|
|
60
60
|
serveExecutor,
|
|
61
61
|
{
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
withRunExecutor
|
|
3
|
-
} from "../../../chunk-
|
|
3
|
+
} from "../../../chunk-YQSDJFL7.mjs";
|
|
4
4
|
import {
|
|
5
5
|
createCliOptions
|
|
6
6
|
} from "../../../chunk-3MAI3FU2.mjs";
|
|
7
|
-
import "../../../chunk-
|
|
8
|
-
import "../../../chunk-
|
|
7
|
+
import "../../../chunk-536H3WK5.mjs";
|
|
8
|
+
import "../../../chunk-EXZP5MWY.mjs";
|
|
9
9
|
import {
|
|
10
10
|
__require
|
|
11
11
|
} from "../../../chunk-FVRCPE3R.mjs";
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkFPW225FMjs = require('../../../chunk-FPW225FM.js');
|
|
6
6
|
require('../../../chunk-MCKGQKYU.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunkFPW225FMjs.generator_default; exports.initGenerator = _chunkFPW225FMjs.initGenerator; exports.initSchematic = _chunkFPW225FMjs.initSchematic;
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
8
|
-
require('../../../chunk-
|
|
5
|
+
var _chunkRJCPRCNGjs = require('../../../chunk-RJCPRCNG.js');
|
|
6
|
+
require('../../../chunk-FPW225FM.js');
|
|
7
|
+
require('../../../chunk-GBAVURC4.js');
|
|
8
|
+
require('../../../chunk-PVCPJUY2.js');
|
|
9
9
|
require('../../../chunk-MCKGQKYU.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.applicationGenerator =
|
|
14
|
+
exports.applicationGenerator = _chunkRJCPRCNGjs.applicationGenerator; exports.applicationSchematic = _chunkRJCPRCNGjs.applicationSchematic; exports.default = _chunkRJCPRCNGjs.generator_default;
|
|
@@ -2,10 +2,10 @@ import {
|
|
|
2
2
|
applicationGenerator,
|
|
3
3
|
applicationSchematic,
|
|
4
4
|
generator_default
|
|
5
|
-
} from "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
8
|
-
import "../../../chunk-
|
|
5
|
+
} from "../../../chunk-54ORU46C.mjs";
|
|
6
|
+
import "../../../chunk-Z6NBDGWC.mjs";
|
|
7
|
+
import "../../../chunk-536H3WK5.mjs";
|
|
8
|
+
import "../../../chunk-EXZP5MWY.mjs";
|
|
9
9
|
import "../../../chunk-FVRCPE3R.mjs";
|
|
10
10
|
export {
|
|
11
11
|
applicationGenerator,
|
package/dist/src/utils/index.js
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
8
|
-
require('../../chunk-
|
|
7
|
+
var _chunkJCQYTCUMjs = require('../../chunk-JCQYTCUM.js');
|
|
8
|
+
require('../../chunk-PVCPJUY2.js');
|
|
9
9
|
require('../../chunk-MCKGQKYU.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
exports.getEncoding =
|
|
15
|
+
exports.getEncoding = _chunkJCQYTCUMjs.getEncoding; exports.getInternalDependencies = _chunkJCQYTCUMjs.getInternalDependencies; exports.isTextFile = _chunkJCQYTCUMjs.isTextFile; exports.uploadFile = _chunkJCQYTCUMjs.uploadFile;
|
package/dist/src/utils/index.mjs
CHANGED
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
getInternalDependencies,
|
|
5
5
|
isTextFile,
|
|
6
6
|
uploadFile
|
|
7
|
-
} from "../../chunk-
|
|
8
|
-
import "../../chunk-
|
|
7
|
+
} from "../../chunk-Z7TZ4UY6.mjs";
|
|
8
|
+
import "../../chunk-EXZP5MWY.mjs";
|
|
9
9
|
import "../../chunk-FVRCPE3R.mjs";
|
|
10
10
|
export {
|
|
11
11
|
getEncoding,
|
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
7
|
-
require('../../chunk-
|
|
6
|
+
var _chunkJCQYTCUMjs = require('../../chunk-JCQYTCUM.js');
|
|
7
|
+
require('../../chunk-PVCPJUY2.js');
|
|
8
8
|
require('../../chunk-MCKGQKYU.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.getEncoding =
|
|
14
|
+
exports.getEncoding = _chunkJCQYTCUMjs.getEncoding; exports.getInternalDependencies = _chunkJCQYTCUMjs.getInternalDependencies; exports.isTextFile = _chunkJCQYTCUMjs.isTextFile; exports.uploadFile = _chunkJCQYTCUMjs.uploadFile;
|
|
@@ -3,8 +3,8 @@ import {
|
|
|
3
3
|
getInternalDependencies,
|
|
4
4
|
isTextFile,
|
|
5
5
|
uploadFile
|
|
6
|
-
} from "../../chunk-
|
|
7
|
-
import "../../chunk-
|
|
6
|
+
} from "../../chunk-Z7TZ4UY6.mjs";
|
|
7
|
+
import "../../chunk-EXZP5MWY.mjs";
|
|
8
8
|
import "../../chunk-FVRCPE3R.mjs";
|
|
9
9
|
export {
|
|
10
10
|
getEncoding,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/cloudflare-tools",
|
|
3
|
-
"version": "0.71.
|
|
3
|
+
"version": "0.71.92",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.",
|
|
6
6
|
"keywords": [
|
|
@@ -137,9 +137,9 @@
|
|
|
137
137
|
"@nx/js": "22.5.1",
|
|
138
138
|
"@nx/node": "22.5.1",
|
|
139
139
|
"@nx/web": "22.5.1",
|
|
140
|
-
"@storm-software/config": "1.
|
|
141
|
-
"@storm-software/config-tools": "1.189.
|
|
142
|
-
"@storm-software/workspace-tools": "1.295.
|
|
140
|
+
"@storm-software/config": "1.136.0",
|
|
141
|
+
"@storm-software/config-tools": "1.189.41",
|
|
142
|
+
"@storm-software/workspace-tools": "1.295.17",
|
|
143
143
|
"nx": "22.5.1",
|
|
144
144
|
"tsup": "8.4.0",
|
|
145
145
|
"wrangler": ">=3.58.0"
|
|
@@ -155,5 +155,5 @@
|
|
|
155
155
|
"publishConfig": { "access": "public" },
|
|
156
156
|
"executors": "./executors.json",
|
|
157
157
|
"generators": "./generators.json",
|
|
158
|
-
"gitHead": "
|
|
158
|
+
"gitHead": "44dac4c2a9df20ceaf583923530d42d05cfc020c"
|
|
159
159
|
}
|