@storm-software/cloudflare-tools 0.55.44 → 0.55.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 +1 -1
- package/dist/{chunk-75BWJSFW.mjs → chunk-2P5TGL2R.mjs} +10 -2
- package/dist/{chunk-FVMS7RMT.mjs → chunk-37HC2CC6.mjs} +3 -3
- package/dist/{chunk-MIKH2FI5.mjs → chunk-7JTISIUD.mjs} +1 -1
- package/dist/{chunk-CAC2PNUJ.js → chunk-CWBI7ZQ2.js} +16 -16
- package/dist/{chunk-JUJW77CM.js → chunk-FUMCGABO.js} +12 -12
- package/dist/{chunk-ISO7UOVA.js → chunk-GZJSLTK4.js} +247 -226
- package/dist/{chunk-LY3NUGLI.mjs → chunk-HD246TI3.mjs} +88 -67
- package/dist/{chunk-TTDB2VCO.mjs → chunk-PHH7TIFK.mjs} +1 -1
- package/dist/{chunk-HWJBDRIG.js → chunk-QQQD2SIN.js} +9 -1
- package/dist/{chunk-AXF5C7QR.js → chunk-S5NUDAJR.js} +3 -3
- package/dist/{chunk-STUGKRS5.mjs → chunk-WTERMAUR.mjs} +3 -3
- package/dist/{chunk-R2SQ6ZOK.mjs → chunk-YBYGEO5L.mjs} +9 -1
- package/dist/{chunk-TDNPRL4Y.js → chunk-Z3WJNLJW.js} +1 -1
- package/dist/{chunk-R32N7B24.js → chunk-Z5XL2UL5.js} +50 -42
- 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 +20 -2
- package/dist/src/executors/serve/executor.d.ts +20 -2
- 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
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
} from "./chunk-YYEF6TFG.mjs";
|
|
5
5
|
import {
|
|
6
6
|
getConfig
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-2P5TGL2R.mjs";
|
|
8
8
|
import {
|
|
9
9
|
correctPaths,
|
|
10
10
|
findWorkspaceRoot,
|
|
@@ -20,7 +20,7 @@ import {
|
|
|
20
20
|
writeSuccess,
|
|
21
21
|
writeTrace,
|
|
22
22
|
writeWarning
|
|
23
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-YBYGEO5L.mjs";
|
|
24
24
|
import {
|
|
25
25
|
__dirname,
|
|
26
26
|
__name,
|
|
@@ -612,58 +612,6 @@ var addWorkspacePackageJsonFields = /* @__PURE__ */ __name(async (config, projec
|
|
|
612
612
|
|
|
613
613
|
// ../build-tools/src/utilities/get-entry-points.ts
|
|
614
614
|
import { glob as glob2 } from "glob";
|
|
615
|
-
var getEntryPoints = /* @__PURE__ */ __name(async (config, projectRoot, sourceRoot, entry, emitOnAll = false) => {
|
|
616
|
-
const workspaceRoot3 = config.workspaceRoot || findWorkspaceRoot();
|
|
617
|
-
const entryPoints = [];
|
|
618
|
-
if (entry) {
|
|
619
|
-
if (typeof entry === "string") {
|
|
620
|
-
entryPoints.push(entry);
|
|
621
|
-
} else if (Array.isArray(entry)) {
|
|
622
|
-
entryPoints.push(...entry);
|
|
623
|
-
} else {
|
|
624
|
-
entryPoints.push(...Object.values(entry));
|
|
625
|
-
}
|
|
626
|
-
}
|
|
627
|
-
if (emitOnAll) {
|
|
628
|
-
entryPoints.push(joinPaths(workspaceRoot3, sourceRoot || projectRoot, "**/*.{ts,tsx}"));
|
|
629
|
-
}
|
|
630
|
-
const results = await Promise.all(entryPoints.map(async (entryPoint) => {
|
|
631
|
-
const paths = [];
|
|
632
|
-
if (entryPoint.includes("*")) {
|
|
633
|
-
const files = await glob2(entryPoint, {
|
|
634
|
-
withFileTypes: true,
|
|
635
|
-
ignore: [
|
|
636
|
-
"**/node_modules/**"
|
|
637
|
-
]
|
|
638
|
-
});
|
|
639
|
-
paths.push(...files.reduce((ret, filePath) => {
|
|
640
|
-
const result = correctPaths(joinPaths(filePath.path, filePath.name).replaceAll(correctPaths(workspaceRoot3), "").replaceAll(correctPaths(projectRoot), ""));
|
|
641
|
-
if (result) {
|
|
642
|
-
writeDebug(`Trying to add entry point ${result} at "${joinPaths(filePath.path, filePath.name)}"`, config);
|
|
643
|
-
if (!paths.includes(result)) {
|
|
644
|
-
paths.push(result);
|
|
645
|
-
}
|
|
646
|
-
}
|
|
647
|
-
return ret;
|
|
648
|
-
}, []));
|
|
649
|
-
} else {
|
|
650
|
-
const result = correctPaths(entryPoint.replaceAll(correctPaths(workspaceRoot3), "").replaceAll(correctPaths(projectRoot), ""));
|
|
651
|
-
writeDebug(`Trying to add entry point ${result}"`, config);
|
|
652
|
-
if (!paths.includes(result)) {
|
|
653
|
-
paths.push(result);
|
|
654
|
-
}
|
|
655
|
-
}
|
|
656
|
-
return paths;
|
|
657
|
-
}));
|
|
658
|
-
return results.filter(Boolean).reduce((ret, result) => {
|
|
659
|
-
result.forEach((res) => {
|
|
660
|
-
if (res && !ret.includes(res)) {
|
|
661
|
-
ret.push(res);
|
|
662
|
-
}
|
|
663
|
-
});
|
|
664
|
-
return ret;
|
|
665
|
-
}, []);
|
|
666
|
-
}, "getEntryPoints");
|
|
667
615
|
|
|
668
616
|
// ../build-tools/src/utilities/get-env.ts
|
|
669
617
|
var getEnv = /* @__PURE__ */ __name((builder, options) => {
|
|
@@ -1087,10 +1035,10 @@ var tscPlugin = /* @__PURE__ */ __name((options, resolvedOptions) => ({
|
|
|
1087
1035
|
if (process.env.WATCH !== "true" && process.env.DEV !== "true") {
|
|
1088
1036
|
await run(resolvedOptions.config, `pnpm exec tsc --project ${resolvedOptions.tsconfig}`, resolvedOptions.config.workspaceRoot);
|
|
1089
1037
|
}
|
|
1090
|
-
if (resolvedOptions.bundle && resolvedOptions.entryPoints && resolvedOptions.entryPoints.length > 0 && resolvedOptions.entryPoints[0] && resolvedOptions.entryPoints[0].endsWith(".ts")) {
|
|
1038
|
+
if (resolvedOptions.bundle && resolvedOptions.entryPoints && resolvedOptions.entryPoints.length > 0 && resolvedOptions.entryPoints[0]?.in && resolvedOptions.entryPoints[0].in.endsWith(".ts")) {
|
|
1091
1039
|
const sourceRoot = resolvedOptions.sourceRoot.replaceAll(resolvedOptions.projectRoot, "");
|
|
1092
1040
|
const typeOutDir = resolvedOptions.outdir;
|
|
1093
|
-
const entryPoint = resolvedOptions.entryPoints[0].replace(sourceRoot, "").replace(/\.ts$/, "");
|
|
1041
|
+
const entryPoint = resolvedOptions.entryPoints[0].in.replace(sourceRoot, "").replace(/\.ts$/, "");
|
|
1094
1042
|
const bundlePath = joinPaths(resolvedOptions.outdir, entryPoint);
|
|
1095
1043
|
let dtsPath;
|
|
1096
1044
|
if (existsSync3(joinPaths(resolvedOptions.config.workspaceRoot, typeOutDir, `${entryPoint}.d.ts`))) {
|
|
@@ -1281,6 +1229,84 @@ var shebangRenderer = {
|
|
|
1281
1229
|
}
|
|
1282
1230
|
};
|
|
1283
1231
|
|
|
1232
|
+
// ../esbuild/src/utilities/get-entry-points.ts
|
|
1233
|
+
import { glob as glob3 } from "glob";
|
|
1234
|
+
var getEntryPoints = /* @__PURE__ */ __name(async (config, projectRoot, sourceRoot, entry, emitOnAll = false) => {
|
|
1235
|
+
const workspaceRoot3 = config.workspaceRoot || findWorkspaceRoot();
|
|
1236
|
+
const entryPoints = [];
|
|
1237
|
+
if (entry) {
|
|
1238
|
+
if (typeof entry === "string") {
|
|
1239
|
+
entryPoints.push({
|
|
1240
|
+
in: entry,
|
|
1241
|
+
out: entry
|
|
1242
|
+
});
|
|
1243
|
+
} else if (Array.isArray(entry)) {
|
|
1244
|
+
entryPoints.push(...entry.map((entry2) => ({
|
|
1245
|
+
in: entry2,
|
|
1246
|
+
out: entry2
|
|
1247
|
+
})));
|
|
1248
|
+
} else {
|
|
1249
|
+
entryPoints.push(...Object.entries(entry).map(([key, value]) => {
|
|
1250
|
+
if (typeof value === "string") {
|
|
1251
|
+
return {
|
|
1252
|
+
in: key,
|
|
1253
|
+
out: value
|
|
1254
|
+
};
|
|
1255
|
+
} else {
|
|
1256
|
+
return {
|
|
1257
|
+
in: key,
|
|
1258
|
+
out: key
|
|
1259
|
+
};
|
|
1260
|
+
}
|
|
1261
|
+
}));
|
|
1262
|
+
}
|
|
1263
|
+
}
|
|
1264
|
+
if (emitOnAll) {
|
|
1265
|
+
entryPoints.push({
|
|
1266
|
+
in: joinPaths(workspaceRoot3, sourceRoot || projectRoot, "**/*.{ts,tsx}"),
|
|
1267
|
+
out: joinPaths(workspaceRoot3, sourceRoot || projectRoot, "**/*.{ts,tsx}")
|
|
1268
|
+
});
|
|
1269
|
+
}
|
|
1270
|
+
const results = await Promise.all(entryPoints.map(async (entryPoint) => {
|
|
1271
|
+
const paths = [];
|
|
1272
|
+
if (entryPoint.in.includes("*")) {
|
|
1273
|
+
const files = await glob3(entryPoint.in, {
|
|
1274
|
+
withFileTypes: true,
|
|
1275
|
+
ignore: [
|
|
1276
|
+
"**/node_modules/**"
|
|
1277
|
+
]
|
|
1278
|
+
});
|
|
1279
|
+
paths.push(...files.reduce((ret, filePath) => {
|
|
1280
|
+
const result = correctPaths(joinPaths(filePath.path, filePath.name).replaceAll(correctPaths(workspaceRoot3), "").replaceAll(correctPaths(projectRoot), ""));
|
|
1281
|
+
if (result) {
|
|
1282
|
+
writeDebug(`Trying to add entry point ${result} at "${joinPaths(filePath.path, filePath.name)}"`, config);
|
|
1283
|
+
if (!paths.some((p) => p.in === result)) {
|
|
1284
|
+
paths.push({
|
|
1285
|
+
in: result,
|
|
1286
|
+
out: entryPoint.out.replace(entryPoint.in, result)
|
|
1287
|
+
});
|
|
1288
|
+
}
|
|
1289
|
+
}
|
|
1290
|
+
return ret;
|
|
1291
|
+
}, []));
|
|
1292
|
+
} else {
|
|
1293
|
+
writeDebug(`Trying to add entry point ${entryPoint}"`, config);
|
|
1294
|
+
if (!paths.some((p) => p.in === entryPoint.in)) {
|
|
1295
|
+
paths.push(entryPoint);
|
|
1296
|
+
}
|
|
1297
|
+
}
|
|
1298
|
+
return paths;
|
|
1299
|
+
}));
|
|
1300
|
+
return results.filter(Boolean).reduce((ret, result) => {
|
|
1301
|
+
result.forEach((res) => {
|
|
1302
|
+
if (res && !ret.some((p) => p.in === res.in)) {
|
|
1303
|
+
ret.push(res);
|
|
1304
|
+
}
|
|
1305
|
+
});
|
|
1306
|
+
return ret;
|
|
1307
|
+
}, []);
|
|
1308
|
+
}, "getEntryPoints");
|
|
1309
|
+
|
|
1284
1310
|
// ../esbuild/src/utilities/helpers.ts
|
|
1285
1311
|
function handleSync(fn) {
|
|
1286
1312
|
try {
|
|
@@ -1394,7 +1420,7 @@ var resolveOptions = /* @__PURE__ */ __name(async (userOptions) => {
|
|
|
1394
1420
|
...userOptions,
|
|
1395
1421
|
tsconfig: joinPaths(projectRoot, userOptions.tsconfig ? userOptions.tsconfig.replace(projectRoot, "") : "tsconfig.json"),
|
|
1396
1422
|
format: options.format || "cjs",
|
|
1397
|
-
entryPoints: await getEntryPoints(config, projectRoot, projectJson.sourceRoot, userOptions.entry ?? "./src/index.ts",
|
|
1423
|
+
entryPoints: await getEntryPoints(config, projectRoot, projectJson.sourceRoot, userOptions.entry ?? "./src/index.ts", false),
|
|
1398
1424
|
outdir: userOptions.outputPath || joinPaths("dist", projectRoot),
|
|
1399
1425
|
distDir: userOptions.distDir || "dist",
|
|
1400
1426
|
plugins: [],
|
|
@@ -1409,7 +1435,6 @@ var resolveOptions = /* @__PURE__ */ __name(async (userOptions) => {
|
|
|
1409
1435
|
metafile: userOptions.metafile !== false,
|
|
1410
1436
|
generatePackageJson: userOptions.generatePackageJson !== false,
|
|
1411
1437
|
clean: userOptions.clean !== false,
|
|
1412
|
-
emitOnAll: userOptions.emitOnAll === true,
|
|
1413
1438
|
assets: userOptions.assets ?? [],
|
|
1414
1439
|
injectShims: userOptions.injectShims !== true,
|
|
1415
1440
|
bundle: userOptions.bundle !== false,
|
|
@@ -1476,19 +1501,13 @@ async function generatePackageJson(context2) {
|
|
|
1476
1501
|
packageJson.exports ??= {};
|
|
1477
1502
|
packageJson.exports["./package.json"] ??= "./package.json";
|
|
1478
1503
|
packageJson.exports["."] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js`;
|
|
1479
|
-
|
|
1504
|
+
const entryPoints = [
|
|
1480
1505
|
{
|
|
1481
1506
|
in: "./src/index.ts",
|
|
1482
1507
|
out: "./src/index.ts"
|
|
1483
1508
|
}
|
|
1484
1509
|
];
|
|
1485
1510
|
if (context2.options.entryPoints) {
|
|
1486
|
-
if (Array.isArray(context2.options.entryPoints)) {
|
|
1487
|
-
entryPoints = context2.options.entryPoints.map((entryPoint) => typeof entryPoint === "string" ? {
|
|
1488
|
-
in: entryPoint,
|
|
1489
|
-
out: entryPoint
|
|
1490
|
-
} : entryPoint);
|
|
1491
|
-
}
|
|
1492
1511
|
for (const entryPoint of entryPoints) {
|
|
1493
1512
|
const split = entryPoint.out.split(".");
|
|
1494
1513
|
split.pop();
|
|
@@ -1557,7 +1576,6 @@ async function executeEsBuild(context2) {
|
|
|
1557
1576
|
delete options.clean;
|
|
1558
1577
|
delete options.debug;
|
|
1559
1578
|
delete options.generatePackageJson;
|
|
1560
|
-
delete options.emitOnAll;
|
|
1561
1579
|
delete options.distDir;
|
|
1562
1580
|
delete options.includeSrc;
|
|
1563
1581
|
delete options.verbose;
|
|
@@ -1570,7 +1588,10 @@ async function executeEsBuild(context2) {
|
|
|
1570
1588
|
delete options.injectShims;
|
|
1571
1589
|
delete options.external;
|
|
1572
1590
|
writeTrace(`Run esbuild (${context2.options.name}) with the following options:
|
|
1573
|
-
${formatLogMessage(
|
|
1591
|
+
${formatLogMessage({
|
|
1592
|
+
...options,
|
|
1593
|
+
define: "<Hidden>"
|
|
1594
|
+
})}`, context2.options.config);
|
|
1574
1595
|
const result = await esbuild2.build(options);
|
|
1575
1596
|
await esbuild2.stop();
|
|
1576
1597
|
if (result.metafile) {
|
|
@@ -366,6 +366,10 @@ 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 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");
|
|
369
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(),
|
|
@@ -384,6 +388,7 @@ var stormWorkspaceConfigSchema = _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
|
|
|
@@ -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) => {
|
|
@@ -5,17 +5,17 @@ import {
|
|
|
5
5
|
import {
|
|
6
6
|
getInternalDependencies,
|
|
7
7
|
r2UploadFile
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-PHH7TIFK.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,6 +366,10 @@ 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 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");
|
|
369
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(),
|
|
@@ -384,6 +388,7 @@ var stormWorkspaceConfigSchema = 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
|
|
|
@@ -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.46",
|
|
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",
|
|
@@ -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);
|
|
@@ -539,17 +547,17 @@ var createStormWorkspaceConfig = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(vo
|
|
|
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;
|
|
@@ -584,8 +592,8 @@ var loadStormWorkspaceConfig = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void
|
|
|
584
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");
|
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-
|
|
3
|
+
require('./chunk-CWBI7ZQ2.js');
|
|
4
|
+
require('./chunk-GZJSLTK4.js');
|
|
5
5
|
require('./chunk-VTHBMY4B.js');
|
|
6
|
-
require('./chunk-
|
|
7
|
-
require('./chunk-
|
|
8
|
-
require('./chunk-
|
|
6
|
+
require('./chunk-S5NUDAJR.js');
|
|
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-
|
|
3
|
+
import "./chunk-WTERMAUR.mjs";
|
|
4
|
+
import "./chunk-HD246TI3.mjs";
|
|
5
5
|
import "./chunk-YYEF6TFG.mjs";
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-PHH7TIFK.mjs";
|
|
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
|
|
6
|
-
require('./chunk-
|
|
7
|
-
require('./chunk-
|
|
5
|
+
var _chunkFUMCGABOjs = require('./chunk-FUMCGABO.js');
|
|
6
|
+
require('./chunk-Z5XL2UL5.js');
|
|
7
|
+
require('./chunk-QQQD2SIN.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
var
|
|
11
|
+
var _chunkZ3WJNLJWjs = require('./chunk-Z3WJNLJW.js');
|
|
12
12
|
require('./chunk-J5SB6L2L.js');
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
exports.applicationGenerator =
|
|
18
|
+
exports.applicationGenerator = _chunkFUMCGABOjs.applicationGenerator; exports.applicationSchematic = _chunkFUMCGABOjs.applicationSchematic; exports.initGenerator = _chunkZ3WJNLJWjs.initGenerator; exports.initSchematic = _chunkZ3WJNLJWjs.initSchematic;
|