@storm-software/cloudflare-tools 0.69.7 → 0.69.9
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 +14 -0
- package/README.md +1 -1
- package/dist/{chunk-Q4LQ5PPN.js → chunk-3SANBYBY.js} +62 -62
- package/dist/{chunk-AMJC7IYY.js → chunk-ACJLPNZQ.js} +1 -1
- package/dist/{chunk-JWF57AVG.js → chunk-AV3F7R3S.js} +6 -6
- package/dist/{chunk-KQ2FYXAH.mjs → chunk-ENJZEWWP.mjs} +2 -2
- package/dist/{chunk-CS7XAMRZ.js → chunk-ESCAEH5S.js} +2 -2
- package/dist/chunk-I3T42HZ4.js +262 -0
- package/dist/{chunk-3D34OZXV.mjs → chunk-IQCKAFLI.mjs} +3 -3
- package/dist/{chunk-DOKEDIHC.mjs → chunk-JPKUU56U.mjs} +3 -3
- package/dist/{chunk-DQ66YFHA.js → chunk-KAC75BBW.js} +5 -5
- package/dist/{chunk-COOQTBNS.mjs → chunk-MAOGR4ZA.mjs} +5 -5
- package/dist/chunk-MUN3IQVG.mjs +265 -0
- package/dist/chunk-N5B4PUK6.mjs +209 -0
- package/dist/{chunk-GWFET2SG.mjs → chunk-NTAV5AUH.mjs} +1 -1
- package/dist/chunk-WNKYNP5G.js +209 -0
- package/dist/{chunk-6YI6SWWG.mjs → chunk-XTLKKAUD.mjs} +1 -1
- package/dist/{chunk-4RMMRGT6.mjs → chunk-ZKRNXBH6.mjs} +1 -1
- package/dist/executors.js +4 -4
- package/dist/executors.mjs +6 -6
- package/dist/generators.js +5 -5
- package/dist/generators.mjs +5 -5
- package/dist/index.js +12 -12
- package/dist/index.mjs +16 -16
- package/dist/src/executors/cloudflare-publish/executor.js +2 -2
- package/dist/src/executors/cloudflare-publish/executor.mjs +4 -4
- package/dist/src/executors/r2-upload-publish/executor.js +4 -4
- package/dist/src/executors/r2-upload-publish/executor.mjs +4 -4
- package/dist/src/executors/serve/executor.js +3 -3
- 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 +2 -2
- package/dist/src/generators/worker/generator.js +4 -4
- package/dist/src/generators/worker/generator.mjs +4 -4
- package/dist/src/utils/index.mjs +1 -1
- package/dist/src/utils/r2-bucket-helpers.mjs +1 -1
- package/dist/tsup.config.mjs +1 -1
- package/package.json +3 -3
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runExecutor
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-IANDAPQS.mjs";
|
|
3
|
+
} from "../../../chunk-MAOGR4ZA.mjs";
|
|
5
4
|
import "../../../chunk-PH3DHY4Q.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
5
|
+
import "../../../chunk-IANDAPQS.mjs";
|
|
6
|
+
import "../../../chunk-XTLKKAUD.mjs";
|
|
7
7
|
import "../../../chunk-V44DYGWX.mjs";
|
|
8
|
-
import "../../../chunk-
|
|
8
|
+
import "../../../chunk-ZKRNXBH6.mjs";
|
|
9
9
|
export {
|
|
10
10
|
runExecutor as default
|
|
11
11
|
};
|
|
@@ -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 _chunk3SANBYBYjs = require('../../../chunk-3SANBYBY.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunkNU34IEWNjs = require('../../../chunk-NU34IEWN.js');
|
|
7
|
-
require('../../../chunk-
|
|
7
|
+
require('../../../chunk-ACJLPNZQ.js');
|
|
8
8
|
require('../../../chunk-2CDSXWFA.js');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -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 = _chunk3SANBYBYjs.withRunExecutor.call(void 0,
|
|
59
59
|
"Cloudflare Serve executor",
|
|
60
60
|
serveExecutor,
|
|
61
61
|
{
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
withRunExecutor
|
|
3
|
-
} from "../../../chunk-
|
|
3
|
+
} from "../../../chunk-ENJZEWWP.mjs";
|
|
4
4
|
import {
|
|
5
5
|
createCliOptions
|
|
6
6
|
} from "../../../chunk-PH3DHY4Q.mjs";
|
|
7
|
-
import "../../../chunk-
|
|
7
|
+
import "../../../chunk-XTLKKAUD.mjs";
|
|
8
8
|
import "../../../chunk-V44DYGWX.mjs";
|
|
9
9
|
import {
|
|
10
10
|
__require
|
|
11
|
-
} from "../../../chunk-
|
|
11
|
+
} from "../../../chunk-ZKRNXBH6.mjs";
|
|
12
12
|
|
|
13
13
|
// src/executors/serve/executor.ts
|
|
14
14
|
import { createAsyncIterable } from "@nx/devkit/src/utils/async-iterable";
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkESCAEH5Sjs = require('../../../chunk-ESCAEH5S.js');
|
|
6
6
|
require('../../../chunk-MCKGQKYU.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunkESCAEH5Sjs.generator_default; exports.initGenerator = _chunkESCAEH5Sjs.initGenerator; exports.initSchematic = _chunkESCAEH5Sjs.initSchematic;
|
|
@@ -2,8 +2,8 @@ import {
|
|
|
2
2
|
generator_default,
|
|
3
3
|
initGenerator,
|
|
4
4
|
initSchematic
|
|
5
|
-
} from "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
5
|
+
} from "../../../chunk-JPKUU56U.mjs";
|
|
6
|
+
import "../../../chunk-ZKRNXBH6.mjs";
|
|
7
7
|
export {
|
|
8
8
|
generator_default as default,
|
|
9
9
|
initGenerator,
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-AMJC7IYY.js');
|
|
5
|
+
var _chunkAV3F7R3Sjs = require('../../../chunk-AV3F7R3S.js');
|
|
6
|
+
require('../../../chunk-ACJLPNZQ.js');
|
|
8
7
|
require('../../../chunk-2CDSXWFA.js');
|
|
8
|
+
require('../../../chunk-ESCAEH5S.js');
|
|
9
9
|
require('../../../chunk-MCKGQKYU.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.applicationGenerator =
|
|
14
|
+
exports.applicationGenerator = _chunkAV3F7R3Sjs.applicationGenerator; exports.applicationSchematic = _chunkAV3F7R3Sjs.applicationSchematic; exports.default = _chunkAV3F7R3Sjs.generator_default;
|
|
@@ -2,11 +2,11 @@ import {
|
|
|
2
2
|
applicationGenerator,
|
|
3
3
|
applicationSchematic,
|
|
4
4
|
generator_default
|
|
5
|
-
} from "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-6YI6SWWG.mjs";
|
|
5
|
+
} from "../../../chunk-MUN3IQVG.mjs";
|
|
6
|
+
import "../../../chunk-XTLKKAUD.mjs";
|
|
8
7
|
import "../../../chunk-V44DYGWX.mjs";
|
|
9
|
-
import "../../../chunk-
|
|
8
|
+
import "../../../chunk-JPKUU56U.mjs";
|
|
9
|
+
import "../../../chunk-ZKRNXBH6.mjs";
|
|
10
10
|
export {
|
|
11
11
|
applicationGenerator,
|
|
12
12
|
applicationSchematic,
|
package/dist/src/utils/index.mjs
CHANGED
package/dist/tsup.config.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/cloudflare-tools",
|
|
3
|
-
"version": "0.69.
|
|
3
|
+
"version": "0.69.9",
|
|
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",
|
|
@@ -145,10 +145,10 @@
|
|
|
145
145
|
"nx": "^21.4.1",
|
|
146
146
|
"tsup": "8.4.0",
|
|
147
147
|
"untyped": "^1.5.2",
|
|
148
|
-
"wrangler": "^4.
|
|
148
|
+
"wrangler": "^4.42.0"
|
|
149
149
|
},
|
|
150
150
|
"publishConfig": { "access": "public" },
|
|
151
151
|
"executors": "./executors.json",
|
|
152
152
|
"generators": "./generators.json",
|
|
153
|
-
"gitHead": "
|
|
153
|
+
"gitHead": "98ec25abe75a19e5d92b532a339ac62cda9bc92d"
|
|
154
154
|
}
|