@storm-software/cloudflare-tools 0.49.0 → 0.50.0
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-A4ZIZ2JU.mjs → chunk-7KICJG4N.mjs} +4 -4
- package/dist/{chunk-OJNZ4PXQ.mjs → chunk-CYPHDXO4.mjs} +681 -136
- package/dist/{chunk-KKOHB7JH.js → chunk-FARER72T.js} +1 -1
- package/dist/{chunk-MTM5OTKD.mjs → chunk-FDWGGCRH.mjs} +1 -1
- package/dist/{chunk-YE4FHRXJ.js → chunk-FEVYI765.js} +4 -4
- package/dist/{chunk-Z46UO4N7.js → chunk-GTCFSQI5.js} +690 -145
- package/dist/{chunk-I4XNMV5U.js → chunk-IF6J7SWP.js} +5 -5
- package/dist/{chunk-OARYMVO7.mjs → chunk-JJVEBF3V.mjs} +4 -4
- package/dist/{chunk-NKCR3FSU.js → chunk-RGEF6YBW.js} +4 -4
- package/dist/{chunk-VPT6GF3S.mjs → chunk-WWU5M5GO.mjs} +5 -5
- package/dist/executors.js +4 -4
- package/dist/executors.mjs +4 -4
- package/dist/generators.js +5 -5
- package/dist/generators.mjs +4 -4
- package/dist/index.js +12 -12
- package/dist/index.mjs +15 -15
- package/dist/src/executors/cloudflare-publish/executor.js +2 -2
- package/dist/src/executors/cloudflare-publish/executor.mjs +2 -2
- package/dist/src/executors/r2-upload-publish/executor.js +4 -4
- package/dist/src/executors/r2-upload-publish/executor.mjs +3 -3
- package/dist/src/executors/serve/executor.js +3 -3
- package/dist/src/executors/serve/executor.mjs +2 -2
- 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 +4 -4
- package/dist/src/generators/worker/generator.mjs +3 -3
- package/package.json +1 -1
|
@@ -1,18 +1,18 @@
|
|
|
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 _chunkFEVYI765js = require('./chunk-FEVYI765.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var _chunkYE4FHRXJjs = require('./chunk-YE4FHRXJ.js');
|
|
7
6
|
|
|
8
7
|
|
|
9
8
|
|
|
10
9
|
|
|
11
10
|
|
|
12
11
|
|
|
12
|
+
var _chunkRCE3CC76js = require('./chunk-RCE3CC76.js');
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
var
|
|
15
|
+
var _chunkFARER72Tjs = require('./chunk-FARER72T.js');
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
var _chunkJ5SB6L2Ljs = require('./chunk-J5SB6L2L.js');
|
|
@@ -47,12 +47,12 @@ async function applicationGenerator(tree, schema) {
|
|
|
47
47
|
const workspaceRoot = _chunkRCE3CC76js.findWorkspaceRoot.call(void 0, );
|
|
48
48
|
_chunkRCE3CC76js.writeDebug.call(void 0, `Loading the Storm Config from environment variables and storm.json file...
|
|
49
49
|
- workspaceRoot: ${workspaceRoot}`, config);
|
|
50
|
-
config = await
|
|
50
|
+
config = await _chunkFEVYI765js.loadStormConfig.call(void 0, workspaceRoot);
|
|
51
51
|
_chunkRCE3CC76js.writeTrace.call(void 0, `Loaded Storm config into env:
|
|
52
52
|
${Object.keys(process.env).map((key) => ` - ${key}=${JSON.stringify(process.env[key])}`).join("\n")}`, config);
|
|
53
53
|
const options = await normalizeOptions(tree, schema, config);
|
|
54
54
|
const tasks = [];
|
|
55
|
-
tasks.push(await
|
|
55
|
+
tasks.push(await _chunkFARER72Tjs.generator_default.call(void 0, tree, {
|
|
56
56
|
...options,
|
|
57
57
|
skipFormat: true
|
|
58
58
|
}));
|
|
@@ -27,26 +27,26 @@ import { loadConfig } from "c12";
|
|
|
27
27
|
import defu from "defu";
|
|
28
28
|
var getConfigFileByName = /* @__PURE__ */ __name(async (fileName, filePath, options = {}) => {
|
|
29
29
|
const workspacePath = filePath || findWorkspaceRoot(filePath);
|
|
30
|
-
let config = loadConfig({
|
|
30
|
+
let config = await loadConfig({
|
|
31
31
|
cwd: workspacePath,
|
|
32
32
|
packageJson: true,
|
|
33
33
|
name: fileName,
|
|
34
34
|
envName: fileName?.toUpperCase(),
|
|
35
35
|
jitiOptions: {
|
|
36
36
|
debug: false,
|
|
37
|
-
|
|
37
|
+
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false : joinPaths(process.env.STORM_CACHE_DIR || "node_modules/.cache/storm", "config")
|
|
38
38
|
},
|
|
39
39
|
...options
|
|
40
40
|
});
|
|
41
41
|
if (!config || Object.keys(config).length === 0) {
|
|
42
|
-
config = loadConfig({
|
|
42
|
+
config = await loadConfig({
|
|
43
43
|
cwd: workspacePath,
|
|
44
44
|
packageJson: true,
|
|
45
45
|
name: fileName,
|
|
46
46
|
envName: fileName?.toUpperCase(),
|
|
47
47
|
jitiOptions: {
|
|
48
48
|
debug: false,
|
|
49
|
-
|
|
49
|
+
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false : joinPaths(process.env.STORM_CACHE_DIR || "node_modules/.cache/storm", "config")
|
|
50
50
|
},
|
|
51
51
|
configFile: fileName,
|
|
52
52
|
...options
|
|
@@ -1,14 +1,14 @@
|
|
|
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
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkVTHBMY4Bjs = require('./chunk-VTHBMY4B.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunkJCB2DTP6js = require('./chunk-JCB2DTP6.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
var
|
|
11
|
+
var _chunkFEVYI765js = require('./chunk-FEVYI765.js');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
@@ -37,7 +37,7 @@ async function runExecutor(options, context) {
|
|
|
37
37
|
}
|
|
38
38
|
try {
|
|
39
39
|
const workspaceRoot = _chunkRCE3CC76js.findWorkspaceRoot.call(void 0, );
|
|
40
|
-
const config = await
|
|
40
|
+
const config = await _chunkFEVYI765js.loadStormConfig.call(void 0, workspaceRoot);
|
|
41
41
|
const sourceRoot = _nullishCoalesce(_optionalChain([context, 'access', _7 => _7.projectsConfigurations, 'access', _8 => _8.projects, 'access', _9 => _9[context.projectName], 'optionalAccess', _10 => _10.sourceRoot]), () => ( workspaceRoot));
|
|
42
42
|
const projectName = _nullishCoalesce(_optionalChain([context, 'access', _11 => _11.projectsConfigurations, 'access', _12 => _12.projects, 'access', _13 => _13[context.projectName], 'optionalAccess', _14 => _14.name]), () => ( context.projectName));
|
|
43
43
|
const projectDetails = _chunkVTHBMY4Bjs.getPackageInfo.call(void 0, context.projectsConfigurations.projects[context.projectName]);
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
getInternalDependencies,
|
|
3
|
-
r2UploadFile
|
|
4
|
-
} from "./chunk-VYOULWAK.mjs";
|
|
5
1
|
import {
|
|
6
2
|
createCliOptions,
|
|
7
3
|
getPackageInfo
|
|
8
4
|
} from "./chunk-XU6MTFCV.mjs";
|
|
5
|
+
import {
|
|
6
|
+
getInternalDependencies,
|
|
7
|
+
r2UploadFile
|
|
8
|
+
} from "./chunk-VYOULWAK.mjs";
|
|
9
9
|
import {
|
|
10
10
|
loadStormConfig
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-JJVEBF3V.mjs";
|
|
12
12
|
import {
|
|
13
13
|
findWorkspaceRoot,
|
|
14
14
|
writeDebug,
|
package/dist/executors.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";require('./chunk-XO66D74Z.js');
|
|
2
2
|
require('./chunk-R7AIVBS7.js');
|
|
3
|
-
require('./chunk-
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-JCB2DTP6.js');
|
|
3
|
+
require('./chunk-RGEF6YBW.js');
|
|
4
|
+
require('./chunk-GTCFSQI5.js');
|
|
6
5
|
require('./chunk-VTHBMY4B.js');
|
|
7
|
-
require('./chunk-
|
|
6
|
+
require('./chunk-JCB2DTP6.js');
|
|
7
|
+
require('./chunk-FEVYI765.js');
|
|
8
8
|
require('./chunk-RCE3CC76.js');
|
|
9
9
|
require('./chunk-J5SB6L2L.js');
|
package/dist/executors.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import "./chunk-YSCEY447.mjs";
|
|
2
2
|
import "./chunk-QEWY5YJA.mjs";
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-VYOULWAK.mjs";
|
|
3
|
+
import "./chunk-WWU5M5GO.mjs";
|
|
4
|
+
import "./chunk-CYPHDXO4.mjs";
|
|
6
5
|
import "./chunk-XU6MTFCV.mjs";
|
|
7
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-VYOULWAK.mjs";
|
|
7
|
+
import "./chunk-JJVEBF3V.mjs";
|
|
8
8
|
import "./chunk-NSLK6ZDO.mjs";
|
|
9
9
|
import "./chunk-A7FFSBE6.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkIF6J7SWPjs = require('./chunk-IF6J7SWP.js');
|
|
6
|
+
require('./chunk-FEVYI765.js');
|
|
7
|
+
require('./chunk-RCE3CC76.js');
|
|
6
8
|
|
|
7
9
|
|
|
8
10
|
|
|
9
|
-
var
|
|
10
|
-
require('./chunk-YE4FHRXJ.js');
|
|
11
|
-
require('./chunk-RCE3CC76.js');
|
|
11
|
+
var _chunkFARER72Tjs = require('./chunk-FARER72T.js');
|
|
12
12
|
require('./chunk-J5SB6L2L.js');
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
exports.applicationGenerator =
|
|
18
|
+
exports.applicationGenerator = _chunkIF6J7SWPjs.applicationGenerator; exports.applicationSchematic = _chunkIF6J7SWPjs.applicationSchematic; exports.initGenerator = _chunkFARER72Tjs.initGenerator; exports.initSchematic = _chunkFARER72Tjs.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-7KICJG4N.mjs";
|
|
6
|
+
import "./chunk-JJVEBF3V.mjs";
|
|
7
|
+
import "./chunk-NSLK6ZDO.mjs";
|
|
6
8
|
import {
|
|
7
9
|
initGenerator,
|
|
8
10
|
initSchematic
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-OARYMVO7.mjs";
|
|
11
|
-
import "./chunk-NSLK6ZDO.mjs";
|
|
11
|
+
} from "./chunk-FDWGGCRH.mjs";
|
|
12
12
|
import "./chunk-A7FFSBE6.mjs";
|
|
13
13
|
export {
|
|
14
14
|
applicationGenerator,
|
package/dist/index.js
CHANGED
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); 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; }require('./chunk-XO66D74Z.js');
|
|
2
|
-
require('./chunk-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
var _chunkI4XNMV5Ujs = require('./chunk-I4XNMV5U.js');
|
|
2
|
+
require('./chunk-R7AIVBS7.js');
|
|
3
|
+
require('./chunk-RGEF6YBW.js');
|
|
4
|
+
require('./chunk-GTCFSQI5.js');
|
|
7
5
|
|
|
8
6
|
|
|
9
7
|
|
|
10
|
-
var
|
|
8
|
+
var _chunkVTHBMY4Bjs = require('./chunk-VTHBMY4B.js');
|
|
9
|
+
require('./chunk-DHBG5ASJ.js');
|
|
11
10
|
require('./chunk-CVGPWUNP.js');
|
|
12
|
-
require('./chunk-R7AIVBS7.js');
|
|
13
|
-
require('./chunk-Z46UO4N7.js');
|
|
14
|
-
require('./chunk-NKCR3FSU.js');
|
|
15
11
|
|
|
16
12
|
|
|
17
13
|
|
|
@@ -19,11 +15,15 @@ var _chunkJCB2DTP6js = require('./chunk-JCB2DTP6.js');
|
|
|
19
15
|
|
|
20
16
|
|
|
21
17
|
|
|
22
|
-
var
|
|
23
|
-
require('./chunk-
|
|
18
|
+
var _chunkIF6J7SWPjs = require('./chunk-IF6J7SWP.js');
|
|
19
|
+
require('./chunk-FEVYI765.js');
|
|
24
20
|
require('./chunk-RCE3CC76.js');
|
|
25
21
|
|
|
26
22
|
|
|
23
|
+
|
|
24
|
+
var _chunkFARER72Tjs = require('./chunk-FARER72T.js');
|
|
25
|
+
|
|
26
|
+
|
|
27
27
|
var _chunkJ5SB6L2Ljs = require('./chunk-J5SB6L2L.js');
|
|
28
28
|
|
|
29
29
|
// src/plugins/index.ts
|
|
@@ -148,4 +148,4 @@ _chunkJ5SB6L2Ljs.__name.call(void 0, createPackageJson, "createPackageJson");
|
|
|
148
148
|
|
|
149
149
|
|
|
150
150
|
|
|
151
|
-
exports.applicationGenerator =
|
|
151
|
+
exports.applicationGenerator = _chunkIF6J7SWPjs.applicationGenerator; exports.applicationSchematic = _chunkIF6J7SWPjs.applicationSchematic; exports.createNodes = createNodes; exports.getInternalDependencies = _chunkJCB2DTP6js.getInternalDependencies; exports.initGenerator = _chunkFARER72Tjs.initGenerator; exports.initSchematic = _chunkFARER72Tjs.initSchematic; exports.name = name; exports.r2UploadFile = _chunkJCB2DTP6js.r2UploadFile;
|
package/dist/index.mjs
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
import "./chunk-YSCEY447.mjs";
|
|
2
|
-
import "./chunk-
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
applicationSchematic
|
|
6
|
-
} from "./chunk-A4ZIZ2JU.mjs";
|
|
2
|
+
import "./chunk-QEWY5YJA.mjs";
|
|
3
|
+
import "./chunk-WWU5M5GO.mjs";
|
|
4
|
+
import "./chunk-CYPHDXO4.mjs";
|
|
7
5
|
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
} from "./chunk-
|
|
6
|
+
ProjectTagConstants,
|
|
7
|
+
addProjectTag
|
|
8
|
+
} from "./chunk-XU6MTFCV.mjs";
|
|
9
|
+
import "./chunk-3J7KBHMJ.mjs";
|
|
11
10
|
import "./chunk-7Z5PILRU.mjs";
|
|
12
|
-
import "./chunk-QEWY5YJA.mjs";
|
|
13
|
-
import "./chunk-OJNZ4PXQ.mjs";
|
|
14
|
-
import "./chunk-VPT6GF3S.mjs";
|
|
15
11
|
import {
|
|
16
12
|
getInternalDependencies,
|
|
17
13
|
r2UploadFile
|
|
18
14
|
} from "./chunk-VYOULWAK.mjs";
|
|
19
15
|
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
} from "./chunk-
|
|
23
|
-
import "./chunk-
|
|
16
|
+
applicationGenerator,
|
|
17
|
+
applicationSchematic
|
|
18
|
+
} from "./chunk-7KICJG4N.mjs";
|
|
19
|
+
import "./chunk-JJVEBF3V.mjs";
|
|
24
20
|
import "./chunk-NSLK6ZDO.mjs";
|
|
21
|
+
import {
|
|
22
|
+
initGenerator,
|
|
23
|
+
initSchematic
|
|
24
|
+
} from "./chunk-FDWGGCRH.mjs";
|
|
25
25
|
import {
|
|
26
26
|
__name
|
|
27
27
|
} from "./chunk-A7FFSBE6.mjs";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
var _chunkR7AIVBS7js = require('../../../chunk-R7AIVBS7.js');
|
|
4
|
-
require('../../../chunk-
|
|
4
|
+
require('../../../chunk-GTCFSQI5.js');
|
|
5
5
|
require('../../../chunk-VTHBMY4B.js');
|
|
6
|
-
require('../../../chunk-
|
|
6
|
+
require('../../../chunk-FEVYI765.js');
|
|
7
7
|
require('../../../chunk-RCE3CC76.js');
|
|
8
8
|
require('../../../chunk-J5SB6L2L.js');
|
|
9
9
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runExecutor
|
|
3
3
|
} from "../../../chunk-QEWY5YJA.mjs";
|
|
4
|
-
import "../../../chunk-
|
|
4
|
+
import "../../../chunk-CYPHDXO4.mjs";
|
|
5
5
|
import "../../../chunk-XU6MTFCV.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
6
|
+
import "../../../chunk-JJVEBF3V.mjs";
|
|
7
7
|
import "../../../chunk-NSLK6ZDO.mjs";
|
|
8
8
|
import "../../../chunk-A7FFSBE6.mjs";
|
|
9
9
|
export {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-JCB2DTP6.js');
|
|
3
|
+
var _chunkRGEF6YBWjs = require('../../../chunk-RGEF6YBW.js');
|
|
5
4
|
require('../../../chunk-VTHBMY4B.js');
|
|
6
|
-
require('../../../chunk-
|
|
5
|
+
require('../../../chunk-JCB2DTP6.js');
|
|
6
|
+
require('../../../chunk-FEVYI765.js');
|
|
7
7
|
require('../../../chunk-RCE3CC76.js');
|
|
8
8
|
require('../../../chunk-J5SB6L2L.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunkRGEF6YBWjs.runExecutor;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runExecutor
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-VYOULWAK.mjs";
|
|
3
|
+
} from "../../../chunk-WWU5M5GO.mjs";
|
|
5
4
|
import "../../../chunk-XU6MTFCV.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
5
|
+
import "../../../chunk-VYOULWAK.mjs";
|
|
6
|
+
import "../../../chunk-JJVEBF3V.mjs";
|
|
7
7
|
import "../../../chunk-NSLK6ZDO.mjs";
|
|
8
8
|
import "../../../chunk-A7FFSBE6.mjs";
|
|
9
9
|
export {
|
|
@@ -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 _chunkGTCFSQI5js = require('../../../chunk-GTCFSQI5.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunkVTHBMY4Bjs = require('../../../chunk-VTHBMY4B.js');
|
|
7
|
-
require('../../../chunk-
|
|
7
|
+
require('../../../chunk-FEVYI765.js');
|
|
8
8
|
require('../../../chunk-RCE3CC76.js');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -60,7 +60,7 @@ async function* serveExecutor(options, context, config) {
|
|
|
60
60
|
};
|
|
61
61
|
}
|
|
62
62
|
_chunkJ5SB6L2Ljs.__name.call(void 0, serveExecutor, "serveExecutor");
|
|
63
|
-
var executor_default =
|
|
63
|
+
var executor_default = _chunkGTCFSQI5js.withRunExecutor.call(void 0, "Cloudflare Serve executor", serveExecutor, {
|
|
64
64
|
skipReadingConfig: false,
|
|
65
65
|
hooks: {
|
|
66
66
|
applyDefaultOptions: /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, (options) => {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
withRunExecutor
|
|
3
|
-
} from "../../../chunk-
|
|
3
|
+
} from "../../../chunk-CYPHDXO4.mjs";
|
|
4
4
|
import {
|
|
5
5
|
createCliOptions
|
|
6
6
|
} from "../../../chunk-XU6MTFCV.mjs";
|
|
7
|
-
import "../../../chunk-
|
|
7
|
+
import "../../../chunk-JJVEBF3V.mjs";
|
|
8
8
|
import "../../../chunk-NSLK6ZDO.mjs";
|
|
9
9
|
import {
|
|
10
10
|
__name,
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkFARER72Tjs = require('../../../chunk-FARER72T.js');
|
|
6
6
|
require('../../../chunk-J5SB6L2L.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunkFARER72Tjs.generator_default; exports.initGenerator = _chunkFARER72Tjs.initGenerator; exports.initSchematic = _chunkFARER72Tjs.initSchematic;
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-YE4FHRXJ.js');
|
|
5
|
+
var _chunkIF6J7SWPjs = require('../../../chunk-IF6J7SWP.js');
|
|
6
|
+
require('../../../chunk-FEVYI765.js');
|
|
8
7
|
require('../../../chunk-RCE3CC76.js');
|
|
8
|
+
require('../../../chunk-FARER72T.js');
|
|
9
9
|
require('../../../chunk-J5SB6L2L.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.applicationGenerator =
|
|
14
|
+
exports.applicationGenerator = _chunkIF6J7SWPjs.applicationGenerator; exports.applicationSchematic = _chunkIF6J7SWPjs.applicationSchematic; exports.default = _chunkIF6J7SWPjs.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-OARYMVO7.mjs";
|
|
5
|
+
} from "../../../chunk-7KICJG4N.mjs";
|
|
6
|
+
import "../../../chunk-JJVEBF3V.mjs";
|
|
8
7
|
import "../../../chunk-NSLK6ZDO.mjs";
|
|
8
|
+
import "../../../chunk-FDWGGCRH.mjs";
|
|
9
9
|
import "../../../chunk-A7FFSBE6.mjs";
|
|
10
10
|
export {
|
|
11
11
|
applicationGenerator,
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@storm-software/cloudflare-tools","version":"0.
|
|
1
|
+
{"name":"@storm-software/cloudflare-tools","version":"0.50.0","description":"A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.","repository":{"type":"github","url":"https://github.com/storm-software/storm-ops","directory":"packages/cloudflare-tools"},"homepage":"https://stormsoftware.com","bugs":"https://github.com/storm-software/storm-ops/issues","author":{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"},"license":"Apache-2.0","private":false,"main":"dist/index.js","module":"dist/index.mjs","exports":{"./package.json":"./package.json","./docs/*":"./docs/*","./migrations.json":"./migrations.json","./executors.json":"./executors.json","./executors/*/schema.json":"./dist/src/executors/*/schema.json","./generators.json":"./generators.json","./generators/*/schema.json":"./dist/src/generators/*/schema.json",".":{"import":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"default":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./index":{"import":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"default":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./executors":{"import":{"types":"./dist/executors.d.mts","default":"./dist/executors.mjs"},"require":{"types":"./dist/executors.d.ts","default":"./dist/executors.js"},"default":{"types":"./dist/executors.d.ts","default":"./dist/executors.js"}},"./generators":{"import":{"types":"./dist/generators.d.mts","default":"./dist/generators.mjs"},"require":{"types":"./dist/generators.d.ts","default":"./dist/generators.js"},"default":{"types":"./dist/generators.d.ts","default":"./dist/generators.js"}},"./utils":{"import":{"types":"./dist/src/utils/index.d.mts","default":"./dist/src/utils/index.mjs"},"require":{"types":"./dist/src/utils/index.d.ts","default":"./dist/src/utils/index.js"},"default":{"types":"./dist/src/utils/index.d.ts","default":"./dist/src/utils/index.js"}},"./utils/*":{"import":{"types":"./dist/src/utils/*.d.mts","default":"./dist/src/utils/*.mjs"},"require":{"types":"./dist/src/utils/*.d.ts","default":"./dist/src/utils/*.js"},"default":{"types":"./dist/src/utils/*.d.ts","default":"./dist/src/utils/*.js"}},"./executors/*/executor.js":"./dist/src/executors/*/executor.js","./generators/*/generator.js":"./dist/src/generators/*/generator.js","./plugin":"./dist/src/plugins/index.js"},"typings":"dist/index.d.ts","keywords":["monorepo","open-system","storm","storm-ops","storm-stack","stormstack","sullivanpj"],"peerDependencies":{"@nx/devkit":"^20.3.1","@nx/node":"^20.3.1","@nx/web":"^20.3.1","@nx/webpack":"^20.3.1","nx":"^20.3.1","wrangler":">=3.58.0"},"peerDependenciesMeta":{"@nx/devkit":{"optional":false},"@nx/node":{"optional":false},"@nx/web":{"optional":false},"@nx/webpack":{"optional":false},"nx":{"optional":false},"wrangler":{"optional":false}},"dependencies":{"@aws-sdk/client-s3":"3.47.0","c12":"^2.0.0-beta.2","glob":"^10.4.2","jest-resolve":"29.7.0"},"devDependencies":{"@nx/devkit":"^20.3.1","@nx/node":"^20.3.1","@nx/web":"^20.3.1","@nx/webpack":"^20.3.1","nx":"^20.3.1","tsup":"8.3.5","untyped":"^1.5.2","wrangler":">=3.58.0"},"publishConfig":{"access":"public"},"executors":"./executors.json","generators":"./generators.json"}
|