@storm-software/cloudflare-tools 0.55.39 → 0.55.41

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.
Files changed (43) hide show
  1. package/CHANGELOG.md +172 -75
  2. package/README.md +7 -7
  3. package/dist/{chunk-ZBM3I5Z7.mjs → chunk-2GWCBDS7.mjs} +4 -4
  4. package/dist/{chunk-Y3XZCCPP.mjs → chunk-3HMZSKJD.mjs} +1 -1
  5. package/dist/{chunk-J22YL4DC.mjs → chunk-BV5FWJGL.mjs} +2 -2
  6. package/dist/{chunk-HZON5W3G.js → chunk-FK6PN2T3.js} +42 -14
  7. package/dist/{chunk-KLCTLDIH.js → chunk-H2ML72QF.js} +91 -47
  8. package/dist/{chunk-I6XBWBZN.js → chunk-HF5FM2V2.js} +3 -3
  9. package/dist/{chunk-B6ZQTLTY.js → chunk-IA5NNUZK.js} +1 -1
  10. package/dist/{chunk-FSZS6NDT.js → chunk-JF2LLENH.js} +12 -12
  11. package/dist/{chunk-HWRWRM5W.mjs → chunk-LEXIFHU6.mjs} +2 -2
  12. package/dist/{chunk-QD7ZKWKB.mjs → chunk-M4FHQYTZ.mjs} +43 -15
  13. package/dist/{chunk-MVGAJ7Q4.js → chunk-MCQ4YOON.js} +16 -16
  14. package/dist/{chunk-VAVNPHSE.mjs → chunk-MESLYSHV.mjs} +52 -8
  15. package/dist/{chunk-XYJVYVYX.js → chunk-NGA2REMH.js} +488 -570
  16. package/dist/{chunk-MBAVTLIK.mjs → chunk-PDLA5ACW.mjs} +327 -409
  17. package/dist/{chunk-5OCPVWBL.mjs → chunk-S3S7EN37.mjs} +5 -5
  18. package/dist/{chunk-PDHMNSTI.mjs → chunk-VNLZQQ5C.mjs} +2 -2
  19. package/dist/{chunk-KFNKJP2U.mjs → chunk-YYEF6TFG.mjs} +1 -1
  20. package/dist/executors.js +5 -5
  21. package/dist/executors.mjs +8 -8
  22. package/dist/generators.js +5 -5
  23. package/dist/generators.mjs +5 -5
  24. package/dist/index.js +8 -8
  25. package/dist/index.mjs +10 -10
  26. package/dist/src/executors/cloudflare-publish/executor.js +3 -3
  27. package/dist/src/executors/cloudflare-publish/executor.mjs +6 -6
  28. package/dist/src/executors/r2-upload-publish/executor.js +5 -5
  29. package/dist/src/executors/r2-upload-publish/executor.mjs +6 -6
  30. package/dist/src/executors/serve/executor.d.mts +67 -3
  31. package/dist/src/executors/serve/executor.d.ts +67 -3
  32. package/dist/src/executors/serve/executor.js +4 -4
  33. package/dist/src/executors/serve/executor.mjs +5 -5
  34. package/dist/src/generators/init/generator.js +2 -2
  35. package/dist/src/generators/init/generator.mjs +2 -2
  36. package/dist/src/generators/worker/generator.js +5 -5
  37. package/dist/src/generators/worker/generator.mjs +5 -5
  38. package/dist/src/utils/index.js +3 -3
  39. package/dist/src/utils/index.mjs +3 -3
  40. package/dist/src/utils/r2-bucket-helpers.js +3 -3
  41. package/dist/src/utils/r2-bucket-helpers.mjs +3 -3
  42. package/dist/tsup.config.mjs +1 -1
  43. package/package.json +11 -11
@@ -1,24 +1,24 @@
1
1
  import {
2
2
  getInternalDependencies,
3
3
  r2UploadFile
4
- } from "./chunk-HWRWRM5W.mjs";
4
+ } from "./chunk-LEXIFHU6.mjs";
5
5
  import {
6
6
  createCliOptions,
7
7
  getPackageInfo
8
- } from "./chunk-KFNKJP2U.mjs";
8
+ } from "./chunk-YYEF6TFG.mjs";
9
9
  import {
10
10
  getConfig
11
- } from "./chunk-VAVNPHSE.mjs";
11
+ } from "./chunk-MESLYSHV.mjs";
12
12
  import {
13
13
  findWorkspaceRoot,
14
14
  writeDebug,
15
15
  writeInfo,
16
16
  writeSuccess,
17
17
  writeWarning
18
- } from "./chunk-QD7ZKWKB.mjs";
18
+ } from "./chunk-M4FHQYTZ.mjs";
19
19
  import {
20
20
  __name
21
- } from "./chunk-Y3XZCCPP.mjs";
21
+ } from "./chunk-3HMZSKJD.mjs";
22
22
 
23
23
  // src/executors/r2-upload-publish/executor.ts
24
24
  import { S3 } from "@aws-sdk/client-s3";
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  createCliOptions
3
- } from "./chunk-KFNKJP2U.mjs";
3
+ } from "./chunk-YYEF6TFG.mjs";
4
4
  import {
5
5
  __name,
6
6
  __require
7
- } from "./chunk-Y3XZCCPP.mjs";
7
+ } from "./chunk-3HMZSKJD.mjs";
8
8
 
9
9
  // src/executors/cloudflare-publish/executor.ts
10
10
  import { joinPathFragments } from "@nx/devkit";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  __name
3
- } from "./chunk-Y3XZCCPP.mjs";
3
+ } from "./chunk-3HMZSKJD.mjs";
4
4
 
5
5
  // ../workspace-tools/src/utils/create-cli-options.ts
6
6
  import { names } from "@nx/devkit";
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-XYJVYVYX.js');
4
- require('./chunk-MVGAJ7Q4.js');
5
- require('./chunk-I6XBWBZN.js');
3
+ require('./chunk-NGA2REMH.js');
4
+ require('./chunk-MCQ4YOON.js');
5
+ require('./chunk-HF5FM2V2.js');
6
6
  require('./chunk-VTHBMY4B.js');
7
- require('./chunk-KLCTLDIH.js');
8
- require('./chunk-HZON5W3G.js');
7
+ require('./chunk-H2ML72QF.js');
8
+ require('./chunk-FK6PN2T3.js');
9
9
  require('./chunk-J5SB6L2L.js');
@@ -1,9 +1,9 @@
1
1
  import "./chunk-YSCEY447.mjs";
2
- import "./chunk-PDHMNSTI.mjs";
3
- import "./chunk-MBAVTLIK.mjs";
4
- import "./chunk-5OCPVWBL.mjs";
5
- import "./chunk-HWRWRM5W.mjs";
6
- import "./chunk-KFNKJP2U.mjs";
7
- import "./chunk-VAVNPHSE.mjs";
8
- import "./chunk-QD7ZKWKB.mjs";
9
- import "./chunk-Y3XZCCPP.mjs";
2
+ import "./chunk-VNLZQQ5C.mjs";
3
+ import "./chunk-PDLA5ACW.mjs";
4
+ import "./chunk-S3S7EN37.mjs";
5
+ import "./chunk-LEXIFHU6.mjs";
6
+ import "./chunk-YYEF6TFG.mjs";
7
+ import "./chunk-MESLYSHV.mjs";
8
+ import "./chunk-M4FHQYTZ.mjs";
9
+ import "./chunk-3HMZSKJD.mjs";
@@ -2,17 +2,17 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkFSZS6NDTjs = require('./chunk-FSZS6NDT.js');
5
+ var _chunkJF2LLENHjs = require('./chunk-JF2LLENH.js');
6
6
 
7
7
 
8
8
 
9
- var _chunkB6ZQTLTYjs = require('./chunk-B6ZQTLTY.js');
10
- require('./chunk-KLCTLDIH.js');
11
- require('./chunk-HZON5W3G.js');
9
+ var _chunkIA5NNUZKjs = require('./chunk-IA5NNUZK.js');
10
+ require('./chunk-H2ML72QF.js');
11
+ require('./chunk-FK6PN2T3.js');
12
12
  require('./chunk-J5SB6L2L.js');
13
13
 
14
14
 
15
15
 
16
16
 
17
17
 
18
- exports.applicationGenerator = _chunkFSZS6NDTjs.applicationGenerator; exports.applicationSchematic = _chunkFSZS6NDTjs.applicationSchematic; exports.initGenerator = _chunkB6ZQTLTYjs.initGenerator; exports.initSchematic = _chunkB6ZQTLTYjs.initSchematic;
18
+ exports.applicationGenerator = _chunkJF2LLENHjs.applicationGenerator; exports.applicationSchematic = _chunkJF2LLENHjs.applicationSchematic; exports.initGenerator = _chunkIA5NNUZKjs.initGenerator; exports.initSchematic = _chunkIA5NNUZKjs.initSchematic;
@@ -2,14 +2,14 @@ import "./chunk-3J7KBHMJ.mjs";
2
2
  import {
3
3
  applicationGenerator,
4
4
  applicationSchematic
5
- } from "./chunk-ZBM3I5Z7.mjs";
5
+ } from "./chunk-2GWCBDS7.mjs";
6
6
  import {
7
7
  initGenerator,
8
8
  initSchematic
9
- } from "./chunk-J22YL4DC.mjs";
10
- import "./chunk-VAVNPHSE.mjs";
11
- import "./chunk-QD7ZKWKB.mjs";
12
- import "./chunk-Y3XZCCPP.mjs";
9
+ } from "./chunk-BV5FWJGL.mjs";
10
+ import "./chunk-MESLYSHV.mjs";
11
+ import "./chunk-M4FHQYTZ.mjs";
12
+ import "./chunk-3HMZSKJD.mjs";
13
13
  export {
14
14
  applicationGenerator,
15
15
  applicationSchematic,
package/dist/index.js CHANGED
@@ -3,25 +3,25 @@ require('./chunk-DHBG5ASJ.js');
3
3
 
4
4
 
5
5
 
6
- var _chunkFSZS6NDTjs = require('./chunk-FSZS6NDT.js');
6
+ var _chunkJF2LLENHjs = require('./chunk-JF2LLENH.js');
7
7
 
8
8
 
9
9
 
10
- var _chunkB6ZQTLTYjs = require('./chunk-B6ZQTLTY.js');
10
+ var _chunkIA5NNUZKjs = require('./chunk-IA5NNUZK.js');
11
11
  require('./chunk-CVGPWUNP.js');
12
12
  require('./chunk-R7AIVBS7.js');
13
- require('./chunk-XYJVYVYX.js');
14
- require('./chunk-MVGAJ7Q4.js');
13
+ require('./chunk-NGA2REMH.js');
14
+ require('./chunk-MCQ4YOON.js');
15
15
 
16
16
 
17
17
 
18
- var _chunkI6XBWBZNjs = require('./chunk-I6XBWBZN.js');
18
+ var _chunkHF5FM2V2js = require('./chunk-HF5FM2V2.js');
19
19
 
20
20
 
21
21
 
22
22
  var _chunkVTHBMY4Bjs = require('./chunk-VTHBMY4B.js');
23
- require('./chunk-KLCTLDIH.js');
24
- require('./chunk-HZON5W3G.js');
23
+ require('./chunk-H2ML72QF.js');
24
+ require('./chunk-FK6PN2T3.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 = _chunkFSZS6NDTjs.applicationGenerator; exports.applicationSchematic = _chunkFSZS6NDTjs.applicationSchematic; exports.createNodes = createNodes; exports.getInternalDependencies = _chunkI6XBWBZNjs.getInternalDependencies; exports.initGenerator = _chunkB6ZQTLTYjs.initGenerator; exports.initSchematic = _chunkB6ZQTLTYjs.initSchematic; exports.name = name; exports.r2UploadFile = _chunkI6XBWBZNjs.r2UploadFile;
151
+ exports.applicationGenerator = _chunkJF2LLENHjs.applicationGenerator; exports.applicationSchematic = _chunkJF2LLENHjs.applicationSchematic; exports.createNodes = createNodes; exports.getInternalDependencies = _chunkHF5FM2V2js.getInternalDependencies; exports.initGenerator = _chunkIA5NNUZKjs.initGenerator; exports.initSchematic = _chunkIA5NNUZKjs.initSchematic; exports.name = name; exports.r2UploadFile = _chunkHF5FM2V2js.r2UploadFile;
package/dist/index.mjs CHANGED
@@ -3,28 +3,28 @@ import "./chunk-3J7KBHMJ.mjs";
3
3
  import {
4
4
  applicationGenerator,
5
5
  applicationSchematic
6
- } from "./chunk-ZBM3I5Z7.mjs";
6
+ } from "./chunk-2GWCBDS7.mjs";
7
7
  import {
8
8
  initGenerator,
9
9
  initSchematic
10
- } from "./chunk-J22YL4DC.mjs";
10
+ } from "./chunk-BV5FWJGL.mjs";
11
11
  import "./chunk-7Z5PILRU.mjs";
12
- import "./chunk-PDHMNSTI.mjs";
13
- import "./chunk-MBAVTLIK.mjs";
14
- import "./chunk-5OCPVWBL.mjs";
12
+ import "./chunk-VNLZQQ5C.mjs";
13
+ import "./chunk-PDLA5ACW.mjs";
14
+ import "./chunk-S3S7EN37.mjs";
15
15
  import {
16
16
  getInternalDependencies,
17
17
  r2UploadFile
18
- } from "./chunk-HWRWRM5W.mjs";
18
+ } from "./chunk-LEXIFHU6.mjs";
19
19
  import {
20
20
  ProjectTagConstants,
21
21
  addProjectTag
22
- } from "./chunk-KFNKJP2U.mjs";
23
- import "./chunk-VAVNPHSE.mjs";
24
- import "./chunk-QD7ZKWKB.mjs";
22
+ } from "./chunk-YYEF6TFG.mjs";
23
+ import "./chunk-MESLYSHV.mjs";
24
+ import "./chunk-M4FHQYTZ.mjs";
25
25
  import {
26
26
  __name
27
- } from "./chunk-Y3XZCCPP.mjs";
27
+ } from "./chunk-3HMZSKJD.mjs";
28
28
 
29
29
  // src/plugins/index.ts
30
30
  import { existsSync } from "node:fs";
@@ -1,10 +1,10 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
  var _chunkR7AIVBS7js = require('../../../chunk-R7AIVBS7.js');
4
- require('../../../chunk-XYJVYVYX.js');
4
+ require('../../../chunk-NGA2REMH.js');
5
5
  require('../../../chunk-VTHBMY4B.js');
6
- require('../../../chunk-KLCTLDIH.js');
7
- require('../../../chunk-HZON5W3G.js');
6
+ require('../../../chunk-H2ML72QF.js');
7
+ require('../../../chunk-FK6PN2T3.js');
8
8
  require('../../../chunk-J5SB6L2L.js');
9
9
 
10
10
 
@@ -1,11 +1,11 @@
1
1
  import {
2
2
  runExecutor
3
- } from "../../../chunk-PDHMNSTI.mjs";
4
- import "../../../chunk-MBAVTLIK.mjs";
5
- import "../../../chunk-KFNKJP2U.mjs";
6
- import "../../../chunk-VAVNPHSE.mjs";
7
- import "../../../chunk-QD7ZKWKB.mjs";
8
- import "../../../chunk-Y3XZCCPP.mjs";
3
+ } from "../../../chunk-VNLZQQ5C.mjs";
4
+ import "../../../chunk-PDLA5ACW.mjs";
5
+ import "../../../chunk-YYEF6TFG.mjs";
6
+ import "../../../chunk-MESLYSHV.mjs";
7
+ import "../../../chunk-M4FHQYTZ.mjs";
8
+ import "../../../chunk-3HMZSKJD.mjs";
9
9
  export {
10
10
  runExecutor as default
11
11
  };
@@ -1,11 +1,11 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkMVGAJ7Q4js = require('../../../chunk-MVGAJ7Q4.js');
4
- require('../../../chunk-I6XBWBZN.js');
3
+ var _chunkMCQ4YOONjs = require('../../../chunk-MCQ4YOON.js');
4
+ require('../../../chunk-HF5FM2V2.js');
5
5
  require('../../../chunk-VTHBMY4B.js');
6
- require('../../../chunk-KLCTLDIH.js');
7
- require('../../../chunk-HZON5W3G.js');
6
+ require('../../../chunk-H2ML72QF.js');
7
+ require('../../../chunk-FK6PN2T3.js');
8
8
  require('../../../chunk-J5SB6L2L.js');
9
9
 
10
10
 
11
- exports.default = _chunkMVGAJ7Q4js.runExecutor;
11
+ exports.default = _chunkMCQ4YOONjs.runExecutor;
@@ -1,11 +1,11 @@
1
1
  import {
2
2
  runExecutor
3
- } from "../../../chunk-5OCPVWBL.mjs";
4
- import "../../../chunk-HWRWRM5W.mjs";
5
- import "../../../chunk-KFNKJP2U.mjs";
6
- import "../../../chunk-VAVNPHSE.mjs";
7
- import "../../../chunk-QD7ZKWKB.mjs";
8
- import "../../../chunk-Y3XZCCPP.mjs";
3
+ } from "../../../chunk-S3S7EN37.mjs";
4
+ import "../../../chunk-LEXIFHU6.mjs";
5
+ import "../../../chunk-YYEF6TFG.mjs";
6
+ import "../../../chunk-MESLYSHV.mjs";
7
+ import "../../../chunk-M4FHQYTZ.mjs";
8
+ import "../../../chunk-3HMZSKJD.mjs";
9
9
  export {
10
10
  runExecutor as default
11
11
  };
@@ -15,6 +15,7 @@ declare const StormConfigSchema: z.ZodObject<{
15
15
  homepage: z.ZodDefault<z.ZodString>;
16
16
  docs: z.ZodDefault<z.ZodString>;
17
17
  licensing: z.ZodDefault<z.ZodString>;
18
+ contact: z.ZodDefault<z.ZodString>;
18
19
  branch: z.ZodDefault<z.ZodString>;
19
20
  preid: z.ZodOptional<z.ZodString>;
20
21
  owner: z.ZodDefault<z.ZodString>;
@@ -28,7 +29,42 @@ declare const StormConfigSchema: z.ZodObject<{
28
29
  name?: string | undefined;
29
30
  email?: string | undefined;
30
31
  }>;
31
- env: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
32
+ release: z.ZodObject<{
33
+ banner: z.ZodDefault<z.ZodString>;
34
+ header: z.ZodOptional<z.ZodString>;
35
+ footer: z.ZodDefault<z.ZodString>;
36
+ }, "strip", z.ZodTypeAny, {
37
+ banner: string;
38
+ footer: string;
39
+ header?: string | undefined;
40
+ }, {
41
+ banner?: string | undefined;
42
+ header?: string | undefined;
43
+ footer?: string | undefined;
44
+ }>;
45
+ account: z.ZodObject<{
46
+ twitter: z.ZodDefault<z.ZodString>;
47
+ discord: z.ZodDefault<z.ZodString>;
48
+ telegram: z.ZodDefault<z.ZodString>;
49
+ slack: z.ZodDefault<z.ZodString>;
50
+ medium: z.ZodDefault<z.ZodString>;
51
+ github: z.ZodDefault<z.ZodString>;
52
+ }, "strip", z.ZodTypeAny, {
53
+ github: string;
54
+ twitter: string;
55
+ discord: string;
56
+ telegram: string;
57
+ slack: string;
58
+ medium: string;
59
+ }, {
60
+ github?: string | undefined;
61
+ twitter?: string | undefined;
62
+ discord?: string | undefined;
63
+ telegram?: string | undefined;
64
+ slack?: string | undefined;
65
+ medium?: string | undefined;
66
+ }>;
67
+ mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
32
68
  workspaceRoot: z.ZodDefault<z.ZodString>;
33
69
  externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
34
70
  skipCache: z.ZodDefault<z.ZodBoolean>;
@@ -801,13 +837,27 @@ declare const StormConfigSchema: z.ZodObject<{
801
837
  homepage: string;
802
838
  docs: string;
803
839
  licensing: string;
840
+ contact: string;
804
841
  branch: string;
805
842
  owner: string;
806
843
  bot: {
807
844
  name: string;
808
845
  email: string;
809
846
  };
810
- env: "development" | "staging" | "production";
847
+ release: {
848
+ banner: string;
849
+ footer: string;
850
+ header?: string | undefined;
851
+ };
852
+ account: {
853
+ github: string;
854
+ twitter: string;
855
+ discord: string;
856
+ telegram: string;
857
+ slack: string;
858
+ medium: string;
859
+ };
860
+ mode: "development" | "staging" | "production";
811
861
  workspaceRoot: string;
812
862
  externalPackagePatterns: string[];
813
863
  skipCache: boolean;
@@ -991,6 +1041,19 @@ declare const StormConfigSchema: z.ZodObject<{
991
1041
  name?: string | undefined;
992
1042
  email?: string | undefined;
993
1043
  };
1044
+ release: {
1045
+ banner?: string | undefined;
1046
+ header?: string | undefined;
1047
+ footer?: string | undefined;
1048
+ };
1049
+ account: {
1050
+ github?: string | undefined;
1051
+ twitter?: string | undefined;
1052
+ discord?: string | undefined;
1053
+ telegram?: string | undefined;
1054
+ slack?: string | undefined;
1055
+ medium?: string | undefined;
1056
+ };
994
1057
  directories: {
995
1058
  cache?: string | undefined;
996
1059
  data?: string | undefined;
@@ -1156,10 +1219,11 @@ declare const StormConfigSchema: z.ZodObject<{
1156
1219
  homepage?: string | undefined;
1157
1220
  docs?: string | undefined;
1158
1221
  licensing?: string | undefined;
1222
+ contact?: string | undefined;
1159
1223
  branch?: string | undefined;
1160
1224
  preid?: string | undefined;
1161
1225
  owner?: string | undefined;
1162
- env?: "development" | "staging" | "production" | undefined;
1226
+ mode?: "development" | "staging" | "production" | undefined;
1163
1227
  workspaceRoot?: string | undefined;
1164
1228
  externalPackagePatterns?: string[] | undefined;
1165
1229
  skipCache?: boolean | undefined;
@@ -15,6 +15,7 @@ declare const StormConfigSchema: z.ZodObject<{
15
15
  homepage: z.ZodDefault<z.ZodString>;
16
16
  docs: z.ZodDefault<z.ZodString>;
17
17
  licensing: z.ZodDefault<z.ZodString>;
18
+ contact: z.ZodDefault<z.ZodString>;
18
19
  branch: z.ZodDefault<z.ZodString>;
19
20
  preid: z.ZodOptional<z.ZodString>;
20
21
  owner: z.ZodDefault<z.ZodString>;
@@ -28,7 +29,42 @@ declare const StormConfigSchema: z.ZodObject<{
28
29
  name?: string | undefined;
29
30
  email?: string | undefined;
30
31
  }>;
31
- env: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
32
+ release: z.ZodObject<{
33
+ banner: z.ZodDefault<z.ZodString>;
34
+ header: z.ZodOptional<z.ZodString>;
35
+ footer: z.ZodDefault<z.ZodString>;
36
+ }, "strip", z.ZodTypeAny, {
37
+ banner: string;
38
+ footer: string;
39
+ header?: string | undefined;
40
+ }, {
41
+ banner?: string | undefined;
42
+ header?: string | undefined;
43
+ footer?: string | undefined;
44
+ }>;
45
+ account: z.ZodObject<{
46
+ twitter: z.ZodDefault<z.ZodString>;
47
+ discord: z.ZodDefault<z.ZodString>;
48
+ telegram: z.ZodDefault<z.ZodString>;
49
+ slack: z.ZodDefault<z.ZodString>;
50
+ medium: z.ZodDefault<z.ZodString>;
51
+ github: z.ZodDefault<z.ZodString>;
52
+ }, "strip", z.ZodTypeAny, {
53
+ github: string;
54
+ twitter: string;
55
+ discord: string;
56
+ telegram: string;
57
+ slack: string;
58
+ medium: string;
59
+ }, {
60
+ github?: string | undefined;
61
+ twitter?: string | undefined;
62
+ discord?: string | undefined;
63
+ telegram?: string | undefined;
64
+ slack?: string | undefined;
65
+ medium?: string | undefined;
66
+ }>;
67
+ mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
32
68
  workspaceRoot: z.ZodDefault<z.ZodString>;
33
69
  externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
34
70
  skipCache: z.ZodDefault<z.ZodBoolean>;
@@ -801,13 +837,27 @@ declare const StormConfigSchema: z.ZodObject<{
801
837
  homepage: string;
802
838
  docs: string;
803
839
  licensing: string;
840
+ contact: string;
804
841
  branch: string;
805
842
  owner: string;
806
843
  bot: {
807
844
  name: string;
808
845
  email: string;
809
846
  };
810
- env: "development" | "staging" | "production";
847
+ release: {
848
+ banner: string;
849
+ footer: string;
850
+ header?: string | undefined;
851
+ };
852
+ account: {
853
+ github: string;
854
+ twitter: string;
855
+ discord: string;
856
+ telegram: string;
857
+ slack: string;
858
+ medium: string;
859
+ };
860
+ mode: "development" | "staging" | "production";
811
861
  workspaceRoot: string;
812
862
  externalPackagePatterns: string[];
813
863
  skipCache: boolean;
@@ -991,6 +1041,19 @@ declare const StormConfigSchema: z.ZodObject<{
991
1041
  name?: string | undefined;
992
1042
  email?: string | undefined;
993
1043
  };
1044
+ release: {
1045
+ banner?: string | undefined;
1046
+ header?: string | undefined;
1047
+ footer?: string | undefined;
1048
+ };
1049
+ account: {
1050
+ github?: string | undefined;
1051
+ twitter?: string | undefined;
1052
+ discord?: string | undefined;
1053
+ telegram?: string | undefined;
1054
+ slack?: string | undefined;
1055
+ medium?: string | undefined;
1056
+ };
994
1057
  directories: {
995
1058
  cache?: string | undefined;
996
1059
  data?: string | undefined;
@@ -1156,10 +1219,11 @@ declare const StormConfigSchema: z.ZodObject<{
1156
1219
  homepage?: string | undefined;
1157
1220
  docs?: string | undefined;
1158
1221
  licensing?: string | undefined;
1222
+ contact?: string | undefined;
1159
1223
  branch?: string | undefined;
1160
1224
  preid?: string | undefined;
1161
1225
  owner?: string | undefined;
1162
- env?: "development" | "staging" | "production" | undefined;
1226
+ mode?: "development" | "staging" | "production" | undefined;
1163
1227
  workspaceRoot?: string | undefined;
1164
1228
  externalPackagePatterns?: string[] | undefined;
1165
1229
  skipCache?: boolean | undefined;
@@ -1,11 +1,11 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
2
2
 
3
- var _chunkXYJVYVYXjs = require('../../../chunk-XYJVYVYX.js');
3
+ var _chunkNGA2REMHjs = require('../../../chunk-NGA2REMH.js');
4
4
 
5
5
 
6
6
  var _chunkVTHBMY4Bjs = require('../../../chunk-VTHBMY4B.js');
7
- require('../../../chunk-KLCTLDIH.js');
8
- require('../../../chunk-HZON5W3G.js');
7
+ require('../../../chunk-H2ML72QF.js');
8
+ require('../../../chunk-FK6PN2T3.js');
9
9
 
10
10
 
11
11
 
@@ -60,7 +60,7 @@ async function* serveExecutor(options, context, config) {
60
60
  };
61
61
  }
62
62
  _chunkJ5SB6L2Ljs.__name.call(void 0, serveExecutor, "serveExecutor");
63
- var executor_default = _chunkXYJVYVYXjs.withRunExecutor.call(void 0, "Cloudflare Serve executor", serveExecutor, {
63
+ var executor_default = _chunkNGA2REMHjs.withRunExecutor.call(void 0, "Cloudflare Serve executor", serveExecutor, {
64
64
  skipReadingConfig: false,
65
65
  hooks: {
66
66
  applyDefaultOptions: /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, (options) => {
@@ -1,15 +1,15 @@
1
1
  import {
2
2
  withRunExecutor
3
- } from "../../../chunk-MBAVTLIK.mjs";
3
+ } from "../../../chunk-PDLA5ACW.mjs";
4
4
  import {
5
5
  createCliOptions
6
- } from "../../../chunk-KFNKJP2U.mjs";
7
- import "../../../chunk-VAVNPHSE.mjs";
8
- import "../../../chunk-QD7ZKWKB.mjs";
6
+ } from "../../../chunk-YYEF6TFG.mjs";
7
+ import "../../../chunk-MESLYSHV.mjs";
8
+ import "../../../chunk-M4FHQYTZ.mjs";
9
9
  import {
10
10
  __name,
11
11
  __require
12
- } from "../../../chunk-Y3XZCCPP.mjs";
12
+ } from "../../../chunk-3HMZSKJD.mjs";
13
13
 
14
14
  // src/executors/serve/executor.ts
15
15
  import { createAsyncIterable } from "@nx/devkit/src/utils/async-iterable";
@@ -2,10 +2,10 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkB6ZQTLTYjs = require('../../../chunk-B6ZQTLTY.js');
5
+ var _chunkIA5NNUZKjs = require('../../../chunk-IA5NNUZK.js');
6
6
  require('../../../chunk-J5SB6L2L.js');
7
7
 
8
8
 
9
9
 
10
10
 
11
- exports.default = _chunkB6ZQTLTYjs.generator_default; exports.initGenerator = _chunkB6ZQTLTYjs.initGenerator; exports.initSchematic = _chunkB6ZQTLTYjs.initSchematic;
11
+ exports.default = _chunkIA5NNUZKjs.generator_default; exports.initGenerator = _chunkIA5NNUZKjs.initGenerator; exports.initSchematic = _chunkIA5NNUZKjs.initSchematic;
@@ -2,8 +2,8 @@ import {
2
2
  generator_default,
3
3
  initGenerator,
4
4
  initSchematic
5
- } from "../../../chunk-J22YL4DC.mjs";
6
- import "../../../chunk-Y3XZCCPP.mjs";
5
+ } from "../../../chunk-BV5FWJGL.mjs";
6
+ import "../../../chunk-3HMZSKJD.mjs";
7
7
  export {
8
8
  generator_default as default,
9
9
  initGenerator,
@@ -2,13 +2,13 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkFSZS6NDTjs = require('../../../chunk-FSZS6NDT.js');
6
- require('../../../chunk-B6ZQTLTY.js');
7
- require('../../../chunk-KLCTLDIH.js');
8
- require('../../../chunk-HZON5W3G.js');
5
+ var _chunkJF2LLENHjs = require('../../../chunk-JF2LLENH.js');
6
+ require('../../../chunk-IA5NNUZK.js');
7
+ require('../../../chunk-H2ML72QF.js');
8
+ require('../../../chunk-FK6PN2T3.js');
9
9
  require('../../../chunk-J5SB6L2L.js');
10
10
 
11
11
 
12
12
 
13
13
 
14
- exports.applicationGenerator = _chunkFSZS6NDTjs.applicationGenerator; exports.applicationSchematic = _chunkFSZS6NDTjs.applicationSchematic; exports.default = _chunkFSZS6NDTjs.generator_default;
14
+ exports.applicationGenerator = _chunkJF2LLENHjs.applicationGenerator; exports.applicationSchematic = _chunkJF2LLENHjs.applicationSchematic; exports.default = _chunkJF2LLENHjs.generator_default;
@@ -2,11 +2,11 @@ import {
2
2
  applicationGenerator,
3
3
  applicationSchematic,
4
4
  generator_default
5
- } from "../../../chunk-ZBM3I5Z7.mjs";
6
- import "../../../chunk-J22YL4DC.mjs";
7
- import "../../../chunk-VAVNPHSE.mjs";
8
- import "../../../chunk-QD7ZKWKB.mjs";
9
- import "../../../chunk-Y3XZCCPP.mjs";
5
+ } from "../../../chunk-2GWCBDS7.mjs";
6
+ import "../../../chunk-BV5FWJGL.mjs";
7
+ import "../../../chunk-MESLYSHV.mjs";
8
+ import "../../../chunk-M4FHQYTZ.mjs";
9
+ import "../../../chunk-3HMZSKJD.mjs";
10
10
  export {
11
11
  applicationGenerator,
12
12
  applicationSchematic,
@@ -2,10 +2,10 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkI6XBWBZNjs = require('../../chunk-I6XBWBZN.js');
6
- require('../../chunk-HZON5W3G.js');
5
+ var _chunkHF5FM2V2js = require('../../chunk-HF5FM2V2.js');
6
+ require('../../chunk-FK6PN2T3.js');
7
7
  require('../../chunk-J5SB6L2L.js');
8
8
 
9
9
 
10
10
 
11
- exports.getInternalDependencies = _chunkI6XBWBZNjs.getInternalDependencies; exports.r2UploadFile = _chunkI6XBWBZNjs.r2UploadFile;
11
+ exports.getInternalDependencies = _chunkHF5FM2V2js.getInternalDependencies; exports.r2UploadFile = _chunkHF5FM2V2js.r2UploadFile;
@@ -2,9 +2,9 @@ import "../../chunk-7Z5PILRU.mjs";
2
2
  import {
3
3
  getInternalDependencies,
4
4
  r2UploadFile
5
- } from "../../chunk-HWRWRM5W.mjs";
6
- import "../../chunk-QD7ZKWKB.mjs";
7
- import "../../chunk-Y3XZCCPP.mjs";
5
+ } from "../../chunk-LEXIFHU6.mjs";
6
+ import "../../chunk-M4FHQYTZ.mjs";
7
+ import "../../chunk-3HMZSKJD.mjs";
8
8
  export {
9
9
  getInternalDependencies,
10
10
  r2UploadFile