@storm-software/cloudflare-tools 0.55.21 → 0.55.23
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-T4IWTHDS.js → chunk-6GDCEDJO.js} +3 -3
- package/dist/{chunk-C7LFNTNE.mjs → chunk-AHT3CRUF.mjs} +3 -5
- package/dist/{chunk-BRNE2OJC.js → chunk-BCL7PY4I.js} +41 -41
- package/dist/{chunk-VN5NKV4M.js → chunk-DBSH4BRC.js} +12 -12
- package/dist/{chunk-X6VJDRKI.js → chunk-E7YOJ4JG.js} +8 -9
- package/dist/{chunk-AHEAMC5D.mjs → chunk-GNKRSWX6.mjs} +3 -3
- package/dist/{chunk-R5IK37XB.mjs → chunk-K4SZWADC.mjs} +3 -3
- package/dist/{chunk-LI7SJBJ3.mjs → chunk-KXSJMDJH.mjs} +1 -1
- package/dist/{chunk-5WDALT4X.js → chunk-RDDSMEJF.js} +1 -1
- package/dist/{chunk-MUNYIY4Y.js → chunk-SOJGUDFD.js} +16 -16
- package/dist/{chunk-ZO73VQJ6.js → chunk-T4YFTNGO.js} +160 -162
- package/dist/{chunk-PAM7JMC5.mjs → chunk-X64HH4GP.mjs} +1 -1
- package/dist/{chunk-WBCAYK6X.mjs → chunk-YEBDVDCV.mjs} +1 -1
- package/dist/{chunk-IMI2SM4Q.mjs → chunk-ZV2BVSPZ.mjs} +8 -9
- 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 +1 -1
|
@@ -8,7 +8,7 @@ var require_package = __commonJS({
|
|
|
8
8
|
"package.json"(exports, module) {
|
|
9
9
|
module.exports = {
|
|
10
10
|
name: "@storm-software/cloudflare-tools",
|
|
11
|
-
version: "0.55.
|
|
11
|
+
version: "0.55.23",
|
|
12
12
|
description: "A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.",
|
|
13
13
|
repository: {
|
|
14
14
|
type: "github",
|
|
@@ -611,55 +611,55 @@ var getLogFn = /* @__PURE__ */ __name((logLevel = LogLevel.INFO, config = {}, _c
|
|
|
611
611
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel) {
|
|
612
612
|
return (message) => {
|
|
613
613
|
console.error(`
|
|
614
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal]`)}
|
|
614
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
615
615
|
`);
|
|
616
616
|
};
|
|
617
617
|
}
|
|
618
618
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel) {
|
|
619
619
|
return (message) => {
|
|
620
620
|
console.error(`
|
|
621
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error]`)}
|
|
621
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
622
622
|
`);
|
|
623
623
|
};
|
|
624
624
|
}
|
|
625
625
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel) {
|
|
626
626
|
return (message) => {
|
|
627
627
|
console.warn(`
|
|
628
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn]`)}
|
|
628
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
629
629
|
`);
|
|
630
630
|
};
|
|
631
631
|
}
|
|
632
632
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel) {
|
|
633
633
|
return (message) => {
|
|
634
634
|
console.info(`
|
|
635
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success]`)}
|
|
635
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
636
636
|
`);
|
|
637
637
|
};
|
|
638
638
|
}
|
|
639
639
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel) {
|
|
640
640
|
return (message) => {
|
|
641
641
|
console.info(`
|
|
642
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info]`)}
|
|
642
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
643
643
|
`);
|
|
644
644
|
};
|
|
645
645
|
}
|
|
646
646
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel) {
|
|
647
647
|
return (message) => {
|
|
648
648
|
console.debug(`
|
|
649
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug]`)}
|
|
649
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
650
650
|
`);
|
|
651
651
|
};
|
|
652
652
|
}
|
|
653
653
|
if (typeof logLevel === "number" && LogLevel.TRACE >= logLevel) {
|
|
654
654
|
return (message) => {
|
|
655
655
|
console.debug(`
|
|
656
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace]`)}
|
|
656
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
657
657
|
`);
|
|
658
658
|
};
|
|
659
659
|
}
|
|
660
660
|
return (message) => {
|
|
661
661
|
console.log(`
|
|
662
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System]`)}
|
|
662
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
663
663
|
`);
|
|
664
664
|
};
|
|
665
665
|
}, "getLogFn");
|
|
@@ -676,7 +676,6 @@ var getStopwatch = /* @__PURE__ */ __name((name) => {
|
|
|
676
676
|
const end = process.hrtime(start);
|
|
677
677
|
console.info(`
|
|
678
678
|
> \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(end[0] * 1e3 + end[1] / 1e6)}ms to complete
|
|
679
|
-
|
|
680
679
|
`);
|
|
681
680
|
};
|
|
682
681
|
}, "getStopwatch");
|
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-
|
|
3
|
+
require('./chunk-T4YFTNGO.js');
|
|
4
|
+
require('./chunk-SOJGUDFD.js');
|
|
5
|
+
require('./chunk-6GDCEDJO.js');
|
|
6
6
|
require('./chunk-VTHBMY4B.js');
|
|
7
|
-
require('./chunk-
|
|
8
|
-
require('./chunk-
|
|
7
|
+
require('./chunk-BCL7PY4I.js');
|
|
8
|
+
require('./chunk-E7YOJ4JG.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-PDHMNSTI.mjs";
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
3
|
+
import "./chunk-AHT3CRUF.mjs";
|
|
4
|
+
import "./chunk-GNKRSWX6.mjs";
|
|
5
|
+
import "./chunk-X64HH4GP.mjs";
|
|
6
6
|
import "./chunk-KFNKJP2U.mjs";
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-KXSJMDJH.mjs";
|
|
8
|
+
import "./chunk-ZV2BVSPZ.mjs";
|
|
9
9
|
import "./chunk-Y3XZCCPP.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkDBSH4BRCjs = require('./chunk-DBSH4BRC.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
10
|
-
require('./chunk-
|
|
11
|
-
require('./chunk-
|
|
9
|
+
var _chunkRDDSMEJFjs = require('./chunk-RDDSMEJF.js');
|
|
10
|
+
require('./chunk-BCL7PY4I.js');
|
|
11
|
+
require('./chunk-E7YOJ4JG.js');
|
|
12
12
|
require('./chunk-J5SB6L2L.js');
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
exports.applicationGenerator =
|
|
18
|
+
exports.applicationGenerator = _chunkDBSH4BRCjs.applicationGenerator; exports.applicationSchematic = _chunkDBSH4BRCjs.applicationSchematic; exports.initGenerator = _chunkRDDSMEJFjs.initGenerator; exports.initSchematic = _chunkRDDSMEJFjs.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-K4SZWADC.mjs";
|
|
6
6
|
import {
|
|
7
7
|
initGenerator,
|
|
8
8
|
initSchematic
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-YEBDVDCV.mjs";
|
|
10
|
+
import "./chunk-KXSJMDJH.mjs";
|
|
11
|
+
import "./chunk-ZV2BVSPZ.mjs";
|
|
12
12
|
import "./chunk-Y3XZCCPP.mjs";
|
|
13
13
|
export {
|
|
14
14
|
applicationGenerator,
|
package/dist/index.js
CHANGED
|
@@ -3,25 +3,25 @@ require('./chunk-DHBG5ASJ.js');
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkDBSH4BRCjs = require('./chunk-DBSH4BRC.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkRDDSMEJFjs = require('./chunk-RDDSMEJF.js');
|
|
11
11
|
require('./chunk-CVGPWUNP.js');
|
|
12
12
|
require('./chunk-R7AIVBS7.js');
|
|
13
|
-
require('./chunk-
|
|
14
|
-
require('./chunk-
|
|
13
|
+
require('./chunk-T4YFTNGO.js');
|
|
14
|
+
require('./chunk-SOJGUDFD.js');
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunk6GDCEDJOjs = require('./chunk-6GDCEDJO.js');
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
var _chunkVTHBMY4Bjs = require('./chunk-VTHBMY4B.js');
|
|
23
|
-
require('./chunk-
|
|
24
|
-
require('./chunk-
|
|
23
|
+
require('./chunk-BCL7PY4I.js');
|
|
24
|
+
require('./chunk-E7YOJ4JG.js');
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
var _chunkJ5SB6L2Ljs = require('./chunk-J5SB6L2L.js');
|
|
@@ -148,4 +148,4 @@ _chunkJ5SB6L2Ljs.__name.call(void 0, createPackageJson, "createPackageJson");
|
|
|
148
148
|
|
|
149
149
|
|
|
150
150
|
|
|
151
|
-
exports.applicationGenerator =
|
|
151
|
+
exports.applicationGenerator = _chunkDBSH4BRCjs.applicationGenerator; exports.applicationSchematic = _chunkDBSH4BRCjs.applicationSchematic; exports.createNodes = createNodes; exports.getInternalDependencies = _chunk6GDCEDJOjs.getInternalDependencies; exports.initGenerator = _chunkRDDSMEJFjs.initGenerator; exports.initSchematic = _chunkRDDSMEJFjs.initSchematic; exports.name = name; exports.r2UploadFile = _chunk6GDCEDJOjs.r2UploadFile;
|
package/dist/index.mjs
CHANGED
|
@@ -3,25 +3,25 @@ import "./chunk-3J7KBHMJ.mjs";
|
|
|
3
3
|
import {
|
|
4
4
|
applicationGenerator,
|
|
5
5
|
applicationSchematic
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-K4SZWADC.mjs";
|
|
7
7
|
import {
|
|
8
8
|
initGenerator,
|
|
9
9
|
initSchematic
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-YEBDVDCV.mjs";
|
|
11
11
|
import "./chunk-7Z5PILRU.mjs";
|
|
12
12
|
import "./chunk-PDHMNSTI.mjs";
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-AHT3CRUF.mjs";
|
|
14
|
+
import "./chunk-GNKRSWX6.mjs";
|
|
15
15
|
import {
|
|
16
16
|
getInternalDependencies,
|
|
17
17
|
r2UploadFile
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-X64HH4GP.mjs";
|
|
19
19
|
import {
|
|
20
20
|
ProjectTagConstants,
|
|
21
21
|
addProjectTag
|
|
22
22
|
} from "./chunk-KFNKJP2U.mjs";
|
|
23
|
-
import "./chunk-
|
|
24
|
-
import "./chunk-
|
|
23
|
+
import "./chunk-KXSJMDJH.mjs";
|
|
24
|
+
import "./chunk-ZV2BVSPZ.mjs";
|
|
25
25
|
import {
|
|
26
26
|
__name
|
|
27
27
|
} from "./chunk-Y3XZCCPP.mjs";
|
|
@@ -1,10 +1,10 @@
|
|
|
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-T4YFTNGO.js');
|
|
5
5
|
require('../../../chunk-VTHBMY4B.js');
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
6
|
+
require('../../../chunk-BCL7PY4I.js');
|
|
7
|
+
require('../../../chunk-E7YOJ4JG.js');
|
|
8
8
|
require('../../../chunk-J5SB6L2L.js');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runExecutor
|
|
3
3
|
} from "../../../chunk-PDHMNSTI.mjs";
|
|
4
|
-
import "../../../chunk-
|
|
4
|
+
import "../../../chunk-AHT3CRUF.mjs";
|
|
5
5
|
import "../../../chunk-KFNKJP2U.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
6
|
+
import "../../../chunk-KXSJMDJH.mjs";
|
|
7
|
+
import "../../../chunk-ZV2BVSPZ.mjs";
|
|
8
8
|
import "../../../chunk-Y3XZCCPP.mjs";
|
|
9
9
|
export {
|
|
10
10
|
runExecutor as default
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkSOJGUDFDjs = require('../../../chunk-SOJGUDFD.js');
|
|
4
|
+
require('../../../chunk-6GDCEDJO.js');
|
|
5
5
|
require('../../../chunk-VTHBMY4B.js');
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
6
|
+
require('../../../chunk-BCL7PY4I.js');
|
|
7
|
+
require('../../../chunk-E7YOJ4JG.js');
|
|
8
8
|
require('../../../chunk-J5SB6L2L.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunkSOJGUDFDjs.runExecutor;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runExecutor
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-GNKRSWX6.mjs";
|
|
4
|
+
import "../../../chunk-X64HH4GP.mjs";
|
|
5
5
|
import "../../../chunk-KFNKJP2U.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
6
|
+
import "../../../chunk-KXSJMDJH.mjs";
|
|
7
|
+
import "../../../chunk-ZV2BVSPZ.mjs";
|
|
8
8
|
import "../../../chunk-Y3XZCCPP.mjs";
|
|
9
9
|
export {
|
|
10
10
|
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 _chunkT4YFTNGOjs = require('../../../chunk-T4YFTNGO.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunkVTHBMY4Bjs = require('../../../chunk-VTHBMY4B.js');
|
|
7
|
-
require('../../../chunk-
|
|
8
|
-
require('../../../chunk-
|
|
7
|
+
require('../../../chunk-BCL7PY4I.js');
|
|
8
|
+
require('../../../chunk-E7YOJ4JG.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
@@ -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 = _chunkT4YFTNGOjs.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,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
withRunExecutor
|
|
3
|
-
} from "../../../chunk-
|
|
3
|
+
} from "../../../chunk-AHT3CRUF.mjs";
|
|
4
4
|
import {
|
|
5
5
|
createCliOptions
|
|
6
6
|
} from "../../../chunk-KFNKJP2U.mjs";
|
|
7
|
-
import "../../../chunk-
|
|
8
|
-
import "../../../chunk-
|
|
7
|
+
import "../../../chunk-KXSJMDJH.mjs";
|
|
8
|
+
import "../../../chunk-ZV2BVSPZ.mjs";
|
|
9
9
|
import {
|
|
10
10
|
__name,
|
|
11
11
|
__require
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkRDDSMEJFjs = require('../../../chunk-RDDSMEJF.js');
|
|
6
6
|
require('../../../chunk-J5SB6L2L.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunkRDDSMEJFjs.generator_default; exports.initGenerator = _chunkRDDSMEJFjs.initGenerator; exports.initSchematic = _chunkRDDSMEJFjs.initSchematic;
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
8
|
-
require('../../../chunk-
|
|
5
|
+
var _chunkDBSH4BRCjs = require('../../../chunk-DBSH4BRC.js');
|
|
6
|
+
require('../../../chunk-RDDSMEJF.js');
|
|
7
|
+
require('../../../chunk-BCL7PY4I.js');
|
|
8
|
+
require('../../../chunk-E7YOJ4JG.js');
|
|
9
9
|
require('../../../chunk-J5SB6L2L.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.applicationGenerator =
|
|
14
|
+
exports.applicationGenerator = _chunkDBSH4BRCjs.applicationGenerator; exports.applicationSchematic = _chunkDBSH4BRCjs.applicationSchematic; exports.default = _chunkDBSH4BRCjs.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-K4SZWADC.mjs";
|
|
6
|
+
import "../../../chunk-YEBDVDCV.mjs";
|
|
7
|
+
import "../../../chunk-KXSJMDJH.mjs";
|
|
8
|
+
import "../../../chunk-ZV2BVSPZ.mjs";
|
|
9
9
|
import "../../../chunk-Y3XZCCPP.mjs";
|
|
10
10
|
export {
|
|
11
11
|
applicationGenerator,
|
package/dist/src/utils/index.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../chunk-
|
|
5
|
+
var _chunk6GDCEDJOjs = require('../../chunk-6GDCEDJO.js');
|
|
6
|
+
require('../../chunk-E7YOJ4JG.js');
|
|
7
7
|
require('../../chunk-J5SB6L2L.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.getInternalDependencies =
|
|
11
|
+
exports.getInternalDependencies = _chunk6GDCEDJOjs.getInternalDependencies; exports.r2UploadFile = _chunk6GDCEDJOjs.r2UploadFile;
|
package/dist/src/utils/index.mjs
CHANGED
|
@@ -2,8 +2,8 @@ import "../../chunk-7Z5PILRU.mjs";
|
|
|
2
2
|
import {
|
|
3
3
|
getInternalDependencies,
|
|
4
4
|
r2UploadFile
|
|
5
|
-
} from "../../chunk-
|
|
6
|
-
import "../../chunk-
|
|
5
|
+
} from "../../chunk-X64HH4GP.mjs";
|
|
6
|
+
import "../../chunk-ZV2BVSPZ.mjs";
|
|
7
7
|
import "../../chunk-Y3XZCCPP.mjs";
|
|
8
8
|
export {
|
|
9
9
|
getInternalDependencies,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../../chunk-
|
|
4
|
+
var _chunk6GDCEDJOjs = require('../../chunk-6GDCEDJO.js');
|
|
5
|
+
require('../../chunk-E7YOJ4JG.js');
|
|
6
6
|
require('../../chunk-J5SB6L2L.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.getInternalDependencies =
|
|
10
|
+
exports.getInternalDependencies = _chunk6GDCEDJOjs.getInternalDependencies; exports.r2UploadFile = _chunk6GDCEDJOjs.r2UploadFile;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getInternalDependencies,
|
|
3
3
|
r2UploadFile
|
|
4
|
-
} from "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
4
|
+
} from "../../chunk-X64HH4GP.mjs";
|
|
5
|
+
import "../../chunk-ZV2BVSPZ.mjs";
|
|
6
6
|
import "../../chunk-Y3XZCCPP.mjs";
|
|
7
7
|
export {
|
|
8
8
|
getInternalDependencies,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/cloudflare-tools",
|
|
3
|
-
"version": "0.55.
|
|
3
|
+
"version": "0.55.23",
|
|
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",
|