@storm-software/cloudflare-tools 0.63.45 → 0.63.47
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 +23 -0
- package/README.md +1 -1
- package/dist/{chunk-5ECQU3JG.mjs → chunk-4BNYLCUN.mjs} +1 -1
- package/dist/{chunk-XHGRTYFQ.js → chunk-6O453R7Z.js} +1 -1
- package/dist/{chunk-RUF355PP.mjs → chunk-AE2T23TV.mjs} +1 -1
- package/dist/{chunk-6RUWSODA.mjs → chunk-BBTTR6GE.mjs} +1 -1
- package/dist/{chunk-DMCXWUPE.js → chunk-BIONAS5W.js} +12 -12
- package/dist/{chunk-NS24FKMX.js → chunk-CBV5OIDF.js} +16 -16
- package/dist/{chunk-HYPAYIZF.mjs → chunk-FIVN4FUT.mjs} +3 -3
- package/dist/{chunk-CEQXRQUZ.js → chunk-GQNUZ2XY.js} +44 -44
- package/dist/{chunk-3XJOEG3U.mjs → chunk-IFBO5YTL.mjs} +2 -2
- package/dist/{chunk-22TVZUD6.js → chunk-MKPMUQLP.js} +118 -118
- package/dist/{chunk-Y67ZZVAE.js → chunk-NHG6EZHS.js} +3 -3
- package/dist/{chunk-QJKFFDTT.js → chunk-Q5D3SQSD.js} +1 -2
- package/dist/{chunk-JMCF36ML.mjs → chunk-SNPJFGSK.mjs} +3 -3
- package/dist/{chunk-VPISCGUV.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) => {
|
|
@@ -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";
|
|
@@ -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 _chunkBIONAS5Wjs = require('./chunk-BIONAS5W.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
10
|
-
require('./chunk-
|
|
11
|
-
require('./chunk-
|
|
9
|
+
var _chunk6O453R7Zjs = require('./chunk-6O453R7Z.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 = _chunkBIONAS5Wjs.applicationGenerator; exports.applicationSchematic = _chunkBIONAS5Wjs.applicationSchematic; exports.initGenerator = _chunk6O453R7Zjs.initGenerator; exports.initSchematic = _chunk6O453R7Zjs.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-FIVN4FUT.mjs";
|
|
6
6
|
import {
|
|
7
7
|
initGenerator,
|
|
8
8
|
initSchematic
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-BBTTR6GE.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 _chunkBIONAS5Wjs = require('./chunk-BIONAS5W.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunk6O453R7Zjs = require('./chunk-6O453R7Z.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 = _chunkBIONAS5Wjs.applicationGenerator; exports.applicationSchematic = _chunkBIONAS5Wjs.applicationSchematic; exports.createNodesV2 = createNodesV2; exports.getInternalDependencies = _chunkNHG6EZHSjs.getInternalDependencies; exports.initGenerator = _chunk6O453R7Zjs.initGenerator; exports.initSchematic = _chunk6O453R7Zjs.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-FIVN4FUT.mjs";
|
|
7
7
|
import {
|
|
8
8
|
initGenerator,
|
|
9
9
|
initSchematic
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-BBTTR6GE.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 _chunk6O453R7Zjs = require('../../../chunk-6O453R7Z.js');
|
|
6
6
|
require('../../../chunk-MCKGQKYU.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunk6O453R7Zjs.generator_default; exports.initGenerator = _chunk6O453R7Zjs.initGenerator; exports.initSchematic = _chunk6O453R7Zjs.initSchematic;
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
8
|
-
require('../../../chunk-
|
|
5
|
+
var _chunkBIONAS5Wjs = require('../../../chunk-BIONAS5W.js');
|
|
6
|
+
require('../../../chunk-6O453R7Z.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 = _chunkBIONAS5Wjs.applicationGenerator; exports.applicationSchematic = _chunkBIONAS5Wjs.applicationSchematic; exports.default = _chunkBIONAS5Wjs.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-FIVN4FUT.mjs";
|
|
6
|
+
import "../../../chunk-BBTTR6GE.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.47",
|
|
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": "0ffb491f3a2f70a81789ffde3dce3dd911bc12a6"
|
|
150
150
|
}
|