@storm-software/cloudflare-tools 0.28.0 → 0.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/index.js +211 -173
- package/meta.json +1 -1
- package/package.json +5 -5
- package/packages/config/src/constants.d.ts +3 -0
- package/packages/config/src/define-config.d.ts +2 -0
- package/packages/config/src/index.d.ts +2 -1
- package/packages/config/src/schema.d.ts +6 -0
- package/src/executors/cloudflare-publish/executor.js +48 -10
- package/src/executors/serve/executor.js +50 -12
- package/src/generators/init/generator.js +9 -9
- package/src/generators/worker/generator.js +209 -171
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/cloudflare-tools",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.29.0",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "⚡The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.",
|
|
6
6
|
"repository": {
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"monorepo"
|
|
42
42
|
],
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"@nx/devkit": "^19.5.
|
|
44
|
+
"@nx/devkit": "^19.5.6",
|
|
45
45
|
"@nx/node": ">=19.5.0",
|
|
46
46
|
"@nx/web": ">=19.5.0",
|
|
47
47
|
"@nx/webpack": ">=19.5.0",
|
|
48
|
-
"nx": "^19.5.
|
|
48
|
+
"nx": "^19.5.6",
|
|
49
49
|
"wrangler": ">=3.58.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependenciesMeta": {
|
|
@@ -73,11 +73,11 @@
|
|
|
73
73
|
"jest-resolve": "29.7.0"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@nx/devkit": "^19.5.
|
|
76
|
+
"@nx/devkit": "^19.5.6",
|
|
77
77
|
"@nx/node": ">=19.5.0",
|
|
78
78
|
"@nx/web": ">=19.5.0",
|
|
79
79
|
"@nx/webpack": ">=19.5.0",
|
|
80
|
-
"nx": "^19.5.
|
|
80
|
+
"nx": "^19.5.6",
|
|
81
81
|
"wrangler": ">=3.58.0"
|
|
82
82
|
},
|
|
83
83
|
"publishConfig": {
|
|
@@ -143,6 +143,8 @@ export declare const defineConfig: (input: StormConfigInput) => {
|
|
|
143
143
|
repository?: string | undefined;
|
|
144
144
|
license?: string | undefined;
|
|
145
145
|
homepage?: string | undefined;
|
|
146
|
+
docs?: string | undefined;
|
|
147
|
+
licensing?: string | undefined;
|
|
146
148
|
branch?: string | undefined;
|
|
147
149
|
preid?: string | undefined;
|
|
148
150
|
owner?: string | undefined;
|
|
@@ -917,6 +917,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
917
917
|
repository: z.ZodOptional<z.ZodString>;
|
|
918
918
|
license: z.ZodDefault<z.ZodString>;
|
|
919
919
|
homepage: z.ZodDefault<z.ZodString>;
|
|
920
|
+
docs: z.ZodDefault<z.ZodString>;
|
|
921
|
+
licensing: z.ZodDefault<z.ZodString>;
|
|
920
922
|
branch: z.ZodDefault<z.ZodString>;
|
|
921
923
|
preid: z.ZodOptional<z.ZodString>;
|
|
922
924
|
owner: z.ZodDefault<z.ZodString>;
|
|
@@ -1583,6 +1585,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1583
1585
|
organization: string;
|
|
1584
1586
|
license: string;
|
|
1585
1587
|
homepage: string;
|
|
1588
|
+
docs: string;
|
|
1589
|
+
licensing: string;
|
|
1586
1590
|
branch: string;
|
|
1587
1591
|
owner: string;
|
|
1588
1592
|
worker: string;
|
|
@@ -1880,6 +1884,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1880
1884
|
repository?: string | undefined;
|
|
1881
1885
|
license?: string | undefined;
|
|
1882
1886
|
homepage?: string | undefined;
|
|
1887
|
+
docs?: string | undefined;
|
|
1888
|
+
licensing?: string | undefined;
|
|
1883
1889
|
branch?: string | undefined;
|
|
1884
1890
|
preid?: string | undefined;
|
|
1885
1891
|
owner?: string | undefined;
|
|
@@ -61389,6 +61389,22 @@ var init_find_workspace_root = __esm({
|
|
|
61389
61389
|
}
|
|
61390
61390
|
});
|
|
61391
61391
|
|
|
61392
|
+
// packages/config/src/constants.ts
|
|
61393
|
+
var STORM_DEFAULT_DOCS, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSING;
|
|
61394
|
+
var init_constants = __esm({
|
|
61395
|
+
"packages/config/src/constants.ts"() {
|
|
61396
|
+
STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
|
|
61397
|
+
STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
61398
|
+
STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
|
|
61399
|
+
}
|
|
61400
|
+
});
|
|
61401
|
+
|
|
61402
|
+
// packages/config/src/define-config.ts
|
|
61403
|
+
var init_define_config = __esm({
|
|
61404
|
+
"packages/config/src/define-config.ts"() {
|
|
61405
|
+
}
|
|
61406
|
+
});
|
|
61407
|
+
|
|
61392
61408
|
// node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/index.mjs
|
|
61393
61409
|
function setErrorMap(map) {
|
|
61394
61410
|
overrideErrorMap = map;
|
|
@@ -65306,9 +65322,10 @@ var DarkColorSchema, LightColorSchema, BrandColorSchema, Brand2ColorSchema, Bran
|
|
|
65306
65322
|
var init_schema = __esm({
|
|
65307
65323
|
"packages/config/src/schema.ts"() {
|
|
65308
65324
|
init_lib();
|
|
65325
|
+
init_constants();
|
|
65309
65326
|
DarkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#0D1017").describe("The dark background color of the workspace");
|
|
65310
65327
|
LightColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
65311
|
-
BrandColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#
|
|
65328
|
+
BrandColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#3fc1b0").describe("The primary brand specific color of the workspace");
|
|
65312
65329
|
Brand2ColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7434DB").describe("The secondary brand specific color of the workspace");
|
|
65313
65330
|
Brand3ColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#00C2CE").describe("The tertiary brand specific color of the workspace");
|
|
65314
65331
|
AccentColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The secondary brand specific color of the workspace");
|
|
@@ -65391,8 +65408,10 @@ var init_schema = __esm({
|
|
|
65391
65408
|
namespace: z2.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
65392
65409
|
organization: z2.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
65393
65410
|
repository: z2.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
65394
|
-
license: z2.string().trim().default("Apache
|
|
65395
|
-
homepage: z2.string().trim().url().default(
|
|
65411
|
+
license: z2.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
65412
|
+
homepage: z2.string().trim().url().default(STORM_DEFAULT_HOMEPAGE).describe("The homepage of the workspace"),
|
|
65413
|
+
docs: z2.string().trim().url().default(STORM_DEFAULT_DOCS).describe("The base documentation site for the workspace"),
|
|
65414
|
+
licensing: z2.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
65396
65415
|
branch: z2.string().trim().default("main").describe("The branch of the workspace"),
|
|
65397
65416
|
preid: z2.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
65398
65417
|
owner: z2.string().trim().default("@storm-software/development").describe("The owner of the package"),
|
|
@@ -65461,18 +65480,13 @@ var init_types = __esm({
|
|
|
65461
65480
|
}
|
|
65462
65481
|
});
|
|
65463
65482
|
|
|
65464
|
-
// packages/config/src/define-config.ts
|
|
65465
|
-
var init_define_config = __esm({
|
|
65466
|
-
"packages/config/src/define-config.ts"() {
|
|
65467
|
-
}
|
|
65468
|
-
});
|
|
65469
|
-
|
|
65470
65483
|
// packages/config/src/index.ts
|
|
65471
65484
|
var init_src = __esm({
|
|
65472
65485
|
"packages/config/src/index.ts"() {
|
|
65486
|
+
init_constants();
|
|
65487
|
+
init_define_config();
|
|
65473
65488
|
init_schema();
|
|
65474
65489
|
init_types();
|
|
65475
|
-
init_define_config();
|
|
65476
65490
|
}
|
|
65477
65491
|
});
|
|
65478
65492
|
|
|
@@ -65578,6 +65592,8 @@ var init_get_default_config = __esm({
|
|
|
65578
65592
|
repository,
|
|
65579
65593
|
license: license ?? DEFAULT_STORM_CONFIG.license,
|
|
65580
65594
|
homepage: homepage ?? DEFAULT_STORM_CONFIG.homepage,
|
|
65595
|
+
docs: `${homepage ?? DEFAULT_STORM_CONFIG.homepage}/docs`,
|
|
65596
|
+
licensing: `${homepage ?? DEFAULT_STORM_CONFIG.homepage}/licensing`,
|
|
65581
65597
|
extensions: {
|
|
65582
65598
|
...config.extensions
|
|
65583
65599
|
}
|
|
@@ -67669,6 +67685,8 @@ var init_get_env = __esm({
|
|
|
67669
67685
|
packageManager: process.env[`${prefix}PACKAGE_MANAGER`],
|
|
67670
67686
|
license: process.env[`${prefix}LICENSE`],
|
|
67671
67687
|
homepage: process.env[`${prefix}HOMEPAGE`],
|
|
67688
|
+
docs: process.env[`${prefix}DOCS`],
|
|
67689
|
+
licensing: process.env[`${prefix}LICENSING`],
|
|
67672
67690
|
timezone: process.env[`${prefix}TIMEZONE`] ?? process.env.TZ,
|
|
67673
67691
|
locale: process.env[`${prefix}LOCALE`] ?? process.env.LOCALE,
|
|
67674
67692
|
configFile: correctPaths(process.env[`${prefix}CONFIG_FILE`]),
|
|
@@ -67717,6 +67735,20 @@ var init_get_env = __esm({
|
|
|
67717
67735
|
},
|
|
67718
67736
|
{}
|
|
67719
67737
|
) : getThemeColorConfigEnv(prefix);
|
|
67738
|
+
if (config.docs === STORM_DEFAULT_DOCS) {
|
|
67739
|
+
if (config.homepage === STORM_DEFAULT_HOMEPAGE) {
|
|
67740
|
+
config.docs = `${STORM_DEFAULT_HOMEPAGE}/projects/${config.name}/docs`;
|
|
67741
|
+
} else {
|
|
67742
|
+
config.docs = `${config.homepage}/docs`;
|
|
67743
|
+
}
|
|
67744
|
+
}
|
|
67745
|
+
if (config.licensing === STORM_DEFAULT_LICENSING) {
|
|
67746
|
+
if (config.homepage === STORM_DEFAULT_HOMEPAGE) {
|
|
67747
|
+
config.licensing = `${STORM_DEFAULT_HOMEPAGE}/projects/${config.name}/licensing`;
|
|
67748
|
+
} else {
|
|
67749
|
+
config.licensing = `${config.homepage}/docs`;
|
|
67750
|
+
}
|
|
67751
|
+
}
|
|
67720
67752
|
const serializedConfig = process.env[`${prefix}CONFIG`];
|
|
67721
67753
|
if (serializedConfig) {
|
|
67722
67754
|
const parsed = JSON.parse(serializedConfig);
|
|
@@ -67834,6 +67866,12 @@ var init_set_env = __esm({
|
|
|
67834
67866
|
if (config.homepage) {
|
|
67835
67867
|
process.env[`${prefix}HOMEPAGE`] = config.homepage;
|
|
67836
67868
|
}
|
|
67869
|
+
if (config.docs) {
|
|
67870
|
+
process.env[`${prefix}DOCS`] = config.docs;
|
|
67871
|
+
}
|
|
67872
|
+
if (config.licensing) {
|
|
67873
|
+
process.env[`${prefix}LICENSING`] = config.licensing;
|
|
67874
|
+
}
|
|
67837
67875
|
if (config.timezone) {
|
|
67838
67876
|
process.env[`${prefix}TIMEZONE`] = config.timezone;
|
|
67839
67877
|
process.env.TZ = config.timezone;
|
|
@@ -32,9 +32,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
32
32
|
));
|
|
33
33
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
34
34
|
|
|
35
|
-
// node_modules/.pnpm/@nx+web@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@
|
|
35
|
+
// node_modules/.pnpm/@nx+web@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@_kpwil2grszlqgcueycvzjzgebi/node_modules/@nx/web/src/utils/wait-for-port-open.js
|
|
36
36
|
var require_wait_for_port_open = __commonJS({
|
|
37
|
-
"node_modules/.pnpm/@nx+web@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@
|
|
37
|
+
"node_modules/.pnpm/@nx+web@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@_kpwil2grszlqgcueycvzjzgebi/node_modules/@nx/web/src/utils/wait-for-port-open.js"(exports2) {
|
|
38
38
|
"use strict";
|
|
39
39
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40
40
|
exports2.waitForPortOpen = waitForPortOpen2;
|
|
@@ -61436,6 +61436,22 @@ var init_find_workspace_root = __esm({
|
|
|
61436
61436
|
}
|
|
61437
61437
|
});
|
|
61438
61438
|
|
|
61439
|
+
// packages/config/src/constants.ts
|
|
61440
|
+
var STORM_DEFAULT_DOCS, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSING;
|
|
61441
|
+
var init_constants = __esm({
|
|
61442
|
+
"packages/config/src/constants.ts"() {
|
|
61443
|
+
STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
|
|
61444
|
+
STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
61445
|
+
STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
|
|
61446
|
+
}
|
|
61447
|
+
});
|
|
61448
|
+
|
|
61449
|
+
// packages/config/src/define-config.ts
|
|
61450
|
+
var init_define_config = __esm({
|
|
61451
|
+
"packages/config/src/define-config.ts"() {
|
|
61452
|
+
}
|
|
61453
|
+
});
|
|
61454
|
+
|
|
61439
61455
|
// node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/index.mjs
|
|
61440
61456
|
function setErrorMap(map) {
|
|
61441
61457
|
overrideErrorMap = map;
|
|
@@ -65353,9 +65369,10 @@ var DarkColorSchema, LightColorSchema, BrandColorSchema, Brand2ColorSchema, Bran
|
|
|
65353
65369
|
var init_schema = __esm({
|
|
65354
65370
|
"packages/config/src/schema.ts"() {
|
|
65355
65371
|
init_lib();
|
|
65372
|
+
init_constants();
|
|
65356
65373
|
DarkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#0D1017").describe("The dark background color of the workspace");
|
|
65357
65374
|
LightColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
65358
|
-
BrandColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#
|
|
65375
|
+
BrandColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#3fc1b0").describe("The primary brand specific color of the workspace");
|
|
65359
65376
|
Brand2ColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7434DB").describe("The secondary brand specific color of the workspace");
|
|
65360
65377
|
Brand3ColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#00C2CE").describe("The tertiary brand specific color of the workspace");
|
|
65361
65378
|
AccentColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The secondary brand specific color of the workspace");
|
|
@@ -65438,8 +65455,10 @@ var init_schema = __esm({
|
|
|
65438
65455
|
namespace: z2.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
65439
65456
|
organization: z2.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
65440
65457
|
repository: z2.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
65441
|
-
license: z2.string().trim().default("Apache
|
|
65442
|
-
homepage: z2.string().trim().url().default(
|
|
65458
|
+
license: z2.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
65459
|
+
homepage: z2.string().trim().url().default(STORM_DEFAULT_HOMEPAGE).describe("The homepage of the workspace"),
|
|
65460
|
+
docs: z2.string().trim().url().default(STORM_DEFAULT_DOCS).describe("The base documentation site for the workspace"),
|
|
65461
|
+
licensing: z2.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
65443
65462
|
branch: z2.string().trim().default("main").describe("The branch of the workspace"),
|
|
65444
65463
|
preid: z2.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
65445
65464
|
owner: z2.string().trim().default("@storm-software/development").describe("The owner of the package"),
|
|
@@ -65508,18 +65527,13 @@ var init_types = __esm({
|
|
|
65508
65527
|
}
|
|
65509
65528
|
});
|
|
65510
65529
|
|
|
65511
|
-
// packages/config/src/define-config.ts
|
|
65512
|
-
var init_define_config = __esm({
|
|
65513
|
-
"packages/config/src/define-config.ts"() {
|
|
65514
|
-
}
|
|
65515
|
-
});
|
|
65516
|
-
|
|
65517
65530
|
// packages/config/src/index.ts
|
|
65518
65531
|
var init_src = __esm({
|
|
65519
65532
|
"packages/config/src/index.ts"() {
|
|
65533
|
+
init_constants();
|
|
65534
|
+
init_define_config();
|
|
65520
65535
|
init_schema();
|
|
65521
65536
|
init_types();
|
|
65522
|
-
init_define_config();
|
|
65523
65537
|
}
|
|
65524
65538
|
});
|
|
65525
65539
|
|
|
@@ -65625,6 +65639,8 @@ var init_get_default_config = __esm({
|
|
|
65625
65639
|
repository,
|
|
65626
65640
|
license: license ?? DEFAULT_STORM_CONFIG.license,
|
|
65627
65641
|
homepage: homepage ?? DEFAULT_STORM_CONFIG.homepage,
|
|
65642
|
+
docs: `${homepage ?? DEFAULT_STORM_CONFIG.homepage}/docs`,
|
|
65643
|
+
licensing: `${homepage ?? DEFAULT_STORM_CONFIG.homepage}/licensing`,
|
|
65628
65644
|
extensions: {
|
|
65629
65645
|
...config.extensions
|
|
65630
65646
|
}
|
|
@@ -67716,6 +67732,8 @@ var init_get_env = __esm({
|
|
|
67716
67732
|
packageManager: process.env[`${prefix}PACKAGE_MANAGER`],
|
|
67717
67733
|
license: process.env[`${prefix}LICENSE`],
|
|
67718
67734
|
homepage: process.env[`${prefix}HOMEPAGE`],
|
|
67735
|
+
docs: process.env[`${prefix}DOCS`],
|
|
67736
|
+
licensing: process.env[`${prefix}LICENSING`],
|
|
67719
67737
|
timezone: process.env[`${prefix}TIMEZONE`] ?? process.env.TZ,
|
|
67720
67738
|
locale: process.env[`${prefix}LOCALE`] ?? process.env.LOCALE,
|
|
67721
67739
|
configFile: correctPaths(process.env[`${prefix}CONFIG_FILE`]),
|
|
@@ -67764,6 +67782,20 @@ var init_get_env = __esm({
|
|
|
67764
67782
|
},
|
|
67765
67783
|
{}
|
|
67766
67784
|
) : getThemeColorConfigEnv(prefix);
|
|
67785
|
+
if (config.docs === STORM_DEFAULT_DOCS) {
|
|
67786
|
+
if (config.homepage === STORM_DEFAULT_HOMEPAGE) {
|
|
67787
|
+
config.docs = `${STORM_DEFAULT_HOMEPAGE}/projects/${config.name}/docs`;
|
|
67788
|
+
} else {
|
|
67789
|
+
config.docs = `${config.homepage}/docs`;
|
|
67790
|
+
}
|
|
67791
|
+
}
|
|
67792
|
+
if (config.licensing === STORM_DEFAULT_LICENSING) {
|
|
67793
|
+
if (config.homepage === STORM_DEFAULT_HOMEPAGE) {
|
|
67794
|
+
config.licensing = `${STORM_DEFAULT_HOMEPAGE}/projects/${config.name}/licensing`;
|
|
67795
|
+
} else {
|
|
67796
|
+
config.licensing = `${config.homepage}/docs`;
|
|
67797
|
+
}
|
|
67798
|
+
}
|
|
67767
67799
|
const serializedConfig = process.env[`${prefix}CONFIG`];
|
|
67768
67800
|
if (serializedConfig) {
|
|
67769
67801
|
const parsed = JSON.parse(serializedConfig);
|
|
@@ -67881,6 +67913,12 @@ var init_set_env = __esm({
|
|
|
67881
67913
|
if (config.homepage) {
|
|
67882
67914
|
process.env[`${prefix}HOMEPAGE`] = config.homepage;
|
|
67883
67915
|
}
|
|
67916
|
+
if (config.docs) {
|
|
67917
|
+
process.env[`${prefix}DOCS`] = config.docs;
|
|
67918
|
+
}
|
|
67919
|
+
if (config.licensing) {
|
|
67920
|
+
process.env[`${prefix}LICENSING`] = config.licensing;
|
|
67921
|
+
}
|
|
67884
67922
|
if (config.timezone) {
|
|
67885
67923
|
process.env[`${prefix}TIMEZONE`] = config.timezone;
|
|
67886
67924
|
process.env.TZ = config.timezone;
|
|
@@ -427484,9 +427484,9 @@ var require_src = __commonJS({
|
|
|
427484
427484
|
}
|
|
427485
427485
|
});
|
|
427486
427486
|
|
|
427487
|
-
// node_modules/.pnpm/@nx+node@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+
|
|
427487
|
+
// node_modules/.pnpm/@nx+node@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers_3wzylaa46sj4mejru2qhs5efiy/node_modules/@nx/node/package.json
|
|
427488
427488
|
var require_package2 = __commonJS({
|
|
427489
|
-
"node_modules/.pnpm/@nx+node@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+
|
|
427489
|
+
"node_modules/.pnpm/@nx+node@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers_3wzylaa46sj4mejru2qhs5efiy/node_modules/@nx/node/package.json"(exports2, module2) {
|
|
427490
427490
|
module2.exports = {
|
|
427491
427491
|
name: "@nx/node",
|
|
427492
427492
|
version: "19.5.3",
|
|
@@ -427535,9 +427535,9 @@ var require_package2 = __commonJS({
|
|
|
427535
427535
|
}
|
|
427536
427536
|
});
|
|
427537
427537
|
|
|
427538
|
-
// node_modules/.pnpm/@nx+node@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+
|
|
427538
|
+
// node_modules/.pnpm/@nx+node@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers_3wzylaa46sj4mejru2qhs5efiy/node_modules/@nx/node/src/utils/versions.js
|
|
427539
427539
|
var require_versions2 = __commonJS({
|
|
427540
|
-
"node_modules/.pnpm/@nx+node@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+
|
|
427540
|
+
"node_modules/.pnpm/@nx+node@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers_3wzylaa46sj4mejru2qhs5efiy/node_modules/@nx/node/src/utils/versions.js"(exports2) {
|
|
427541
427541
|
"use strict";
|
|
427542
427542
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
427543
427543
|
exports2.axiosVersion = exports2.fastifyPluginVersion = exports2.fastifySensibleVersion = exports2.fastifyAutoloadVersion = exports2.fastifyVersion = exports2.koaTypingsVersion = exports2.koaVersion = exports2.expressTypingsVersion = exports2.expressVersion = exports2.typesNodeVersion = exports2.tslibVersion = exports2.nxVersion = void 0;
|
|
@@ -427561,7 +427561,7 @@ var require_package3 = __commonJS({
|
|
|
427561
427561
|
"packages/cloudflare-tools/package.json"(exports2, module2) {
|
|
427562
427562
|
module2.exports = {
|
|
427563
427563
|
name: "@storm-software/cloudflare-tools",
|
|
427564
|
-
version: "0.
|
|
427564
|
+
version: "0.29.0",
|
|
427565
427565
|
type: "commonjs",
|
|
427566
427566
|
description: "\u26A1The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.",
|
|
427567
427567
|
repository: {
|
|
@@ -427602,11 +427602,11 @@ var require_package3 = __commonJS({
|
|
|
427602
427602
|
"monorepo"
|
|
427603
427603
|
],
|
|
427604
427604
|
peerDependencies: {
|
|
427605
|
-
"@nx/devkit": "^19.5.
|
|
427605
|
+
"@nx/devkit": "^19.5.6",
|
|
427606
427606
|
"@nx/node": ">=19.5.0",
|
|
427607
427607
|
"@nx/web": ">=19.5.0",
|
|
427608
427608
|
"@nx/webpack": ">=19.5.0",
|
|
427609
|
-
nx: "^19.5.
|
|
427609
|
+
nx: "^19.5.6",
|
|
427610
427610
|
wrangler: ">=3.58.0"
|
|
427611
427611
|
},
|
|
427612
427612
|
peerDependenciesMeta: {
|
|
@@ -427634,11 +427634,11 @@ var require_package3 = __commonJS({
|
|
|
427634
427634
|
"jest-resolve": "29.7.0"
|
|
427635
427635
|
},
|
|
427636
427636
|
devDependencies: {
|
|
427637
|
-
"@nx/devkit": "^19.5.
|
|
427637
|
+
"@nx/devkit": "^19.5.6",
|
|
427638
427638
|
"@nx/node": ">=19.5.0",
|
|
427639
427639
|
"@nx/web": ">=19.5.0",
|
|
427640
427640
|
"@nx/webpack": ">=19.5.0",
|
|
427641
|
-
nx: "^19.5.
|
|
427641
|
+
nx: "^19.5.6",
|
|
427642
427642
|
wrangler: ">=3.58.0"
|
|
427643
427643
|
},
|
|
427644
427644
|
publishConfig: {
|