@storm-software/cloudflare-tools 0.71.10 → 0.71.12

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 CHANGED
@@ -2,6 +2,32 @@
2
2
 
3
3
  # Changelog for Storm Ops - Cloudflare Tools
4
4
 
5
+ ## [0.71.11](https://github.com/storm-software/storm-ops/releases/tag/cloudflare-tools%400.71.11) (12/08/2025)
6
+
7
+ ### Bug Fixes
8
+
9
+ - **cloudflare-tools:** Resolve issue with invalid defaulting in
10
+ `r2-upload-publish` executor
11
+ ([ff000acd4](https://github.com/storm-software/storm-ops/commit/ff000acd4))
12
+
13
+ ## [0.71.10](https://github.com/storm-software/storm-ops/releases/tag/cloudflare-tools%400.71.10) (12/08/2025)
14
+
15
+ ### Miscellaneous
16
+
17
+ - **cloudflare-tools:** Changed env names to align with standards
18
+ ([0cacf1cb7](https://github.com/storm-software/storm-ops/commit/0cacf1cb7))
19
+ - **cloudflare-tools:** Update `r2-upload-publish` executor envs
20
+ ([bc0baabca](https://github.com/storm-software/storm-ops/commit/bc0baabca))
21
+ - **cloudflare-tools:** Added `STORM_BOT` env usage to `r2-upload-publish`
22
+ executor
23
+ ([8f073abdc](https://github.com/storm-software/storm-ops/commit/8f073abdc))
24
+
25
+ ### Updated Dependencies
26
+
27
+ - Updated **workspace-tools** to **v1.294.4**
28
+ - Updated **config-tools** to **v1.188.60**
29
+ - Updated **config** to **v1.134.60**
30
+
5
31
  ## [0.71.9](https://github.com/storm-software/storm-ops/releases/tag/cloudflare-tools%400.71.9) (12/06/2025)
6
32
 
7
33
  ### Miscellaneous
@@ -1,6 +1,6 @@
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 _chunkGG44TH3Kjs = require('./chunk-GG44TH3K.js');
3
+ var _chunkIOQZNUPEjs = require('./chunk-IOQZNUPE.js');
4
4
 
5
5
 
6
6
 
@@ -66,7 +66,7 @@ ${Object.keys(process.env).map((key) => ` - ${key}=${JSON.stringify(process.env[
66
66
  const options = await normalizeOptions(tree, schema, config);
67
67
  const tasks = [];
68
68
  tasks.push(
69
- await _chunkGG44TH3Kjs.generator_default.call(void 0, tree, {
69
+ await _chunkIOQZNUPEjs.generator_default.call(void 0, tree, {
70
70
  ...options,
71
71
  skipFormat: true
72
72
  })
@@ -7,7 +7,7 @@ var require_package = _chunkMCKGQKYUjs.__commonJS.call(void 0, {
7
7
  "package.json"(exports, module) {
8
8
  module.exports = {
9
9
  name: "@storm-software/cloudflare-tools",
10
- version: "0.71.9",
10
+ version: "0.71.11",
11
11
  description: "A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.",
12
12
  repository: {
13
13
  type: "github",
@@ -136,9 +136,9 @@ var require_package = _chunkMCKGQKYUjs.__commonJS.call(void 0, {
136
136
  "@nx/js": "catalog:",
137
137
  "@nx/node": "catalog:",
138
138
  "@nx/web": "catalog:",
139
- "@storm-software/config": "1.134.59",
140
- "@storm-software/config-tools": "1.188.59",
141
- "@storm-software/workspace-tools": "1.294.3",
139
+ "@storm-software/config": "1.134.60",
140
+ "@storm-software/config-tools": "1.188.60",
141
+ "@storm-software/workspace-tools": "1.294.4",
142
142
  nx: "catalog:",
143
143
  tsup: "catalog:",
144
144
  wrangler: ">=3.58.0"
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  generator_default
3
- } from "./chunk-NRILXPPG.mjs";
3
+ } from "./chunk-YILGYTQ4.mjs";
4
4
  import {
5
5
  findWorkspaceRoot,
6
6
  getConfig
@@ -34,6 +34,9 @@ async function runExecutor(options, context) {
34
34
  if (!context.projectName) {
35
35
  throw new Error("The executor requires a projectName.");
36
36
  }
37
+ if (!options.path) {
38
+ throw new Error("The executor requires the `path` option to upload.");
39
+ }
37
40
  console.info(
38
41
  `\u{1F680} Running Storm Cloudflare Publish executor on the ${context.projectName} worker`
39
42
  );
@@ -43,7 +46,6 @@ async function runExecutor(options, context) {
43
46
  try {
44
47
  const workspaceRoot = findWorkspaceRoot();
45
48
  const config = await getConfig(workspaceRoot);
46
- const sourceRoot = context.projectsConfigurations.projects[context.projectName]?.sourceRoot ?? workspaceRoot;
47
49
  const projectName = context.projectsConfigurations.projects[context.projectName]?.name ?? context.projectName;
48
50
  const projectDetails = getPackageInfo(
49
51
  context.projectsConfigurations.projects[context.projectName]
@@ -60,12 +62,12 @@ async function runExecutor(options, context) {
60
62
  const cloudflareAccountId = process.env.CLOUDFLARE_ACCOUNT_ID || process.env.STORM_BOT_CLOUDFLARE_ACCOUNT;
61
63
  if (!options?.registry && !cloudflareAccountId) {
62
64
  throw new Error(
63
- "The registry option and `CLOUDFLARE_ACCOUNT_ID` environment variable are not set. Please set one of these values to upload to the Cloudflare R2 bucket."
65
+ "The registry option and `CLOUDFLARE_ACCOUNT_ID` (or `STORM_BOT_CLOUDFLARE_ACCOUNT`) environment variable are not set. Please set one of these values to upload to the Cloudflare R2 bucket."
64
66
  );
65
67
  }
66
68
  if (!process.env.STORM_BOT_ACCESS_KEY_ID && !process.env.ACCESS_KEY_ID && !process.env.CLOUDFLARE_ACCESS_KEY_ID && !process.env.AWS_ACCESS_KEY_ID || !process.env.STORM_BOT_SECRET_ACCESS_KEY && !process.env.CLOUDFLARE_SECRET_ACCESS_KEY && !process.env.SECRET_ACCESS_KEY && !process.env.AWS_SECRET_ACCESS_KEY) {
67
69
  throw new Error(
68
- "The `ACCESS_KEY_ID` and `SECRET_ACCESS_KEY` environment variables are not set. Please set these environment variables to upload to the Cloudflare R2 bucket."
70
+ "The `ACCESS_KEY_ID` (or `STORM_BOT_ACCESS_KEY_ID`) and `SECRET_ACCESS_KEY` (or `STORM_BOT_SECRET_ACCESS_KEY`) environment variables are not set. Please set these environment variables to upload to the Cloudflare R2 bucket."
69
71
  );
70
72
  }
71
73
  const registry = options?.registry ? options.registry : `https://${cloudflareAccountId}.r2.cloudflarestorage.com`;
@@ -98,7 +100,7 @@ async function runExecutor(options, context) {
98
100
  if (version) {
99
101
  writeDebug(`Starting upload version ${version}`);
100
102
  }
101
- const basePath = options.path || sourceRoot;
103
+ const basePath = options.path;
102
104
  const files = await glob(joinPaths(basePath, "**/*"), {
103
105
  ignore: "**/{*.stories.tsx,*.stories.ts,*.spec.tsx,*.spec.ts}"
104
106
  });
@@ -34,6 +34,9 @@ async function runExecutor(options, context) {
34
34
  if (!context.projectName) {
35
35
  throw new Error("The executor requires a projectName.");
36
36
  }
37
+ if (!options.path) {
38
+ throw new Error("The executor requires the `path` option to upload.");
39
+ }
37
40
  console.info(
38
41
  `\u{1F680} Running Storm Cloudflare Publish executor on the ${context.projectName} worker`
39
42
  );
@@ -43,8 +46,7 @@ async function runExecutor(options, context) {
43
46
  try {
44
47
  const workspaceRoot = _chunkVKMAYBQXjs.findWorkspaceRoot.call(void 0, );
45
48
  const config = await _chunkVKMAYBQXjs.getConfig.call(void 0, workspaceRoot);
46
- const sourceRoot = _nullishCoalesce(_optionalChain([context, 'access', _7 => _7.projectsConfigurations, 'access', _8 => _8.projects, 'access', _9 => _9[context.projectName], 'optionalAccess', _10 => _10.sourceRoot]), () => ( workspaceRoot));
47
- const projectName = _nullishCoalesce(_optionalChain([context, 'access', _11 => _11.projectsConfigurations, 'access', _12 => _12.projects, 'access', _13 => _13[context.projectName], 'optionalAccess', _14 => _14.name]), () => ( context.projectName));
49
+ const projectName = _nullishCoalesce(_optionalChain([context, 'access', _7 => _7.projectsConfigurations, 'access', _8 => _8.projects, 'access', _9 => _9[context.projectName], 'optionalAccess', _10 => _10.name]), () => ( context.projectName));
48
50
  const projectDetails = _chunkN7FW365Qjs.getPackageInfo.call(void 0,
49
51
  context.projectsConfigurations.projects[context.projectName]
50
52
  );
@@ -58,17 +60,17 @@ async function runExecutor(options, context) {
58
60
  args.push("--dry-run");
59
61
  }
60
62
  const cloudflareAccountId = process.env.CLOUDFLARE_ACCOUNT_ID || process.env.STORM_BOT_CLOUDFLARE_ACCOUNT;
61
- if (!_optionalChain([options, 'optionalAccess', _15 => _15.registry]) && !cloudflareAccountId) {
63
+ if (!_optionalChain([options, 'optionalAccess', _11 => _11.registry]) && !cloudflareAccountId) {
62
64
  throw new Error(
63
- "The registry option and `CLOUDFLARE_ACCOUNT_ID` environment variable are not set. Please set one of these values to upload to the Cloudflare R2 bucket."
65
+ "The registry option and `CLOUDFLARE_ACCOUNT_ID` (or `STORM_BOT_CLOUDFLARE_ACCOUNT`) environment variable are not set. Please set one of these values to upload to the Cloudflare R2 bucket."
64
66
  );
65
67
  }
66
68
  if (!process.env.STORM_BOT_ACCESS_KEY_ID && !process.env.ACCESS_KEY_ID && !process.env.CLOUDFLARE_ACCESS_KEY_ID && !process.env.AWS_ACCESS_KEY_ID || !process.env.STORM_BOT_SECRET_ACCESS_KEY && !process.env.CLOUDFLARE_SECRET_ACCESS_KEY && !process.env.SECRET_ACCESS_KEY && !process.env.AWS_SECRET_ACCESS_KEY) {
67
69
  throw new Error(
68
- "The `ACCESS_KEY_ID` and `SECRET_ACCESS_KEY` environment variables are not set. Please set these environment variables to upload to the Cloudflare R2 bucket."
70
+ "The `ACCESS_KEY_ID` (or `STORM_BOT_ACCESS_KEY_ID`) and `SECRET_ACCESS_KEY` (or `STORM_BOT_SECRET_ACCESS_KEY`) environment variables are not set. Please set these environment variables to upload to the Cloudflare R2 bucket."
69
71
  );
70
72
  }
71
- const registry = _optionalChain([options, 'optionalAccess', _16 => _16.registry]) ? options.registry : `https://${cloudflareAccountId}.r2.cloudflarestorage.com`;
73
+ const registry = _optionalChain([options, 'optionalAccess', _12 => _12.registry]) ? options.registry : `https://${cloudflareAccountId}.r2.cloudflarestorage.com`;
72
74
  let projectGraph;
73
75
  try {
74
76
  projectGraph = _devkit.readCachedProjectGraph.call(void 0, );
@@ -94,11 +96,11 @@ async function runExecutor(options, context) {
94
96
  secretAccessKey: process.env.STORM_BOT_SECRET_ACCESS_KEY || process.env.CLOUDFLARE_SECRET_ACCESS_KEY || process.env.AWS_SECRET_ACCESS_KEY || process.env.SECRET_ACCESS_KEY
95
97
  }
96
98
  });
97
- const version = _optionalChain([projectDetails, 'optionalAccess', _17 => _17.content, 'optionalAccess', _18 => _18.version]);
99
+ const version = _optionalChain([projectDetails, 'optionalAccess', _13 => _13.content, 'optionalAccess', _14 => _14.version]);
98
100
  if (version) {
99
101
  _chunkZ2WQB55Rjs.writeDebug.call(void 0, `Starting upload version ${version}`);
100
102
  }
101
- const basePath = options.path || sourceRoot;
103
+ const basePath = options.path;
102
104
  const files = await _glob.glob.call(void 0, _chunkZ2WQB55Rjs.joinPaths.call(void 0, basePath, "**/*"), {
103
105
  ignore: "**/{*.stories.tsx,*.stories.ts,*.spec.tsx,*.spec.ts}"
104
106
  });
@@ -113,7 +115,7 @@ async function runExecutor(options, context) {
113
115
  ret[dep.name] = "latest";
114
116
  }
115
117
  return ret;
116
- }, _nullishCoalesce(_optionalChain([projectDetails, 'optionalAccess', _19 => _19.content, 'access', _20 => _20.dependencies]), () => ( {})));
118
+ }, _nullishCoalesce(_optionalChain([projectDetails, 'optionalAccess', _15 => _15.content, 'access', _16 => _16.dependencies]), () => ( {})));
117
119
  const release = _nullishCoalesce(options.tag, () => ( _child_process.execSync.call(void 0, "npm config get tag").toString().trim()));
118
120
  if (options.clean === true) {
119
121
  _chunkZ2WQB55Rjs.writeDebug.call(void 0, `Clearing out existing items in ${bucketPath}`);
@@ -122,7 +124,7 @@ async function runExecutor(options, context) {
122
124
  Bucket: bucketId,
123
125
  Prefix: bucketPath
124
126
  });
125
- if (_optionalChain([response, 'optionalAccess', _21 => _21.Contents]) && response.Contents.length > 0) {
127
+ if (_optionalChain([response, 'optionalAccess', _17 => _17.Contents]) && response.Contents.length > 0) {
126
128
  _chunkZ2WQB55Rjs.writeTrace.call(void 0,
127
129
  `Deleting the following existing items from the R2 bucket path ${bucketPath}: ${response.Contents.map((item) => item.Key).join(", ")}`
128
130
  );
@@ -155,8 +157,8 @@ async function runExecutor(options, context) {
155
157
  name: context.projectName,
156
158
  version,
157
159
  release,
158
- description: _optionalChain([projectDetails, 'optionalAccess', _22 => _22.content, 'optionalAccess', _23 => _23.description]),
159
- tags: _optionalChain([projectDetails, 'optionalAccess', _24 => _24.content, 'optionalAccess', _25 => _25.keywords]),
160
+ description: _optionalChain([projectDetails, 'optionalAccess', _18 => _18.content, 'optionalAccess', _19 => _19.description]),
161
+ tags: _optionalChain([projectDetails, 'optionalAccess', _20 => _20.content, 'optionalAccess', _21 => _21.keywords]),
160
162
  dependencies,
161
163
  devDependencies: null,
162
164
  internalDependencies: internalDependencies.filter(
@@ -165,8 +167,8 @@ async function runExecutor(options, context) {
165
167
  )
166
168
  ).map((dep) => dep.name)
167
169
  };
168
- if (_optionalChain([projectDetails, 'optionalAccess', _26 => _26.type]) === "package.json") {
169
- meta.devDependencies = _optionalChain([projectDetails, 'optionalAccess', _27 => _27.content, 'optionalAccess', _28 => _28.devDependencies]);
170
+ if (_optionalChain([projectDetails, 'optionalAccess', _22 => _22.type]) === "package.json") {
171
+ meta.devDependencies = _optionalChain([projectDetails, 'optionalAccess', _23 => _23.content, 'optionalAccess', _24 => _24.devDependencies]);
170
172
  }
171
173
  const metaJson = JSON.stringify(meta);
172
174
  _chunkZ2WQB55Rjs.writeTrace.call(void 0, `Generating meta.json file:
@@ -7,7 +7,7 @@ var require_package = __commonJS({
7
7
  "package.json"(exports, module) {
8
8
  module.exports = {
9
9
  name: "@storm-software/cloudflare-tools",
10
- version: "0.71.9",
10
+ version: "0.71.11",
11
11
  description: "A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.",
12
12
  repository: {
13
13
  type: "github",
@@ -136,9 +136,9 @@ var require_package = __commonJS({
136
136
  "@nx/js": "catalog:",
137
137
  "@nx/node": "catalog:",
138
138
  "@nx/web": "catalog:",
139
- "@storm-software/config": "1.134.59",
140
- "@storm-software/config-tools": "1.188.59",
141
- "@storm-software/workspace-tools": "1.294.3",
139
+ "@storm-software/config": "1.134.60",
140
+ "@storm-software/config-tools": "1.188.60",
141
+ "@storm-software/workspace-tools": "1.294.4",
142
142
  nx: "catalog:",
143
143
  tsup: "catalog:",
144
144
  wrangler: ">=3.58.0"
package/dist/executors.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";require('./chunk-XO66D74Z.js');
2
2
  require('./chunk-QBD2OGUY.js');
3
3
  require('./chunk-J5JJZJO5.js');
4
- require('./chunk-KMNS6S6D.js');
4
+ require('./chunk-T6V63PPD.js');
5
5
  require('./chunk-UAKLE2QO.js');
6
6
  require('./chunk-N7FW365Q.js');
7
7
  require('./chunk-VKMAYBQX.js');
@@ -1,7 +1,7 @@
1
1
  import "./chunk-YSCEY447.mjs";
2
2
  import "./chunk-F6FHDDUJ.mjs";
3
3
  import "./chunk-FWIGE74R.mjs";
4
- import "./chunk-HTH2JCTQ.mjs";
4
+ import "./chunk-MAE2ZXHO.mjs";
5
5
  import "./chunk-5CMG7SUH.mjs";
6
6
  import "./chunk-3MAI3FU2.mjs";
7
7
  import "./chunk-SGTAZO2Q.mjs";
@@ -2,11 +2,11 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkBZEJDZ2Mjs = require('./chunk-BZEJDZ2M.js');
5
+ var _chunkF6IVLZICjs = require('./chunk-F6IVLZIC.js');
6
6
 
7
7
 
8
8
 
9
- var _chunkGG44TH3Kjs = require('./chunk-GG44TH3K.js');
9
+ var _chunkIOQZNUPEjs = require('./chunk-IOQZNUPE.js');
10
10
  require('./chunk-VKMAYBQX.js');
11
11
  require('./chunk-Z2WQB55R.js');
12
12
  require('./chunk-MCKGQKYU.js');
@@ -15,4 +15,4 @@ require('./chunk-MCKGQKYU.js');
15
15
 
16
16
 
17
17
 
18
- exports.applicationGenerator = _chunkBZEJDZ2Mjs.applicationGenerator; exports.applicationSchematic = _chunkBZEJDZ2Mjs.applicationSchematic; exports.initGenerator = _chunkGG44TH3Kjs.initGenerator; exports.initSchematic = _chunkGG44TH3Kjs.initSchematic;
18
+ exports.applicationGenerator = _chunkF6IVLZICjs.applicationGenerator; exports.applicationSchematic = _chunkF6IVLZICjs.applicationSchematic; exports.initGenerator = _chunkIOQZNUPEjs.initGenerator; exports.initSchematic = _chunkIOQZNUPEjs.initSchematic;
@@ -2,11 +2,11 @@ import "./chunk-3J7KBHMJ.mjs";
2
2
  import {
3
3
  applicationGenerator,
4
4
  applicationSchematic
5
- } from "./chunk-DXU4ZYCE.mjs";
5
+ } from "./chunk-LVH5M4ZY.mjs";
6
6
  import {
7
7
  initGenerator,
8
8
  initSchematic
9
- } from "./chunk-NRILXPPG.mjs";
9
+ } from "./chunk-YILGYTQ4.mjs";
10
10
  import "./chunk-SGTAZO2Q.mjs";
11
11
  import "./chunk-TPNHSNNZ.mjs";
12
12
  import "./chunk-TYYFTZLS.mjs";
package/dist/index.js CHANGED
@@ -3,15 +3,15 @@ require('./chunk-DHBG5ASJ.js');
3
3
 
4
4
 
5
5
 
6
- var _chunkBZEJDZ2Mjs = require('./chunk-BZEJDZ2M.js');
6
+ var _chunkF6IVLZICjs = require('./chunk-F6IVLZIC.js');
7
7
 
8
8
 
9
9
 
10
- var _chunkGG44TH3Kjs = require('./chunk-GG44TH3K.js');
10
+ var _chunkIOQZNUPEjs = require('./chunk-IOQZNUPE.js');
11
11
  require('./chunk-CVGPWUNP.js');
12
12
  require('./chunk-QBD2OGUY.js');
13
13
  require('./chunk-J5JJZJO5.js');
14
- require('./chunk-KMNS6S6D.js');
14
+ require('./chunk-T6V63PPD.js');
15
15
 
16
16
 
17
17
 
@@ -155,4 +155,4 @@ function createPackageJson(projectJsonPath, workspaceRoot) {
155
155
 
156
156
 
157
157
 
158
- exports.applicationGenerator = _chunkBZEJDZ2Mjs.applicationGenerator; exports.applicationSchematic = _chunkBZEJDZ2Mjs.applicationSchematic; exports.createNodesV2 = createNodesV2; exports.getInternalDependencies = _chunkUAKLE2QOjs.getInternalDependencies; exports.initGenerator = _chunkGG44TH3Kjs.initGenerator; exports.initSchematic = _chunkGG44TH3Kjs.initSchematic; exports.name = name; exports.r2UploadFile = _chunkUAKLE2QOjs.r2UploadFile;
158
+ exports.applicationGenerator = _chunkF6IVLZICjs.applicationGenerator; exports.applicationSchematic = _chunkF6IVLZICjs.applicationSchematic; exports.createNodesV2 = createNodesV2; exports.getInternalDependencies = _chunkUAKLE2QOjs.getInternalDependencies; exports.initGenerator = _chunkIOQZNUPEjs.initGenerator; exports.initSchematic = _chunkIOQZNUPEjs.initSchematic; exports.name = name; exports.r2UploadFile = _chunkUAKLE2QOjs.r2UploadFile;
package/dist/index.mjs CHANGED
@@ -3,15 +3,15 @@ import "./chunk-3J7KBHMJ.mjs";
3
3
  import {
4
4
  applicationGenerator,
5
5
  applicationSchematic
6
- } from "./chunk-DXU4ZYCE.mjs";
6
+ } from "./chunk-LVH5M4ZY.mjs";
7
7
  import {
8
8
  initGenerator,
9
9
  initSchematic
10
- } from "./chunk-NRILXPPG.mjs";
10
+ } from "./chunk-YILGYTQ4.mjs";
11
11
  import "./chunk-7Z5PILRU.mjs";
12
12
  import "./chunk-F6FHDDUJ.mjs";
13
13
  import "./chunk-FWIGE74R.mjs";
14
- import "./chunk-HTH2JCTQ.mjs";
14
+ import "./chunk-MAE2ZXHO.mjs";
15
15
  import {
16
16
  getInternalDependencies,
17
17
  r2UploadFile
@@ -1,6 +1,6 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkKMNS6S6Djs = require('../../../chunk-KMNS6S6D.js');
3
+ var _chunkT6V63PPDjs = require('../../../chunk-T6V63PPD.js');
4
4
  require('../../../chunk-UAKLE2QO.js');
5
5
  require('../../../chunk-N7FW365Q.js');
6
6
  require('../../../chunk-VKMAYBQX.js');
@@ -8,4 +8,4 @@ require('../../../chunk-Z2WQB55R.js');
8
8
  require('../../../chunk-MCKGQKYU.js');
9
9
 
10
10
 
11
- exports.default = _chunkKMNS6S6Djs.runExecutor;
11
+ exports.default = _chunkT6V63PPDjs.runExecutor;
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  runExecutor
3
- } from "../../../chunk-HTH2JCTQ.mjs";
3
+ } from "../../../chunk-MAE2ZXHO.mjs";
4
4
  import "../../../chunk-5CMG7SUH.mjs";
5
5
  import "../../../chunk-3MAI3FU2.mjs";
6
6
  import "../../../chunk-SGTAZO2Q.mjs";
@@ -2,10 +2,10 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkGG44TH3Kjs = require('../../../chunk-GG44TH3K.js');
5
+ var _chunkIOQZNUPEjs = require('../../../chunk-IOQZNUPE.js');
6
6
  require('../../../chunk-MCKGQKYU.js');
7
7
 
8
8
 
9
9
 
10
10
 
11
- exports.default = _chunkGG44TH3Kjs.generator_default; exports.initGenerator = _chunkGG44TH3Kjs.initGenerator; exports.initSchematic = _chunkGG44TH3Kjs.initSchematic;
11
+ exports.default = _chunkIOQZNUPEjs.generator_default; exports.initGenerator = _chunkIOQZNUPEjs.initGenerator; exports.initSchematic = _chunkIOQZNUPEjs.initSchematic;
@@ -2,7 +2,7 @@ import {
2
2
  generator_default,
3
3
  initGenerator,
4
4
  initSchematic
5
- } from "../../../chunk-NRILXPPG.mjs";
5
+ } from "../../../chunk-YILGYTQ4.mjs";
6
6
  import "../../../chunk-TYYFTZLS.mjs";
7
7
  export {
8
8
  generator_default as default,
@@ -2,8 +2,8 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkBZEJDZ2Mjs = require('../../../chunk-BZEJDZ2M.js');
6
- require('../../../chunk-GG44TH3K.js');
5
+ var _chunkF6IVLZICjs = require('../../../chunk-F6IVLZIC.js');
6
+ require('../../../chunk-IOQZNUPE.js');
7
7
  require('../../../chunk-VKMAYBQX.js');
8
8
  require('../../../chunk-Z2WQB55R.js');
9
9
  require('../../../chunk-MCKGQKYU.js');
@@ -11,4 +11,4 @@ require('../../../chunk-MCKGQKYU.js');
11
11
 
12
12
 
13
13
 
14
- exports.applicationGenerator = _chunkBZEJDZ2Mjs.applicationGenerator; exports.applicationSchematic = _chunkBZEJDZ2Mjs.applicationSchematic; exports.default = _chunkBZEJDZ2Mjs.generator_default;
14
+ exports.applicationGenerator = _chunkF6IVLZICjs.applicationGenerator; exports.applicationSchematic = _chunkF6IVLZICjs.applicationSchematic; exports.default = _chunkF6IVLZICjs.generator_default;
@@ -2,8 +2,8 @@ import {
2
2
  applicationGenerator,
3
3
  applicationSchematic,
4
4
  generator_default
5
- } from "../../../chunk-DXU4ZYCE.mjs";
6
- import "../../../chunk-NRILXPPG.mjs";
5
+ } from "../../../chunk-LVH5M4ZY.mjs";
6
+ import "../../../chunk-YILGYTQ4.mjs";
7
7
  import "../../../chunk-SGTAZO2Q.mjs";
8
8
  import "../../../chunk-TPNHSNNZ.mjs";
9
9
  import "../../../chunk-TYYFTZLS.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/cloudflare-tools",
3
- "version": "0.71.10",
3
+ "version": "0.71.12",
4
4
  "description": "A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.",
5
5
  "repository": {
6
6
  "type": "github",
@@ -117,9 +117,9 @@
117
117
  "@nx/js": "^22.1.3",
118
118
  "@nx/node": "^22.1.3",
119
119
  "@nx/web": "^22.1.3",
120
- "@storm-software/config": "1.134.59",
121
- "@storm-software/config-tools": "1.188.59",
122
- "@storm-software/workspace-tools": "1.294.3",
120
+ "@storm-software/config": "1.134.60",
121
+ "@storm-software/config-tools": "1.188.60",
122
+ "@storm-software/workspace-tools": "1.294.4",
123
123
  "nx": "^22.1.3",
124
124
  "tsup": "8.4.0",
125
125
  "wrangler": ">=3.58.0"
@@ -151,5 +151,5 @@
151
151
  "publishConfig": { "access": "public" },
152
152
  "executors": "./executors.json",
153
153
  "generators": "./generators.json",
154
- "gitHead": "569b2bed5a42972c8add732c272a261dc7ac2653"
154
+ "gitHead": "726b4aa23317c6ecb3a7579e6e9bf64c9fa14e45"
155
155
  }