@storm-software/cloudflare-tools 0.63.42 → 0.63.43
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 +7 -0
- package/README.md +1 -1
- package/dist/{chunk-UHJ6SPET.mjs → chunk-5L56SCZL.mjs} +3 -3
- package/dist/{chunk-P7GMTWQM.js → chunk-64762F45.js} +16 -16
- package/dist/{chunk-XCADCGCM.mjs → chunk-CILB5HXX.mjs} +1 -1
- package/dist/{chunk-5TSMUCK7.mjs → chunk-FZACKKLL.mjs} +1 -1
- package/dist/{chunk-QCOL6VUC.mjs → chunk-GD345FYL.mjs} +3 -3
- package/dist/{chunk-OVVMIP6M.js → chunk-I5RWXPEF.js} +44 -44
- package/dist/{chunk-6HO4SE5I.js → chunk-KSNXRBMO.js} +1 -1
- package/dist/{chunk-5CBAPSWU.mjs → chunk-LUXWUZQ3.mjs} +2 -2
- package/dist/{chunk-JU6D63FQ.js → chunk-MWGGF4PH.js} +14 -13
- package/dist/{chunk-OZCZ4LBJ.js → chunk-OB7OI2RQ.js} +118 -118
- package/dist/{chunk-QCZ2SDC7.mjs → chunk-SEDPOYSM.mjs} +1 -1
- package/dist/{chunk-35RTYQX5.mjs → chunk-UZDWSDC7.mjs} +14 -13
- package/dist/{chunk-MZMVYPGX.js → chunk-XCLJNP6Q.js} +3 -3
- package/dist/{chunk-X7OMWG6Z.js → chunk-XZ5I262G.js} +12 -12
- 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 +2 -2
|
@@ -331,7 +331,7 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
331
331
|
positive: PositiveColorSchema,
|
|
332
332
|
negative: NegativeColorSchema
|
|
333
333
|
});
|
|
334
|
-
var RegistryUrlConfigSchema = z.
|
|
334
|
+
var RegistryUrlConfigSchema = z.url().optional().describe("A remote registry URL used to publish distributable packages");
|
|
335
335
|
var RegistryConfigSchema = z.object({
|
|
336
336
|
github: RegistryUrlConfigSchema,
|
|
337
337
|
npm: RegistryUrlConfigSchema,
|
|
@@ -358,7 +358,7 @@ var WorkspaceBotConfigSchema = z.object({
|
|
|
358
358
|
name: z.string().trim().default("stormie-bot").describe(
|
|
359
359
|
"The workspace bot user's name (this is the bot that will be used to perform various tasks)"
|
|
360
360
|
),
|
|
361
|
-
email: z.
|
|
361
|
+
email: z.email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
|
|
362
362
|
}).describe(
|
|
363
363
|
"The workspace's bot user's config used to automated various operations tasks"
|
|
364
364
|
);
|
|
@@ -401,19 +401,20 @@ var WorkspaceDirectoryConfigSchema = z.object({
|
|
|
401
401
|
);
|
|
402
402
|
var errorConfigSchema = z.object({
|
|
403
403
|
codesFile: z.string().trim().default(STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
|
|
404
|
-
url: z.
|
|
404
|
+
url: z.url().optional().describe(
|
|
405
405
|
"A URL to a page that looks up the workspace's error messages given a specific error code"
|
|
406
406
|
)
|
|
407
407
|
}).describe("The workspace's error config used during the error process");
|
|
408
408
|
var organizationConfigSchema = z.object({
|
|
409
409
|
name: z.string().trim().describe("The name of the organization"),
|
|
410
410
|
description: z.string().trim().optional().describe("A description of the organization"),
|
|
411
|
-
logo: z.
|
|
412
|
-
icon: z.
|
|
413
|
-
url: z.
|
|
411
|
+
logo: z.url().optional().describe("A URL to the organization's logo image"),
|
|
412
|
+
icon: z.url().optional().describe("A URL to the organization's icon image"),
|
|
413
|
+
url: z.url().optional().describe(
|
|
414
414
|
"A URL to a page that provides more information about the organization"
|
|
415
415
|
)
|
|
416
416
|
}).describe("The workspace's organization details");
|
|
417
|
+
var MODE_OPTIONS = ["development", "staging", "production"];
|
|
417
418
|
var stormWorkspaceConfigSchema = z.object({
|
|
418
419
|
$schema: z.string().trim().default(
|
|
419
420
|
"https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
|
|
@@ -430,12 +431,12 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
430
431
|
),
|
|
431
432
|
repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
432
433
|
license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
433
|
-
homepage: z.
|
|
434
|
-
docs: z.
|
|
435
|
-
portal: z.
|
|
436
|
-
licensing: z.
|
|
437
|
-
contact: z.
|
|
438
|
-
support: z.
|
|
434
|
+
homepage: z.url().optional().describe("The homepage of the workspace"),
|
|
435
|
+
docs: z.url().optional().describe("The documentation site for the workspace"),
|
|
436
|
+
portal: z.url().optional().describe("The development portal site for the workspace"),
|
|
437
|
+
licensing: z.url().optional().describe("The licensing site for the workspace"),
|
|
438
|
+
contact: z.url().optional().describe("The contact site for the workspace"),
|
|
439
|
+
support: z.url().optional().describe(
|
|
439
440
|
"The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
|
|
440
441
|
),
|
|
441
442
|
branch: z.string().trim().default("main").describe("The branch of the workspace"),
|
|
@@ -445,7 +446,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
445
446
|
release: WorkspaceReleaseConfigSchema,
|
|
446
447
|
socials: WorkspaceSocialsConfigSchema,
|
|
447
448
|
error: errorConfigSchema,
|
|
448
|
-
mode: z.enum(
|
|
449
|
+
mode: z.enum(MODE_OPTIONS).prefault("production").describe("The current runtime environment mode for the package"),
|
|
449
450
|
workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
|
|
450
451
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
451
452
|
directories: WorkspaceDirectoryConfigSchema,
|
|
@@ -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(); } }
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkMWGGF4PHjs = require('./chunk-MWGGF4PH.js');
|
|
5
5
|
|
|
6
6
|
// src/utils/r2-bucket-helpers.ts
|
|
7
7
|
var _crypto = require('crypto');
|
|
8
8
|
var r2UploadFile = async (client, bucketName, projectPath, fileName, version, fileContent, contentType = "text/plain", isDryRun = false) => {
|
|
9
9
|
const checksum = _crypto.createHash.call(void 0, "sha256").update(fileContent).digest("base64");
|
|
10
10
|
const fileKey = `${projectPath}/${fileName.startsWith("/") ? fileName.substring(1) : fileName}`;
|
|
11
|
-
|
|
11
|
+
_chunkMWGGF4PHjs.writeDebug.call(void 0, `Uploading file: ${fileKey}`);
|
|
12
12
|
if (!isDryRun) {
|
|
13
13
|
await client.putObject({
|
|
14
14
|
Bucket: bucketName,
|
|
@@ -21,7 +21,7 @@ var r2UploadFile = async (client, bucketName, projectPath, fileName, version, fi
|
|
|
21
21
|
}
|
|
22
22
|
});
|
|
23
23
|
} else {
|
|
24
|
-
|
|
24
|
+
_chunkMWGGF4PHjs.writeWarning.call(void 0, "[Dry run]: skipping upload to the Cyclone Registry.");
|
|
25
25
|
}
|
|
26
26
|
};
|
|
27
27
|
var getInternalDependencies = (projectName, graph) => {
|
|
@@ -1,9 +1,9 @@
|
|
|
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 _chunkKSNXRBMOjs = require('./chunk-KSNXRBMO.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkI5RWXPEFjs = require('./chunk-I5RWXPEF.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -12,7 +12,7 @@ var _chunkOVVMIP6Mjs = require('./chunk-OVVMIP6M.js');
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
var
|
|
15
|
+
var _chunkMWGGF4PHjs = require('./chunk-MWGGF4PH.js');
|
|
16
16
|
|
|
17
17
|
// src/generators/worker/generator.ts
|
|
18
18
|
|
|
@@ -45,20 +45,20 @@ var vitestScript = `"test": "vitest run"`;
|
|
|
45
45
|
|
|
46
46
|
// src/generators/worker/generator.ts
|
|
47
47
|
async function applicationGenerator(tree, schema) {
|
|
48
|
-
const stopwatch =
|
|
48
|
+
const stopwatch = _chunkMWGGF4PHjs.getStopwatch.call(void 0, "Storm Worker generator");
|
|
49
49
|
let config;
|
|
50
50
|
try {
|
|
51
|
-
|
|
51
|
+
_chunkMWGGF4PHjs.writeInfo.call(void 0, `\u26A1 Running the Storm Worker generator...
|
|
52
52
|
|
|
53
53
|
`, config);
|
|
54
|
-
const workspaceRoot =
|
|
55
|
-
|
|
54
|
+
const workspaceRoot = _chunkMWGGF4PHjs.findWorkspaceRoot.call(void 0, );
|
|
55
|
+
_chunkMWGGF4PHjs.writeDebug.call(void 0,
|
|
56
56
|
`Loading the Storm Config from environment variables and storm.json file...
|
|
57
57
|
- workspaceRoot: ${workspaceRoot}`,
|
|
58
58
|
config
|
|
59
59
|
);
|
|
60
|
-
config = await
|
|
61
|
-
|
|
60
|
+
config = await _chunkI5RWXPEFjs.getConfig.call(void 0, workspaceRoot);
|
|
61
|
+
_chunkMWGGF4PHjs.writeTrace.call(void 0,
|
|
62
62
|
`Loaded Storm config into env:
|
|
63
63
|
${Object.keys(process.env).map((key) => ` - ${key}=${JSON.stringify(process.env[key])}`).join("\n")}`,
|
|
64
64
|
config
|
|
@@ -66,7 +66,7 @@ ${Object.keys(process.env).map((key) => ` - ${key}=${JSON.stringify(process.env[
|
|
|
66
66
|
const options = await normalizeOptions(tree, schema, config);
|
|
67
67
|
const tasks = [];
|
|
68
68
|
tasks.push(
|
|
69
|
-
await
|
|
69
|
+
await _chunkKSNXRBMOjs.generator_default.call(void 0, tree, {
|
|
70
70
|
...options,
|
|
71
71
|
skipFormat: true
|
|
72
72
|
})
|
|
@@ -134,11 +134,11 @@ ${Object.keys(process.env).map((key) => ` - ${key}=${JSON.stringify(process.env[
|
|
|
134
134
|
return _devkit.runTasksInSerial.call(void 0, ...tasks);
|
|
135
135
|
} catch (error) {
|
|
136
136
|
return () => {
|
|
137
|
-
|
|
137
|
+
_chunkMWGGF4PHjs.writeFatal.call(void 0,
|
|
138
138
|
"A fatal error occurred while running the generator - the process was forced to terminate",
|
|
139
139
|
config
|
|
140
140
|
);
|
|
141
|
-
|
|
141
|
+
_chunkMWGGF4PHjs.writeError.call(void 0,
|
|
142
142
|
`An exception was thrown in the generator's process
|
|
143
143
|
- Details: ${error.message}
|
|
144
144
|
- Stacktrace: ${error.stack}`,
|
package/dist/executors.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";require('./chunk-XO66D74Z.js');
|
|
2
2
|
require('./chunk-IRORGRVZ.js');
|
|
3
|
-
require('./chunk-
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-
|
|
3
|
+
require('./chunk-OB7OI2RQ.js');
|
|
4
|
+
require('./chunk-64762F45.js');
|
|
5
|
+
require('./chunk-XCLJNP6Q.js');
|
|
6
6
|
require('./chunk-NU34IEWN.js');
|
|
7
|
-
require('./chunk-
|
|
8
|
-
require('./chunk-
|
|
7
|
+
require('./chunk-I5RWXPEF.js');
|
|
8
|
+
require('./chunk-MWGGF4PH.js');
|
|
9
9
|
require('./chunk-MCKGQKYU.js');
|
package/dist/executors.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import "./chunk-YSCEY447.mjs";
|
|
2
2
|
import "./chunk-YDKLGL5J.mjs";
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
3
|
+
import "./chunk-LUXWUZQ3.mjs";
|
|
4
|
+
import "./chunk-5L56SCZL.mjs";
|
|
5
|
+
import "./chunk-SEDPOYSM.mjs";
|
|
6
6
|
import "./chunk-PH3DHY4Q.mjs";
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-CILB5HXX.mjs";
|
|
8
|
+
import "./chunk-UZDWSDC7.mjs";
|
|
9
9
|
import "./chunk-DADPPALG.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkXZ5I262Gjs = require('./chunk-XZ5I262G.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
10
|
-
require('./chunk-
|
|
11
|
-
require('./chunk-
|
|
9
|
+
var _chunkKSNXRBMOjs = require('./chunk-KSNXRBMO.js');
|
|
10
|
+
require('./chunk-I5RWXPEF.js');
|
|
11
|
+
require('./chunk-MWGGF4PH.js');
|
|
12
12
|
require('./chunk-MCKGQKYU.js');
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
exports.applicationGenerator =
|
|
18
|
+
exports.applicationGenerator = _chunkXZ5I262Gjs.applicationGenerator; exports.applicationSchematic = _chunkXZ5I262Gjs.applicationSchematic; exports.initGenerator = _chunkKSNXRBMOjs.initGenerator; exports.initSchematic = _chunkKSNXRBMOjs.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-GD345FYL.mjs";
|
|
6
6
|
import {
|
|
7
7
|
initGenerator,
|
|
8
8
|
initSchematic
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-FZACKKLL.mjs";
|
|
10
|
+
import "./chunk-CILB5HXX.mjs";
|
|
11
|
+
import "./chunk-UZDWSDC7.mjs";
|
|
12
12
|
import "./chunk-DADPPALG.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 _chunkXZ5I262Gjs = require('./chunk-XZ5I262G.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkKSNXRBMOjs = require('./chunk-KSNXRBMO.js');
|
|
11
11
|
require('./chunk-CVGPWUNP.js');
|
|
12
12
|
require('./chunk-IRORGRVZ.js');
|
|
13
|
-
require('./chunk-
|
|
14
|
-
require('./chunk-
|
|
13
|
+
require('./chunk-OB7OI2RQ.js');
|
|
14
|
+
require('./chunk-64762F45.js');
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunkXCLJNP6Qjs = require('./chunk-XCLJNP6Q.js');
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
var _chunkNU34IEWNjs = require('./chunk-NU34IEWN.js');
|
|
23
|
-
require('./chunk-
|
|
24
|
-
require('./chunk-
|
|
23
|
+
require('./chunk-I5RWXPEF.js');
|
|
24
|
+
require('./chunk-MWGGF4PH.js');
|
|
25
25
|
require('./chunk-MCKGQKYU.js');
|
|
26
26
|
|
|
27
27
|
// src/plugins/index.ts
|
|
@@ -162,4 +162,4 @@ function createPackageJson(projectJsonPath, workspaceRoot) {
|
|
|
162
162
|
|
|
163
163
|
|
|
164
164
|
|
|
165
|
-
exports.applicationGenerator =
|
|
165
|
+
exports.applicationGenerator = _chunkXZ5I262Gjs.applicationGenerator; exports.applicationSchematic = _chunkXZ5I262Gjs.applicationSchematic; exports.createNodesV2 = createNodesV2; exports.getInternalDependencies = _chunkXCLJNP6Qjs.getInternalDependencies; exports.initGenerator = _chunkKSNXRBMOjs.initGenerator; exports.initSchematic = _chunkKSNXRBMOjs.initSchematic; exports.name = name; exports.r2UploadFile = _chunkXCLJNP6Qjs.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-GD345FYL.mjs";
|
|
7
7
|
import {
|
|
8
8
|
initGenerator,
|
|
9
9
|
initSchematic
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-FZACKKLL.mjs";
|
|
11
11
|
import "./chunk-7Z5PILRU.mjs";
|
|
12
12
|
import "./chunk-YDKLGL5J.mjs";
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-LUXWUZQ3.mjs";
|
|
14
|
+
import "./chunk-5L56SCZL.mjs";
|
|
15
15
|
import {
|
|
16
16
|
getInternalDependencies,
|
|
17
17
|
r2UploadFile
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-SEDPOYSM.mjs";
|
|
19
19
|
import {
|
|
20
20
|
ProjectTagConstants,
|
|
21
21
|
addProjectTag
|
|
22
22
|
} from "./chunk-PH3DHY4Q.mjs";
|
|
23
|
-
import "./chunk-
|
|
24
|
-
import "./chunk-
|
|
23
|
+
import "./chunk-CILB5HXX.mjs";
|
|
24
|
+
import "./chunk-UZDWSDC7.mjs";
|
|
25
25
|
import "./chunk-DADPPALG.mjs";
|
|
26
26
|
|
|
27
27
|
// src/plugins/index.ts
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
var _chunkIRORGRVZjs = require('../../../chunk-IRORGRVZ.js');
|
|
4
|
-
require('../../../chunk-
|
|
4
|
+
require('../../../chunk-OB7OI2RQ.js');
|
|
5
5
|
require('../../../chunk-NU34IEWN.js');
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
6
|
+
require('../../../chunk-I5RWXPEF.js');
|
|
7
|
+
require('../../../chunk-MWGGF4PH.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-YDKLGL5J.mjs";
|
|
4
|
-
import "../../../chunk-
|
|
4
|
+
import "../../../chunk-LUXWUZQ3.mjs";
|
|
5
5
|
import "../../../chunk-PH3DHY4Q.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
6
|
+
import "../../../chunk-CILB5HXX.mjs";
|
|
7
|
+
import "../../../chunk-UZDWSDC7.mjs";
|
|
8
8
|
import "../../../chunk-DADPPALG.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 _chunk64762F45js = require('../../../chunk-64762F45.js');
|
|
4
|
+
require('../../../chunk-XCLJNP6Q.js');
|
|
5
5
|
require('../../../chunk-NU34IEWN.js');
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
6
|
+
require('../../../chunk-I5RWXPEF.js');
|
|
7
|
+
require('../../../chunk-MWGGF4PH.js');
|
|
8
8
|
require('../../../chunk-MCKGQKYU.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunk64762F45js.runExecutor;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runExecutor
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-5L56SCZL.mjs";
|
|
4
|
+
import "../../../chunk-SEDPOYSM.mjs";
|
|
5
5
|
import "../../../chunk-PH3DHY4Q.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
6
|
+
import "../../../chunk-CILB5HXX.mjs";
|
|
7
|
+
import "../../../chunk-UZDWSDC7.mjs";
|
|
8
8
|
import "../../../chunk-DADPPALG.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 _chunkOB7OI2RQjs = require('../../../chunk-OB7OI2RQ.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunkNU34IEWNjs = require('../../../chunk-NU34IEWN.js');
|
|
7
|
-
require('../../../chunk-
|
|
8
|
-
require('../../../chunk-
|
|
7
|
+
require('../../../chunk-I5RWXPEF.js');
|
|
8
|
+
require('../../../chunk-MWGGF4PH.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
var _chunkMCKGQKYUjs = require('../../../chunk-MCKGQKYU.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 = _chunkOB7OI2RQjs.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-LUXWUZQ3.mjs";
|
|
4
4
|
import {
|
|
5
5
|
createCliOptions
|
|
6
6
|
} from "../../../chunk-PH3DHY4Q.mjs";
|
|
7
|
-
import "../../../chunk-
|
|
8
|
-
import "../../../chunk-
|
|
7
|
+
import "../../../chunk-CILB5HXX.mjs";
|
|
8
|
+
import "../../../chunk-UZDWSDC7.mjs";
|
|
9
9
|
import {
|
|
10
10
|
__require
|
|
11
11
|
} from "../../../chunk-DADPPALG.mjs";
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkKSNXRBMOjs = require('../../../chunk-KSNXRBMO.js');
|
|
6
6
|
require('../../../chunk-MCKGQKYU.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunkKSNXRBMOjs.generator_default; exports.initGenerator = _chunkKSNXRBMOjs.initGenerator; exports.initSchematic = _chunkKSNXRBMOjs.initSchematic;
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
8
|
-
require('../../../chunk-
|
|
5
|
+
var _chunkXZ5I262Gjs = require('../../../chunk-XZ5I262G.js');
|
|
6
|
+
require('../../../chunk-KSNXRBMO.js');
|
|
7
|
+
require('../../../chunk-I5RWXPEF.js');
|
|
8
|
+
require('../../../chunk-MWGGF4PH.js');
|
|
9
9
|
require('../../../chunk-MCKGQKYU.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.applicationGenerator =
|
|
14
|
+
exports.applicationGenerator = _chunkXZ5I262Gjs.applicationGenerator; exports.applicationSchematic = _chunkXZ5I262Gjs.applicationSchematic; exports.default = _chunkXZ5I262Gjs.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-GD345FYL.mjs";
|
|
6
|
+
import "../../../chunk-FZACKKLL.mjs";
|
|
7
|
+
import "../../../chunk-CILB5HXX.mjs";
|
|
8
|
+
import "../../../chunk-UZDWSDC7.mjs";
|
|
9
9
|
import "../../../chunk-DADPPALG.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 _chunkXCLJNP6Qjs = require('../../chunk-XCLJNP6Q.js');
|
|
6
|
+
require('../../chunk-MWGGF4PH.js');
|
|
7
7
|
require('../../chunk-MCKGQKYU.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.getInternalDependencies =
|
|
11
|
+
exports.getInternalDependencies = _chunkXCLJNP6Qjs.getInternalDependencies; exports.r2UploadFile = _chunkXCLJNP6Qjs.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-SEDPOYSM.mjs";
|
|
6
|
+
import "../../chunk-UZDWSDC7.mjs";
|
|
7
7
|
import "../../chunk-DADPPALG.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 _chunkXCLJNP6Qjs = require('../../chunk-XCLJNP6Q.js');
|
|
5
|
+
require('../../chunk-MWGGF4PH.js');
|
|
6
6
|
require('../../chunk-MCKGQKYU.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.getInternalDependencies =
|
|
10
|
+
exports.getInternalDependencies = _chunkXCLJNP6Qjs.getInternalDependencies; exports.r2UploadFile = _chunkXCLJNP6Qjs.r2UploadFile;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getInternalDependencies,
|
|
3
3
|
r2UploadFile
|
|
4
|
-
} from "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
4
|
+
} from "../../chunk-SEDPOYSM.mjs";
|
|
5
|
+
import "../../chunk-UZDWSDC7.mjs";
|
|
6
6
|
import "../../chunk-DADPPALG.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.63.
|
|
3
|
+
"version": "0.63.43",
|
|
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",
|
|
@@ -146,5 +146,5 @@
|
|
|
146
146
|
"publishConfig": { "access": "public" },
|
|
147
147
|
"executors": "./executors.json",
|
|
148
148
|
"generators": "./generators.json",
|
|
149
|
-
"gitHead": "
|
|
149
|
+
"gitHead": "ceaae9b6ba69f4bca0927a4d2e3084ee5fc4e71a"
|
|
150
150
|
}
|