@storm-software/cloudflare-tools 0.55.43 → 0.55.45
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 +15 -0
- package/README.md +1 -1
- package/dist/{chunk-MESLYSHV.mjs → chunk-2P5TGL2R.mjs} +18 -10
- package/dist/{chunk-MCQ4YOON.js → chunk-4P4IIN6G.js} +16 -16
- package/dist/{chunk-E22S7JBO.mjs → chunk-BDADKXEW.mjs} +17 -13
- package/dist/{chunk-6D3NUIUL.js → chunk-DZPVDJXE.js} +186 -182
- package/dist/{chunk-PW324BYD.js → chunk-P7YORNEH.js} +1 -1
- package/dist/{chunk-LEXIFHU6.mjs → chunk-PHH7TIFK.mjs} +1 -1
- package/dist/{chunk-S3S7EN37.mjs → chunk-QGY5FTZR.mjs} +3 -3
- package/dist/{chunk-FK6PN2T3.js → chunk-QQQD2SIN.js} +11 -3
- package/dist/{chunk-HF5FM2V2.js → chunk-S5NUDAJR.js} +3 -3
- package/dist/{chunk-Q67NQSCF.mjs → chunk-WGEGIRE6.mjs} +1 -1
- package/dist/{chunk-M4FHQYTZ.mjs → chunk-YBYGEO5L.mjs} +11 -3
- package/dist/{chunk-H2ML72QF.js → chunk-Z5XL2UL5.js} +56 -48
- package/dist/{chunk-247N3JYF.js → chunk-ZGZLK5XZ.js} +12 -12
- package/dist/{chunk-5QU7G4BP.mjs → chunk-ZTEXBI4T.mjs} +3 -3
- 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.d.mts +41 -7
- package/dist/src/executors/serve/executor.d.ts +41 -7
- 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 = _chunkJ5SB6L2Ljs.__commonJS.call(void 0, {
|
|
|
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.45",
|
|
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",
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getInternalDependencies,
|
|
3
3
|
r2UploadFile
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-PHH7TIFK.mjs";
|
|
5
5
|
import {
|
|
6
6
|
createCliOptions,
|
|
7
7
|
getPackageInfo
|
|
8
8
|
} from "./chunk-YYEF6TFG.mjs";
|
|
9
9
|
import {
|
|
10
10
|
getConfig
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-2P5TGL2R.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-YBYGEO5L.mjs";
|
|
19
19
|
import {
|
|
20
20
|
__name
|
|
21
21
|
} from "./chunk-3HMZSKJD.mjs";
|
|
@@ -366,7 +366,11 @@ var WorkspaceDirectoryConfigSchema = _zod2.default.object({
|
|
|
366
366
|
log: _zod2.default.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
367
367
|
build: _zod2.default.string().trim().default("dist").describe("The directory used to store the workspace's distributable files after a build (relative to the workspace root)")
|
|
368
368
|
}).describe("Various directories used by the workspace to store data, cache, and configuration files");
|
|
369
|
-
var
|
|
369
|
+
var errorConfigSchema = _zod2.default.object({
|
|
370
|
+
codesFile: _zod2.default.string().trim().default(STORM_DEFAULT_RELEASE_BANNER).describe("The path to the workspace's error codes JSON file"),
|
|
371
|
+
url: _zod2.default.string().trim().url().optional().describe("A URL to a page that looks up the workspace's error messages given a specific error code")
|
|
372
|
+
}).describe("The workspace's error config used during the error process");
|
|
373
|
+
var stormWorkspaceConfigSchema = _zod2.default.object({
|
|
370
374
|
$schema: _zod2.default.string().trim().default("https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json").optional().nullish().describe("The URL to the JSON schema file that describes the Storm configuration file"),
|
|
371
375
|
extends: ExtendsSchema.optional(),
|
|
372
376
|
name: _zod2.default.string().trim().toLowerCase().optional().describe("The name of the service/package/scope using this configuration"),
|
|
@@ -384,6 +388,7 @@ var StormConfigSchema = _zod2.default.object({
|
|
|
384
388
|
bot: WorkspaceBotConfigSchema,
|
|
385
389
|
release: WorkspaceReleaseConfigSchema,
|
|
386
390
|
account: WorkspaceAccountConfigSchema,
|
|
391
|
+
error: errorConfigSchema,
|
|
387
392
|
mode: _zod2.default.enum([
|
|
388
393
|
"development",
|
|
389
394
|
"staging",
|
|
@@ -510,7 +515,10 @@ var getDefaultConfig = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, asyn
|
|
|
510
515
|
license,
|
|
511
516
|
homepage,
|
|
512
517
|
docs: `${homepage || STORM_DEFAULT_HOMEPAGE}/docs`,
|
|
513
|
-
licensing: `${homepage || STORM_DEFAULT_HOMEPAGE}/license
|
|
518
|
+
licensing: `${homepage || STORM_DEFAULT_HOMEPAGE}/license`,
|
|
519
|
+
error: {
|
|
520
|
+
url: `${homepage || STORM_DEFAULT_HOMEPAGE}/errors`
|
|
521
|
+
}
|
|
514
522
|
};
|
|
515
523
|
}, "getDefaultConfig");
|
|
516
524
|
|
|
@@ -755,4 +763,4 @@ var _isFunction = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, (value) =
|
|
|
755
763
|
|
|
756
764
|
|
|
757
765
|
|
|
758
|
-
exports.LogLevel = LogLevel; exports.STORM_DEFAULT_DOCS = STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSING = STORM_DEFAULT_LICENSING; exports.
|
|
766
|
+
exports.LogLevel = LogLevel; exports.STORM_DEFAULT_DOCS = STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSING = STORM_DEFAULT_LICENSING; exports.stormWorkspaceConfigSchema = stormWorkspaceConfigSchema; exports.COLOR_KEYS = COLOR_KEYS; exports.correctPaths = correctPaths; exports.joinPaths = joinPaths; exports.findWorkspaceRoot = findWorkspaceRoot; exports.getDefaultConfig = getDefaultConfig; exports.getLogLevel = getLogLevel; exports.getLogLevelLabel = getLogLevelLabel; exports.isVerbose = isVerbose; exports.writeFatal = writeFatal; exports.writeError = writeError; exports.writeWarning = writeWarning; exports.writeInfo = writeInfo; exports.writeSuccess = writeSuccess; exports.writeDebug = writeDebug; exports.writeTrace = writeTrace; exports.getStopwatch = getStopwatch; exports.formatLogMessage = formatLogMessage;
|
|
@@ -1,7 +1,7 @@
|
|
|
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 _chunkQQQD2SINjs = require('./chunk-QQQD2SIN.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
var _chunkJ5SB6L2Ljs = require('./chunk-J5SB6L2L.js');
|
|
@@ -11,7 +11,7 @@ var _crypto = require('crypto');
|
|
|
11
11
|
var r2UploadFile = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, async (client, bucketName, projectPath, fileName, version, fileContent, contentType = "text/plain", isDryRun = false) => {
|
|
12
12
|
const checksum = _crypto.createHash.call(void 0, "sha256").update(fileContent).digest("base64");
|
|
13
13
|
const fileKey = `${projectPath}/${fileName.startsWith("/") ? fileName.substring(1) : fileName}`;
|
|
14
|
-
|
|
14
|
+
_chunkQQQD2SINjs.writeDebug.call(void 0, `Uploading file: ${fileKey}`);
|
|
15
15
|
if (!isDryRun) {
|
|
16
16
|
await client.putObject({
|
|
17
17
|
Bucket: bucketName,
|
|
@@ -24,7 +24,7 @@ var r2UploadFile = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, async (c
|
|
|
24
24
|
}
|
|
25
25
|
});
|
|
26
26
|
} else {
|
|
27
|
-
|
|
27
|
+
_chunkQQQD2SINjs.writeWarning.call(void 0, "[Dry run]: skipping upload to the Cyclone Registry.");
|
|
28
28
|
}
|
|
29
29
|
}, "r2UploadFile");
|
|
30
30
|
var getInternalDependencies = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, (projectName, graph) => {
|
|
@@ -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.45",
|
|
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",
|
|
@@ -366,7 +366,11 @@ var WorkspaceDirectoryConfigSchema = z.object({
|
|
|
366
366
|
log: z.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
367
367
|
build: z.string().trim().default("dist").describe("The directory used to store the workspace's distributable files after a build (relative to the workspace root)")
|
|
368
368
|
}).describe("Various directories used by the workspace to store data, cache, and configuration files");
|
|
369
|
-
var
|
|
369
|
+
var errorConfigSchema = z.object({
|
|
370
|
+
codesFile: z.string().trim().default(STORM_DEFAULT_RELEASE_BANNER).describe("The path to the workspace's error codes JSON file"),
|
|
371
|
+
url: z.string().trim().url().optional().describe("A URL to a page that looks up the workspace's error messages given a specific error code")
|
|
372
|
+
}).describe("The workspace's error config used during the error process");
|
|
373
|
+
var stormWorkspaceConfigSchema = z.object({
|
|
370
374
|
$schema: z.string().trim().default("https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json").optional().nullish().describe("The URL to the JSON schema file that describes the Storm configuration file"),
|
|
371
375
|
extends: ExtendsSchema.optional(),
|
|
372
376
|
name: z.string().trim().toLowerCase().optional().describe("The name of the service/package/scope using this configuration"),
|
|
@@ -384,6 +388,7 @@ var StormConfigSchema = z.object({
|
|
|
384
388
|
bot: WorkspaceBotConfigSchema,
|
|
385
389
|
release: WorkspaceReleaseConfigSchema,
|
|
386
390
|
account: WorkspaceAccountConfigSchema,
|
|
391
|
+
error: errorConfigSchema,
|
|
387
392
|
mode: z.enum([
|
|
388
393
|
"development",
|
|
389
394
|
"staging",
|
|
@@ -510,7 +515,10 @@ var getDefaultConfig = /* @__PURE__ */ __name(async (root) => {
|
|
|
510
515
|
license,
|
|
511
516
|
homepage,
|
|
512
517
|
docs: `${homepage || STORM_DEFAULT_HOMEPAGE}/docs`,
|
|
513
|
-
licensing: `${homepage || STORM_DEFAULT_HOMEPAGE}/license
|
|
518
|
+
licensing: `${homepage || STORM_DEFAULT_HOMEPAGE}/license`,
|
|
519
|
+
error: {
|
|
520
|
+
url: `${homepage || STORM_DEFAULT_HOMEPAGE}/errors`
|
|
521
|
+
}
|
|
514
522
|
};
|
|
515
523
|
}, "getDefaultConfig");
|
|
516
524
|
|
|
@@ -737,7 +745,7 @@ export {
|
|
|
737
745
|
STORM_DEFAULT_DOCS,
|
|
738
746
|
STORM_DEFAULT_HOMEPAGE,
|
|
739
747
|
STORM_DEFAULT_LICENSING,
|
|
740
|
-
|
|
748
|
+
stormWorkspaceConfigSchema,
|
|
741
749
|
COLOR_KEYS,
|
|
742
750
|
correctPaths,
|
|
743
751
|
joinPaths,
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
17
|
+
var _chunkQQQD2SINjs = require('./chunk-QQQD2SIN.js');
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
var _chunkJ5SB6L2Ljs = require('./chunk-J5SB6L2L.js');
|
|
@@ -26,7 +26,7 @@ var _defu = require('defu'); var _defu2 = _interopRequireDefault(_defu);
|
|
|
26
26
|
var _c12 = require('c12');
|
|
27
27
|
|
|
28
28
|
var getConfigFileByName = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, async (fileName, filePath, options = {}) => {
|
|
29
|
-
const workspacePath = filePath ||
|
|
29
|
+
const workspacePath = filePath || _chunkQQQD2SINjs.findWorkspaceRoot.call(void 0, filePath);
|
|
30
30
|
const configs = await Promise.all([
|
|
31
31
|
_c12.loadConfig.call(void 0, {
|
|
32
32
|
cwd: workspacePath,
|
|
@@ -35,7 +35,7 @@ var getConfigFileByName = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, a
|
|
|
35
35
|
envName: _optionalChain([fileName, 'optionalAccess', _ => _.toUpperCase, 'call', _2 => _2()]),
|
|
36
36
|
jitiOptions: {
|
|
37
37
|
debug: false,
|
|
38
|
-
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false :
|
|
38
|
+
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false : _chunkQQQD2SINjs.joinPaths.call(void 0, process.env.STORM_CACHE_DIR || "node_modules/.cache/storm", "jiti")
|
|
39
39
|
},
|
|
40
40
|
...options
|
|
41
41
|
}),
|
|
@@ -46,7 +46,7 @@ var getConfigFileByName = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, a
|
|
|
46
46
|
envName: _optionalChain([fileName, 'optionalAccess', _3 => _3.toUpperCase, 'call', _4 => _4()]),
|
|
47
47
|
jitiOptions: {
|
|
48
48
|
debug: false,
|
|
49
|
-
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false :
|
|
49
|
+
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false : _chunkQQQD2SINjs.joinPaths.call(void 0, process.env.STORM_CACHE_DIR || "node_modules/.cache/storm", "jiti")
|
|
50
50
|
},
|
|
51
51
|
configFile: fileName,
|
|
52
52
|
...options
|
|
@@ -55,12 +55,12 @@ var getConfigFileByName = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, a
|
|
|
55
55
|
return _defu2.default.call(void 0, _nullishCoalesce(configs[0], () => ( {})), _nullishCoalesce(configs[1], () => ( {})));
|
|
56
56
|
}, "getConfigFileByName");
|
|
57
57
|
var getConfigFile = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, async (filePath, additionalFileNames = []) => {
|
|
58
|
-
const workspacePath = filePath ? filePath :
|
|
58
|
+
const workspacePath = filePath ? filePath : _chunkQQQD2SINjs.findWorkspaceRoot.call(void 0, filePath);
|
|
59
59
|
const result = await getConfigFileByName("storm-workspace", workspacePath);
|
|
60
60
|
let config = result.config;
|
|
61
61
|
const configFile = result.configFile;
|
|
62
62
|
if (config && configFile && Object.keys(config).length > 0 && !config.skipConfigLogging) {
|
|
63
|
-
|
|
63
|
+
_chunkQQQD2SINjs.writeTrace.call(void 0, `Found Storm configuration file "${configFile.includes(`${workspacePath}/`) ? configFile.replace(`${workspacePath}/`, "") : configFile}" at "${workspacePath}"`, {
|
|
64
64
|
logLevel: "all"
|
|
65
65
|
});
|
|
66
66
|
}
|
|
@@ -69,7 +69,7 @@ var getConfigFile = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, async (
|
|
|
69
69
|
for (const result2 of results) {
|
|
70
70
|
if (_optionalChain([result2, 'optionalAccess', _5 => _5.config]) && _optionalChain([result2, 'optionalAccess', _6 => _6.configFile]) && Object.keys(result2.config).length > 0) {
|
|
71
71
|
if (!config.skipConfigLogging && !result2.config.skipConfigLogging) {
|
|
72
|
-
|
|
72
|
+
_chunkQQQD2SINjs.writeTrace.call(void 0, `Found alternative configuration file "${result2.configFile.includes(`${workspacePath}/`) ? result2.configFile.replace(`${workspacePath}/`, "") : result2.configFile}" at "${workspacePath}"`, {
|
|
73
73
|
logLevel: "all"
|
|
74
74
|
});
|
|
75
75
|
}
|
|
@@ -111,6 +111,10 @@ var getConfigEnv = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, () => {
|
|
|
111
111
|
header: process.env[`${prefix}RELEASE_HEADER`] || void 0,
|
|
112
112
|
footer: process.env[`${prefix}RELEASE_FOOTER`] || void 0
|
|
113
113
|
},
|
|
114
|
+
error: {
|
|
115
|
+
codesFile: process.env[`${prefix}ERROR_CODES_FILE`] || void 0,
|
|
116
|
+
url: process.env[`${prefix}ERROR_URL`] || void 0
|
|
117
|
+
},
|
|
114
118
|
account: {
|
|
115
119
|
twitter: process.env[`${prefix}ACCOUNT_TWITTER`] || void 0,
|
|
116
120
|
discord: process.env[`${prefix}ACCOUNT_DISCORD`] || void 0,
|
|
@@ -128,15 +132,15 @@ var getConfigEnv = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, () => {
|
|
|
128
132
|
contact: process.env[`${prefix}CONTACT`] || void 0,
|
|
129
133
|
timezone: process.env[`${prefix}TIMEZONE`] || process.env.TZ || void 0,
|
|
130
134
|
locale: process.env[`${prefix}LOCALE`] || process.env.LOCALE || void 0,
|
|
131
|
-
configFile: process.env[`${prefix}CONFIG_FILE`] ?
|
|
132
|
-
workspaceRoot: process.env[`${prefix}WORKSPACE_ROOT`] ?
|
|
135
|
+
configFile: process.env[`${prefix}CONFIG_FILE`] ? _chunkQQQD2SINjs.correctPaths.call(void 0, process.env[`${prefix}CONFIG_FILE`]) : void 0,
|
|
136
|
+
workspaceRoot: process.env[`${prefix}WORKSPACE_ROOT`] ? _chunkQQQD2SINjs.correctPaths.call(void 0, process.env[`${prefix}WORKSPACE_ROOT`]) : void 0,
|
|
133
137
|
directories: {
|
|
134
|
-
cache: process.env[`${prefix}CACHE_DIR`] ?
|
|
135
|
-
data: process.env[`${prefix}DATA_DIR`] ?
|
|
136
|
-
config: process.env[`${prefix}CONFIG_DIR`] ?
|
|
137
|
-
temp: process.env[`${prefix}TEMP_DIR`] ?
|
|
138
|
-
log: process.env[`${prefix}LOG_DIR`] ?
|
|
139
|
-
build: process.env[`${prefix}BUILD_DIR`] ?
|
|
138
|
+
cache: process.env[`${prefix}CACHE_DIR`] ? _chunkQQQD2SINjs.correctPaths.call(void 0, process.env[`${prefix}CACHE_DIR`]) : void 0,
|
|
139
|
+
data: process.env[`${prefix}DATA_DIR`] ? _chunkQQQD2SINjs.correctPaths.call(void 0, process.env[`${prefix}DATA_DIR`]) : void 0,
|
|
140
|
+
config: process.env[`${prefix}CONFIG_DIR`] ? _chunkQQQD2SINjs.correctPaths.call(void 0, process.env[`${prefix}CONFIG_DIR`]) : void 0,
|
|
141
|
+
temp: process.env[`${prefix}TEMP_DIR`] ? _chunkQQQD2SINjs.correctPaths.call(void 0, process.env[`${prefix}TEMP_DIR`]) : void 0,
|
|
142
|
+
log: process.env[`${prefix}LOG_DIR`] ? _chunkQQQD2SINjs.correctPaths.call(void 0, process.env[`${prefix}LOG_DIR`]) : void 0,
|
|
143
|
+
build: process.env[`${prefix}BUILD_DIR`] ? _chunkQQQD2SINjs.correctPaths.call(void 0, process.env[`${prefix}BUILD_DIR`]) : void 0
|
|
140
144
|
},
|
|
141
145
|
skipCache: process.env[`${prefix}SKIP_CACHE`] !== void 0 ? Boolean(process.env[`${prefix}SKIP_CACHE`]) : void 0,
|
|
142
146
|
mode: (_nullishCoalesce(_nullishCoalesce(process.env[`${prefix}MODE`], () => ( process.env.NODE_ENV)), () => ( process.env.ENVIRONMENT))) || void 0,
|
|
@@ -159,24 +163,24 @@ var getConfigEnv = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, () => {
|
|
|
159
163
|
cyclone: process.env[`${prefix}REGISTRY_CYCLONE`] || void 0,
|
|
160
164
|
container: process.env[`${prefix}REGISTRY_CONTAINER`] || void 0
|
|
161
165
|
},
|
|
162
|
-
logLevel: process.env[`${prefix}LOG_LEVEL`] !== null && process.env[`${prefix}LOG_LEVEL`] !== void 0 ? process.env[`${prefix}LOG_LEVEL`] && Number.isSafeInteger(Number.parseInt(process.env[`${prefix}LOG_LEVEL`])) ?
|
|
166
|
+
logLevel: process.env[`${prefix}LOG_LEVEL`] !== null && process.env[`${prefix}LOG_LEVEL`] !== void 0 ? process.env[`${prefix}LOG_LEVEL`] && Number.isSafeInteger(Number.parseInt(process.env[`${prefix}LOG_LEVEL`])) ? _chunkQQQD2SINjs.getLogLevelLabel.call(void 0, Number.parseInt(process.env[`${prefix}LOG_LEVEL`])) : process.env[`${prefix}LOG_LEVEL`] : void 0,
|
|
163
167
|
skipConfigLogging: process.env[`${prefix}SKIP_CONFIG_LOGGING`] !== void 0 ? Boolean(process.env[`${prefix}SKIP_CONFIG_LOGGING`]) : void 0
|
|
164
168
|
};
|
|
165
|
-
const themeNames = Object.keys(process.env).filter((envKey) => envKey.startsWith(`${prefix}COLOR_`) &&
|
|
169
|
+
const themeNames = Object.keys(process.env).filter((envKey) => envKey.startsWith(`${prefix}COLOR_`) && _chunkQQQD2SINjs.COLOR_KEYS.every((colorKey) => !envKey.startsWith(`${prefix}COLOR_LIGHT_${colorKey}`) && !envKey.startsWith(`${prefix}COLOR_DARK_${colorKey}`)));
|
|
166
170
|
config.colors = themeNames.length > 0 ? themeNames.reduce((ret, themeName) => {
|
|
167
171
|
ret[themeName] = getThemeColorConfigEnv(prefix, themeName);
|
|
168
172
|
return ret;
|
|
169
173
|
}, {}) : getThemeColorConfigEnv(prefix);
|
|
170
|
-
if (config.docs ===
|
|
171
|
-
if (config.homepage ===
|
|
172
|
-
config.docs = `${
|
|
174
|
+
if (config.docs === _chunkQQQD2SINjs.STORM_DEFAULT_DOCS) {
|
|
175
|
+
if (config.homepage === _chunkQQQD2SINjs.STORM_DEFAULT_HOMEPAGE) {
|
|
176
|
+
config.docs = `${_chunkQQQD2SINjs.STORM_DEFAULT_HOMEPAGE}/projects/${config.name}/docs`;
|
|
173
177
|
} else {
|
|
174
178
|
config.docs = `${config.homepage}/docs`;
|
|
175
179
|
}
|
|
176
180
|
}
|
|
177
|
-
if (config.licensing ===
|
|
178
|
-
if (config.homepage ===
|
|
179
|
-
config.licensing = `${
|
|
181
|
+
if (config.licensing === _chunkQQQD2SINjs.STORM_DEFAULT_LICENSING) {
|
|
182
|
+
if (config.homepage === _chunkQQQD2SINjs.STORM_DEFAULT_HOMEPAGE) {
|
|
183
|
+
config.licensing = `${_chunkQQQD2SINjs.STORM_DEFAULT_HOMEPAGE}/projects/${config.name}/licensing`;
|
|
180
184
|
} else {
|
|
181
185
|
config.licensing = `${config.homepage}/docs`;
|
|
182
186
|
}
|
|
@@ -284,6 +288,10 @@ var setConfigEnv = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, (config)
|
|
|
284
288
|
process.env[`${prefix}BOT_NAME`] = config.bot.name;
|
|
285
289
|
process.env[`${prefix}BOT_EMAIL`] = config.bot.email;
|
|
286
290
|
}
|
|
291
|
+
if (config.error) {
|
|
292
|
+
process.env[`${prefix}ERROR_CODES_FILE`] = config.error.codesFile;
|
|
293
|
+
process.env[`${prefix}ERROR_URL`] = config.error.url;
|
|
294
|
+
}
|
|
287
295
|
if (config.release) {
|
|
288
296
|
process.env[`${prefix}RELEASE_BANNER`] = config.release.banner;
|
|
289
297
|
process.env[`${prefix}RELEASE_HEADER`] = config.release.header;
|
|
@@ -342,31 +350,31 @@ var setConfigEnv = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, (config)
|
|
|
342
350
|
process.env.LANG = config.locale ? `${config.locale.replaceAll("-", "_")}.UTF-8` : "en_US.UTF-8";
|
|
343
351
|
}
|
|
344
352
|
if (config.configFile) {
|
|
345
|
-
process.env[`${prefix}CONFIG_FILE`] =
|
|
353
|
+
process.env[`${prefix}CONFIG_FILE`] = _chunkQQQD2SINjs.correctPaths.call(void 0, config.configFile);
|
|
346
354
|
}
|
|
347
355
|
if (config.workspaceRoot) {
|
|
348
|
-
process.env[`${prefix}WORKSPACE_ROOT`] =
|
|
349
|
-
process.env.NX_WORKSPACE_ROOT =
|
|
350
|
-
process.env.NX_WORKSPACE_ROOT_PATH =
|
|
356
|
+
process.env[`${prefix}WORKSPACE_ROOT`] = _chunkQQQD2SINjs.correctPaths.call(void 0, config.workspaceRoot);
|
|
357
|
+
process.env.NX_WORKSPACE_ROOT = _chunkQQQD2SINjs.correctPaths.call(void 0, config.workspaceRoot);
|
|
358
|
+
process.env.NX_WORKSPACE_ROOT_PATH = _chunkQQQD2SINjs.correctPaths.call(void 0, config.workspaceRoot);
|
|
351
359
|
}
|
|
352
360
|
if (config.directories) {
|
|
353
361
|
if (!config.skipCache && config.directories.cache) {
|
|
354
|
-
process.env[`${prefix}CACHE_DIR`] =
|
|
362
|
+
process.env[`${prefix}CACHE_DIR`] = _chunkQQQD2SINjs.correctPaths.call(void 0, config.directories.cache);
|
|
355
363
|
}
|
|
356
364
|
if (config.directories.data) {
|
|
357
|
-
process.env[`${prefix}DATA_DIR`] =
|
|
365
|
+
process.env[`${prefix}DATA_DIR`] = _chunkQQQD2SINjs.correctPaths.call(void 0, config.directories.data);
|
|
358
366
|
}
|
|
359
367
|
if (config.directories.config) {
|
|
360
|
-
process.env[`${prefix}CONFIG_DIR`] =
|
|
368
|
+
process.env[`${prefix}CONFIG_DIR`] = _chunkQQQD2SINjs.correctPaths.call(void 0, config.directories.config);
|
|
361
369
|
}
|
|
362
370
|
if (config.directories.temp) {
|
|
363
|
-
process.env[`${prefix}TEMP_DIR`] =
|
|
371
|
+
process.env[`${prefix}TEMP_DIR`] = _chunkQQQD2SINjs.correctPaths.call(void 0, config.directories.temp);
|
|
364
372
|
}
|
|
365
373
|
if (config.directories.log) {
|
|
366
|
-
process.env[`${prefix}LOG_DIR`] =
|
|
374
|
+
process.env[`${prefix}LOG_DIR`] = _chunkQQQD2SINjs.correctPaths.call(void 0, config.directories.log);
|
|
367
375
|
}
|
|
368
376
|
if (config.directories.build) {
|
|
369
|
-
process.env[`${prefix}BUILD_DIR`] =
|
|
377
|
+
process.env[`${prefix}BUILD_DIR`] = _chunkQQQD2SINjs.correctPaths.call(void 0, config.directories.build);
|
|
370
378
|
}
|
|
371
379
|
}
|
|
372
380
|
if (config.skipCache !== void 0) {
|
|
@@ -414,14 +422,14 @@ var setConfigEnv = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, (config)
|
|
|
414
422
|
process.env[`${prefix}REGISTRY_CYCLONE`] = String(config.registry.cyclone);
|
|
415
423
|
}
|
|
416
424
|
if (config.registry.container) {
|
|
417
|
-
process.env[`${prefix}REGISTRY_CONTAINER`] = String(config.registry.
|
|
425
|
+
process.env[`${prefix}REGISTRY_CONTAINER`] = String(config.registry.container);
|
|
418
426
|
}
|
|
419
427
|
}
|
|
420
428
|
if (config.logLevel) {
|
|
421
429
|
process.env[`${prefix}LOG_LEVEL`] = String(config.logLevel);
|
|
422
430
|
process.env.LOG_LEVEL = String(config.logLevel);
|
|
423
|
-
process.env.NX_VERBOSE_LOGGING = String(
|
|
424
|
-
process.env.RUST_BACKTRACE =
|
|
431
|
+
process.env.NX_VERBOSE_LOGGING = String(_chunkQQQD2SINjs.getLogLevel.call(void 0, config.logLevel) >= _chunkQQQD2SINjs.LogLevel.DEBUG ? true : false);
|
|
432
|
+
process.env.RUST_BACKTRACE = _chunkQQQD2SINjs.getLogLevel.call(void 0, config.logLevel) >= _chunkQQQD2SINjs.LogLevel.DEBUG ? "full" : "none";
|
|
425
433
|
}
|
|
426
434
|
if (config.skipConfigLogging !== void 0) {
|
|
427
435
|
process.env[`${prefix}SKIP_CONFIG_LOGGING`] = String(config.skipConfigLogging);
|
|
@@ -534,22 +542,22 @@ var setBaseThemeColorConfigEnv = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(vo
|
|
|
534
542
|
// ../config-tools/src/create-storm-config.ts
|
|
535
543
|
var _extension_cache = /* @__PURE__ */ new WeakMap();
|
|
536
544
|
var _static_cache = void 0;
|
|
537
|
-
var
|
|
545
|
+
var createStormWorkspaceConfig = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, async (extensionName, schema, workspaceRoot, skipLogs = false) => {
|
|
538
546
|
let result;
|
|
539
547
|
if (!_optionalChain([_static_cache, 'optionalAccess', _29 => _29.data]) || !_optionalChain([_static_cache, 'optionalAccess', _30 => _30.timestamp]) || _static_cache.timestamp < Date.now() - 8e3) {
|
|
540
548
|
let _workspaceRoot = workspaceRoot;
|
|
541
549
|
if (!_workspaceRoot) {
|
|
542
|
-
_workspaceRoot =
|
|
550
|
+
_workspaceRoot = _chunkQQQD2SINjs.findWorkspaceRoot.call(void 0, );
|
|
543
551
|
}
|
|
544
552
|
const configEnv = getConfigEnv();
|
|
545
|
-
const defaultConfig = await
|
|
553
|
+
const defaultConfig = await _chunkQQQD2SINjs.getDefaultConfig.call(void 0, _workspaceRoot);
|
|
546
554
|
const configFile = await getConfigFile(_workspaceRoot);
|
|
547
555
|
if (!configFile && !skipLogs) {
|
|
548
|
-
|
|
556
|
+
_chunkQQQD2SINjs.writeWarning.call(void 0, "No Storm Workspace configuration file found in the current repository. Please ensure this is the expected behavior - you can add a `storm-workspace.json` file to the root of your workspace if it is not.\n", {
|
|
549
557
|
logLevel: "all"
|
|
550
558
|
});
|
|
551
559
|
}
|
|
552
|
-
result = await
|
|
560
|
+
result = await _chunkQQQD2SINjs.stormWorkspaceConfigSchema.parseAsync(_defu2.default.call(void 0, configEnv, configFile, defaultConfig));
|
|
553
561
|
result.workspaceRoot ??= _workspaceRoot;
|
|
554
562
|
} else {
|
|
555
563
|
result = _static_cache.data;
|
|
@@ -565,7 +573,7 @@ var createStormConfig = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, asy
|
|
|
565
573
|
data: result
|
|
566
574
|
};
|
|
567
575
|
return result;
|
|
568
|
-
}, "
|
|
576
|
+
}, "createStormWorkspaceConfig");
|
|
569
577
|
var createConfigExtension = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, (extensionName, schema) => {
|
|
570
578
|
const extension_cache_key = {
|
|
571
579
|
extensionName
|
|
@@ -580,19 +588,19 @@ var createConfigExtension = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0,
|
|
|
580
588
|
_extension_cache.set(extension_cache_key, extension);
|
|
581
589
|
return extension;
|
|
582
590
|
}, "createConfigExtension");
|
|
583
|
-
var
|
|
584
|
-
const config = await
|
|
591
|
+
var loadStormWorkspaceConfig = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, async (workspaceRoot, skipLogs = false) => {
|
|
592
|
+
const config = await createStormWorkspaceConfig(void 0, void 0, workspaceRoot, skipLogs);
|
|
585
593
|
setConfigEnv(config);
|
|
586
594
|
if (!skipLogs && !config.skipConfigLogging) {
|
|
587
|
-
|
|
588
|
-
${
|
|
595
|
+
_chunkQQQD2SINjs.writeTrace.call(void 0, `\u2699\uFE0F Using Storm Workspace configuration:
|
|
596
|
+
${_chunkQQQD2SINjs.formatLogMessage.call(void 0, config)}`, config);
|
|
589
597
|
}
|
|
590
598
|
return config;
|
|
591
|
-
}, "
|
|
599
|
+
}, "loadStormWorkspaceConfig");
|
|
592
600
|
|
|
593
601
|
// ../config-tools/src/get-config.ts
|
|
594
602
|
var getConfig = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, (workspaceRoot, skipLogs = false) => {
|
|
595
|
-
return
|
|
603
|
+
return loadStormWorkspaceConfig(workspaceRoot, skipLogs);
|
|
596
604
|
}, "getConfig");
|
|
597
605
|
|
|
598
606
|
|
|
@@ -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 _chunkP7YORNEHjs = require('./chunk-P7YORNEH.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkZ5XL2UL5js = require('./chunk-Z5XL2UL5.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -12,7 +12,7 @@ var _chunkH2ML72QFjs = require('./chunk-H2ML72QF.js');
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
var
|
|
15
|
+
var _chunkQQQD2SINjs = require('./chunk-QQQD2SIN.js');
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
var _chunkJ5SB6L2Ljs = require('./chunk-J5SB6L2L.js');
|
|
@@ -38,21 +38,21 @@ var vitestScript = `"test": "vitest run"`;
|
|
|
38
38
|
|
|
39
39
|
// src/generators/worker/generator.ts
|
|
40
40
|
async function applicationGenerator(tree, schema) {
|
|
41
|
-
const stopwatch =
|
|
41
|
+
const stopwatch = _chunkQQQD2SINjs.getStopwatch.call(void 0, "Storm Worker generator");
|
|
42
42
|
let config;
|
|
43
43
|
try {
|
|
44
|
-
|
|
44
|
+
_chunkQQQD2SINjs.writeInfo.call(void 0, `\u26A1 Running the Storm Worker generator...
|
|
45
45
|
|
|
46
46
|
`, config);
|
|
47
|
-
const workspaceRoot =
|
|
48
|
-
|
|
47
|
+
const workspaceRoot = _chunkQQQD2SINjs.findWorkspaceRoot.call(void 0, );
|
|
48
|
+
_chunkQQQD2SINjs.writeDebug.call(void 0, `Loading the Storm Config from environment variables and storm.json file...
|
|
49
49
|
- workspaceRoot: ${workspaceRoot}`, config);
|
|
50
|
-
config = await
|
|
51
|
-
|
|
50
|
+
config = await _chunkZ5XL2UL5js.getConfig.call(void 0, workspaceRoot);
|
|
51
|
+
_chunkQQQD2SINjs.writeTrace.call(void 0, `Loaded Storm config into env:
|
|
52
52
|
${Object.keys(process.env).map((key) => ` - ${key}=${JSON.stringify(process.env[key])}`).join("\n")}`, config);
|
|
53
53
|
const options = await normalizeOptions(tree, schema, config);
|
|
54
54
|
const tasks = [];
|
|
55
|
-
tasks.push(await
|
|
55
|
+
tasks.push(await _chunkP7YORNEHjs.generator_default.call(void 0, tree, {
|
|
56
56
|
...options,
|
|
57
57
|
skipFormat: true
|
|
58
58
|
}));
|
|
@@ -107,8 +107,8 @@ ${Object.keys(process.env).map((key) => ` - ${key}=${JSON.stringify(process.env[
|
|
|
107
107
|
return _devkit.runTasksInSerial.call(void 0, ...tasks);
|
|
108
108
|
} catch (error) {
|
|
109
109
|
return () => {
|
|
110
|
-
|
|
111
|
-
|
|
110
|
+
_chunkQQQD2SINjs.writeFatal.call(void 0, "A fatal error occurred while running the generator - the process was forced to terminate", config);
|
|
111
|
+
_chunkQQQD2SINjs.writeError.call(void 0, `An exception was thrown in the generator's process
|
|
112
112
|
- Details: ${error.message}
|
|
113
113
|
- Stacktrace: ${error.stack}`, config);
|
|
114
114
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-WGEGIRE6.mjs";
|
|
4
4
|
import {
|
|
5
5
|
getConfig
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-2P5TGL2R.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-YBYGEO5L.mjs";
|
|
16
16
|
import {
|
|
17
17
|
__dirname,
|
|
18
18
|
__name
|
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-DZPVDJXE.js');
|
|
4
|
+
require('./chunk-4P4IIN6G.js');
|
|
5
|
+
require('./chunk-S5NUDAJR.js');
|
|
6
6
|
require('./chunk-VTHBMY4B.js');
|
|
7
|
-
require('./chunk-
|
|
8
|
-
require('./chunk-
|
|
7
|
+
require('./chunk-Z5XL2UL5.js');
|
|
8
|
+
require('./chunk-QQQD2SIN.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-VNLZQQ5C.mjs";
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
3
|
+
import "./chunk-BDADKXEW.mjs";
|
|
4
|
+
import "./chunk-QGY5FTZR.mjs";
|
|
5
|
+
import "./chunk-PHH7TIFK.mjs";
|
|
6
6
|
import "./chunk-YYEF6TFG.mjs";
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-2P5TGL2R.mjs";
|
|
8
|
+
import "./chunk-YBYGEO5L.mjs";
|
|
9
9
|
import "./chunk-3HMZSKJD.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkZGZLK5XZjs = require('./chunk-ZGZLK5XZ.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
10
|
-
require('./chunk-
|
|
11
|
-
require('./chunk-
|
|
9
|
+
var _chunkP7YORNEHjs = require('./chunk-P7YORNEH.js');
|
|
10
|
+
require('./chunk-Z5XL2UL5.js');
|
|
11
|
+
require('./chunk-QQQD2SIN.js');
|
|
12
12
|
require('./chunk-J5SB6L2L.js');
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
exports.applicationGenerator =
|
|
18
|
+
exports.applicationGenerator = _chunkZGZLK5XZjs.applicationGenerator; exports.applicationSchematic = _chunkZGZLK5XZjs.applicationSchematic; exports.initGenerator = _chunkP7YORNEHjs.initGenerator; exports.initSchematic = _chunkP7YORNEHjs.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-ZTEXBI4T.mjs";
|
|
6
6
|
import {
|
|
7
7
|
initGenerator,
|
|
8
8
|
initSchematic
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-WGEGIRE6.mjs";
|
|
10
|
+
import "./chunk-2P5TGL2R.mjs";
|
|
11
|
+
import "./chunk-YBYGEO5L.mjs";
|
|
12
12
|
import "./chunk-3HMZSKJD.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 _chunkZGZLK5XZjs = require('./chunk-ZGZLK5XZ.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkP7YORNEHjs = require('./chunk-P7YORNEH.js');
|
|
11
11
|
require('./chunk-CVGPWUNP.js');
|
|
12
12
|
require('./chunk-R7AIVBS7.js');
|
|
13
|
-
require('./chunk-
|
|
14
|
-
require('./chunk-
|
|
13
|
+
require('./chunk-DZPVDJXE.js');
|
|
14
|
+
require('./chunk-4P4IIN6G.js');
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunkS5NUDAJRjs = require('./chunk-S5NUDAJR.js');
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
var _chunkVTHBMY4Bjs = require('./chunk-VTHBMY4B.js');
|
|
23
|
-
require('./chunk-
|
|
24
|
-
require('./chunk-
|
|
23
|
+
require('./chunk-Z5XL2UL5.js');
|
|
24
|
+
require('./chunk-QQQD2SIN.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 = _chunkZGZLK5XZjs.applicationGenerator; exports.applicationSchematic = _chunkZGZLK5XZjs.applicationSchematic; exports.createNodes = createNodes; exports.getInternalDependencies = _chunkS5NUDAJRjs.getInternalDependencies; exports.initGenerator = _chunkP7YORNEHjs.initGenerator; exports.initSchematic = _chunkP7YORNEHjs.initSchematic; exports.name = name; exports.r2UploadFile = _chunkS5NUDAJRjs.r2UploadFile;
|