@storm-software/cloudflare-tools 0.63.44 → 0.63.46
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 +2 -1
- package/dist/{chunk-IPZP75GA.mjs → chunk-4BNYLCUN.mjs} +1 -1
- package/dist/{chunk-7T6FCEJ2.js → chunk-77P4T26U.js} +1 -1
- package/dist/{chunk-YWK6SCFJ.mjs → chunk-AE2T23TV.mjs} +1 -1
- package/dist/{chunk-64KCJUHF.js → chunk-CBV5OIDF.js} +16 -16
- package/dist/{chunk-47UJA2KT.mjs → chunk-CIML2QZR.mjs} +1 -1
- package/dist/{chunk-3ZJXUWIC.js → chunk-GQNUZ2XY.js} +44 -44
- package/dist/{chunk-34J43ATV.mjs → chunk-IFBO5YTL.mjs} +2 -2
- package/dist/{chunk-IY32YNEH.js → chunk-MKPMUQLP.js} +118 -118
- package/dist/{chunk-XCXVA72W.js → chunk-NHG6EZHS.js} +3 -3
- package/dist/{chunk-ORPNTF5S.mjs → chunk-O2S3TWLB.mjs} +3 -3
- package/dist/{chunk-FTBPZGRQ.js → chunk-Q5D3SQSD.js} +1 -2
- package/dist/{chunk-77UQJX7G.mjs → chunk-SNPJFGSK.mjs} +3 -3
- package/dist/{chunk-ACMLK4HA.js → chunk-TSNHIDMA.js} +12 -12
- package/dist/{chunk-ABNYQH3I.mjs → chunk-YBEYUZYA.mjs} +1 -2
- 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
|
@@ -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 _chunkQ5D3SQSDjs = require('./chunk-Q5D3SQSD.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
|
+
_chunkQ5D3SQSDjs.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
|
+
_chunkQ5D3SQSDjs.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
|
import {
|
|
2
2
|
generator_default
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-CIML2QZR.mjs";
|
|
4
4
|
import {
|
|
5
5
|
getConfig
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-4BNYLCUN.mjs";
|
|
7
7
|
import {
|
|
8
8
|
findWorkspaceRoot,
|
|
9
9
|
getStopwatch,
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
writeFatal,
|
|
13
13
|
writeInfo,
|
|
14
14
|
writeTrace
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-YBEYUZYA.mjs";
|
|
16
16
|
import {
|
|
17
17
|
__dirname
|
|
18
18
|
} from "./chunk-DADPPALG.mjs";
|
|
@@ -414,7 +414,6 @@ var organizationConfigSchema = z.object({
|
|
|
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"];
|
|
418
417
|
var stormWorkspaceConfigSchema = z.object({
|
|
419
418
|
$schema: z.string().trim().default(
|
|
420
419
|
"https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
|
|
@@ -446,7 +445,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
446
445
|
release: WorkspaceReleaseConfigSchema,
|
|
447
446
|
socials: WorkspaceSocialsConfigSchema,
|
|
448
447
|
error: errorConfigSchema,
|
|
449
|
-
mode: z.
|
|
448
|
+
mode: z.string().trim().default("production").describe("The current runtime environment mode for the package"),
|
|
450
449
|
workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
|
|
451
450
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
452
451
|
directories: WorkspaceDirectoryConfigSchema,
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getInternalDependencies,
|
|
3
3
|
r2UploadFile
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-AE2T23TV.mjs";
|
|
5
5
|
import {
|
|
6
6
|
createCliOptions,
|
|
7
7
|
getPackageInfo
|
|
8
8
|
} from "./chunk-PH3DHY4Q.mjs";
|
|
9
9
|
import {
|
|
10
10
|
getConfig
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-4BNYLCUN.mjs";
|
|
12
12
|
import {
|
|
13
13
|
findWorkspaceRoot,
|
|
14
14
|
writeDebug,
|
|
15
15
|
writeInfo,
|
|
16
16
|
writeSuccess,
|
|
17
17
|
writeWarning
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-YBEYUZYA.mjs";
|
|
19
19
|
|
|
20
20
|
// src/executors/r2-upload-publish/executor.ts
|
|
21
21
|
import { S3 } from "@aws-sdk/client-s3";
|
|
@@ -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 _chunk77P4T26Ujs = require('./chunk-77P4T26U.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkGQNUZ2XYjs = require('./chunk-GQNUZ2XY.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -12,7 +12,7 @@ var _chunk3ZJXUWICjs = require('./chunk-3ZJXUWIC.js');
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
var
|
|
15
|
+
var _chunkQ5D3SQSDjs = require('./chunk-Q5D3SQSD.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 = _chunkQ5D3SQSDjs.getStopwatch.call(void 0, "Storm Worker generator");
|
|
49
49
|
let config;
|
|
50
50
|
try {
|
|
51
|
-
|
|
51
|
+
_chunkQ5D3SQSDjs.writeInfo.call(void 0, `\u26A1 Running the Storm Worker generator...
|
|
52
52
|
|
|
53
53
|
`, config);
|
|
54
|
-
const workspaceRoot =
|
|
55
|
-
|
|
54
|
+
const workspaceRoot = _chunkQ5D3SQSDjs.findWorkspaceRoot.call(void 0, );
|
|
55
|
+
_chunkQ5D3SQSDjs.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 _chunkGQNUZ2XYjs.getConfig.call(void 0, workspaceRoot);
|
|
61
|
+
_chunkQ5D3SQSDjs.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 _chunk77P4T26Ujs.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
|
+
_chunkQ5D3SQSDjs.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
|
+
_chunkQ5D3SQSDjs.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}`,
|
|
@@ -414,7 +414,6 @@ var organizationConfigSchema = z.object({
|
|
|
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"];
|
|
418
417
|
var stormWorkspaceConfigSchema = z.object({
|
|
419
418
|
$schema: z.string().trim().default(
|
|
420
419
|
"https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
|
|
@@ -446,7 +445,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
446
445
|
release: WorkspaceReleaseConfigSchema,
|
|
447
446
|
socials: WorkspaceSocialsConfigSchema,
|
|
448
447
|
error: errorConfigSchema,
|
|
449
|
-
mode: z.
|
|
448
|
+
mode: z.string().trim().default("production").describe("The current runtime environment mode for the package"),
|
|
450
449
|
workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
|
|
451
450
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
452
451
|
directories: WorkspaceDirectoryConfigSchema,
|
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-MKPMUQLP.js');
|
|
4
|
+
require('./chunk-CBV5OIDF.js');
|
|
5
|
+
require('./chunk-NHG6EZHS.js');
|
|
6
6
|
require('./chunk-NU34IEWN.js');
|
|
7
|
-
require('./chunk-
|
|
8
|
-
require('./chunk-
|
|
7
|
+
require('./chunk-GQNUZ2XY.js');
|
|
8
|
+
require('./chunk-Q5D3SQSD.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-IFBO5YTL.mjs";
|
|
4
|
+
import "./chunk-SNPJFGSK.mjs";
|
|
5
|
+
import "./chunk-AE2T23TV.mjs";
|
|
6
6
|
import "./chunk-PH3DHY4Q.mjs";
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-4BNYLCUN.mjs";
|
|
8
|
+
import "./chunk-YBEYUZYA.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 _chunkTSNHIDMAjs = require('./chunk-TSNHIDMA.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
10
|
-
require('./chunk-
|
|
11
|
-
require('./chunk-
|
|
9
|
+
var _chunk77P4T26Ujs = require('./chunk-77P4T26U.js');
|
|
10
|
+
require('./chunk-GQNUZ2XY.js');
|
|
11
|
+
require('./chunk-Q5D3SQSD.js');
|
|
12
12
|
require('./chunk-MCKGQKYU.js');
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
exports.applicationGenerator =
|
|
18
|
+
exports.applicationGenerator = _chunkTSNHIDMAjs.applicationGenerator; exports.applicationSchematic = _chunkTSNHIDMAjs.applicationSchematic; exports.initGenerator = _chunk77P4T26Ujs.initGenerator; exports.initSchematic = _chunk77P4T26Ujs.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-O2S3TWLB.mjs";
|
|
6
6
|
import {
|
|
7
7
|
initGenerator,
|
|
8
8
|
initSchematic
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-CIML2QZR.mjs";
|
|
10
|
+
import "./chunk-4BNYLCUN.mjs";
|
|
11
|
+
import "./chunk-YBEYUZYA.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 _chunkTSNHIDMAjs = require('./chunk-TSNHIDMA.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunk77P4T26Ujs = require('./chunk-77P4T26U.js');
|
|
11
11
|
require('./chunk-CVGPWUNP.js');
|
|
12
12
|
require('./chunk-IRORGRVZ.js');
|
|
13
|
-
require('./chunk-
|
|
14
|
-
require('./chunk-
|
|
13
|
+
require('./chunk-MKPMUQLP.js');
|
|
14
|
+
require('./chunk-CBV5OIDF.js');
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunkNHG6EZHSjs = require('./chunk-NHG6EZHS.js');
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
var _chunkNU34IEWNjs = require('./chunk-NU34IEWN.js');
|
|
23
|
-
require('./chunk-
|
|
24
|
-
require('./chunk-
|
|
23
|
+
require('./chunk-GQNUZ2XY.js');
|
|
24
|
+
require('./chunk-Q5D3SQSD.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 = _chunkTSNHIDMAjs.applicationGenerator; exports.applicationSchematic = _chunkTSNHIDMAjs.applicationSchematic; exports.createNodesV2 = createNodesV2; exports.getInternalDependencies = _chunkNHG6EZHSjs.getInternalDependencies; exports.initGenerator = _chunk77P4T26Ujs.initGenerator; exports.initSchematic = _chunk77P4T26Ujs.initSchematic; exports.name = name; exports.r2UploadFile = _chunkNHG6EZHSjs.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-O2S3TWLB.mjs";
|
|
7
7
|
import {
|
|
8
8
|
initGenerator,
|
|
9
9
|
initSchematic
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-CIML2QZR.mjs";
|
|
11
11
|
import "./chunk-7Z5PILRU.mjs";
|
|
12
12
|
import "./chunk-YDKLGL5J.mjs";
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-IFBO5YTL.mjs";
|
|
14
|
+
import "./chunk-SNPJFGSK.mjs";
|
|
15
15
|
import {
|
|
16
16
|
getInternalDependencies,
|
|
17
17
|
r2UploadFile
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-AE2T23TV.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-4BNYLCUN.mjs";
|
|
24
|
+
import "./chunk-YBEYUZYA.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-MKPMUQLP.js');
|
|
5
5
|
require('../../../chunk-NU34IEWN.js');
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
6
|
+
require('../../../chunk-GQNUZ2XY.js');
|
|
7
|
+
require('../../../chunk-Q5D3SQSD.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-IFBO5YTL.mjs";
|
|
5
5
|
import "../../../chunk-PH3DHY4Q.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
6
|
+
import "../../../chunk-4BNYLCUN.mjs";
|
|
7
|
+
import "../../../chunk-YBEYUZYA.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 _chunkCBV5OIDFjs = require('../../../chunk-CBV5OIDF.js');
|
|
4
|
+
require('../../../chunk-NHG6EZHS.js');
|
|
5
5
|
require('../../../chunk-NU34IEWN.js');
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
6
|
+
require('../../../chunk-GQNUZ2XY.js');
|
|
7
|
+
require('../../../chunk-Q5D3SQSD.js');
|
|
8
8
|
require('../../../chunk-MCKGQKYU.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunkCBV5OIDFjs.runExecutor;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runExecutor
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-SNPJFGSK.mjs";
|
|
4
|
+
import "../../../chunk-AE2T23TV.mjs";
|
|
5
5
|
import "../../../chunk-PH3DHY4Q.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
6
|
+
import "../../../chunk-4BNYLCUN.mjs";
|
|
7
|
+
import "../../../chunk-YBEYUZYA.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 _chunkMKPMUQLPjs = require('../../../chunk-MKPMUQLP.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunkNU34IEWNjs = require('../../../chunk-NU34IEWN.js');
|
|
7
|
-
require('../../../chunk-
|
|
8
|
-
require('../../../chunk-
|
|
7
|
+
require('../../../chunk-GQNUZ2XY.js');
|
|
8
|
+
require('../../../chunk-Q5D3SQSD.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 = _chunkMKPMUQLPjs.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-IFBO5YTL.mjs";
|
|
4
4
|
import {
|
|
5
5
|
createCliOptions
|
|
6
6
|
} from "../../../chunk-PH3DHY4Q.mjs";
|
|
7
|
-
import "../../../chunk-
|
|
8
|
-
import "../../../chunk-
|
|
7
|
+
import "../../../chunk-4BNYLCUN.mjs";
|
|
8
|
+
import "../../../chunk-YBEYUZYA.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 _chunk77P4T26Ujs = require('../../../chunk-77P4T26U.js');
|
|
6
6
|
require('../../../chunk-MCKGQKYU.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunk77P4T26Ujs.generator_default; exports.initGenerator = _chunk77P4T26Ujs.initGenerator; exports.initSchematic = _chunk77P4T26Ujs.initSchematic;
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
8
|
-
require('../../../chunk-
|
|
5
|
+
var _chunkTSNHIDMAjs = require('../../../chunk-TSNHIDMA.js');
|
|
6
|
+
require('../../../chunk-77P4T26U.js');
|
|
7
|
+
require('../../../chunk-GQNUZ2XY.js');
|
|
8
|
+
require('../../../chunk-Q5D3SQSD.js');
|
|
9
9
|
require('../../../chunk-MCKGQKYU.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.applicationGenerator =
|
|
14
|
+
exports.applicationGenerator = _chunkTSNHIDMAjs.applicationGenerator; exports.applicationSchematic = _chunkTSNHIDMAjs.applicationSchematic; exports.default = _chunkTSNHIDMAjs.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-O2S3TWLB.mjs";
|
|
6
|
+
import "../../../chunk-CIML2QZR.mjs";
|
|
7
|
+
import "../../../chunk-4BNYLCUN.mjs";
|
|
8
|
+
import "../../../chunk-YBEYUZYA.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 _chunkNHG6EZHSjs = require('../../chunk-NHG6EZHS.js');
|
|
6
|
+
require('../../chunk-Q5D3SQSD.js');
|
|
7
7
|
require('../../chunk-MCKGQKYU.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.getInternalDependencies =
|
|
11
|
+
exports.getInternalDependencies = _chunkNHG6EZHSjs.getInternalDependencies; exports.r2UploadFile = _chunkNHG6EZHSjs.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-AE2T23TV.mjs";
|
|
6
|
+
import "../../chunk-YBEYUZYA.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 _chunkNHG6EZHSjs = require('../../chunk-NHG6EZHS.js');
|
|
5
|
+
require('../../chunk-Q5D3SQSD.js');
|
|
6
6
|
require('../../chunk-MCKGQKYU.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.getInternalDependencies =
|
|
10
|
+
exports.getInternalDependencies = _chunkNHG6EZHSjs.getInternalDependencies; exports.r2UploadFile = _chunkNHG6EZHSjs.r2UploadFile;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getInternalDependencies,
|
|
3
3
|
r2UploadFile
|
|
4
|
-
} from "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
4
|
+
} from "../../chunk-AE2T23TV.mjs";
|
|
5
|
+
import "../../chunk-YBEYUZYA.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.46",
|
|
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": "15cfb513f5ab6c76341888e008ba62b88bcd05af"
|
|
150
150
|
}
|