@storm-software/cloudflare-tools 0.71.14 → 0.71.16
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 +27 -0
- package/dist/{chunk-MSPE2JA2.js → chunk-2A2OE6L4.js} +6 -3
- package/dist/{chunk-F6FHDDUJ.mjs → chunk-2VAIL4CU.mjs} +1 -1
- package/dist/{chunk-GMXZMPYW.mjs → chunk-4DD7MPRF.mjs} +2 -1
- package/dist/{chunk-CXQTVVMP.js → chunk-BJWM3DME.js} +5 -5
- package/dist/{chunk-23XVYAEH.mjs → chunk-GMB6XFTP.mjs} +13 -23
- package/dist/{chunk-734BIUTA.js → chunk-GVXVF7SH.js} +17 -27
- package/dist/{chunk-XG5T3FL6.js → chunk-I5PY5AIW.js} +2 -1
- package/dist/{chunk-W36TE3H7.mjs → chunk-LJOUJTZE.mjs} +6 -6
- package/dist/{chunk-3UGLZEZF.mjs → chunk-M2N5CL5V.mjs} +5 -2
- package/dist/{chunk-TYYFTZLS.mjs → chunk-UJMHPBL2.mjs} +1 -1
- package/dist/{chunk-AUML5WGJ.js → chunk-XIWQ4YDU.js} +2 -2
- package/dist/{chunk-AUJLTFB2.mjs → chunk-YHWKUZ64.mjs} +2 -2
- package/dist/{chunk-FWIGE74R.mjs → chunk-ZUK6K25J.mjs} +1 -1
- package/dist/executors.js +3 -3
- package/dist/executors.mjs +6 -6
- package/dist/generators.js +3 -3
- package/dist/generators.mjs +3 -3
- package/dist/index.js +6 -6
- package/dist/index.mjs +8 -8
- package/dist/src/executors/cloudflare-publish/executor.mjs +3 -3
- package/dist/src/executors/r2-upload-publish/executor.js +4 -4
- package/dist/src/executors/r2-upload-publish/executor.mjs +4 -4
- package/dist/src/executors/serve/executor.mjs +2 -2
- package/dist/src/generators/init/generator.js +2 -2
- package/dist/src/generators/init/generator.mjs +2 -2
- package/dist/src/generators/worker/generator.js +3 -3
- package/dist/src/generators/worker/generator.mjs +3 -3
- package/dist/src/utils/http-handler.js +2 -2
- package/dist/src/utils/http-handler.mjs +2 -2
- package/dist/src/utils/index.js +2 -2
- package/dist/src/utils/index.mjs +2 -2
- package/dist/src/utils/r2-bucket-helpers.d.mts +1 -1
- package/dist/src/utils/r2-bucket-helpers.d.ts +1 -1
- package/dist/src/utils/r2-bucket-helpers.js +2 -2
- package/dist/src/utils/r2-bucket-helpers.mjs +2 -2
- package/dist/tsup.config.mjs +1 -1
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,33 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Cloudflare Tools
|
|
4
4
|
|
|
5
|
+
## [0.71.15](https://github.com/storm-software/storm-ops/releases/tag/cloudflare-tools%400.71.15) (12/08/2025)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **cloudflare-tools:** Increase `sessionTimeout` parameter to avoid timeout
|
|
10
|
+
error
|
|
11
|
+
([bb919ac8d](https://github.com/storm-software/storm-ops/commit/bb919ac8d))
|
|
12
|
+
|
|
13
|
+
### Updated Dependencies
|
|
14
|
+
|
|
15
|
+
- Updated **workspace-tools** to **v1.294.8**
|
|
16
|
+
- Updated **config-tools** to **v1.188.64**
|
|
17
|
+
- Updated **config** to **v1.134.64**
|
|
18
|
+
|
|
19
|
+
## [0.71.14](https://github.com/storm-software/storm-ops/releases/tag/cloudflare-tools%400.71.14) (12/08/2025)
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- **cloudflare-tools:** Resolve timeout issue in S3 client's request handler
|
|
24
|
+
([7288ec611](https://github.com/storm-software/storm-ops/commit/7288ec611))
|
|
25
|
+
|
|
26
|
+
### Updated Dependencies
|
|
27
|
+
|
|
28
|
+
- Updated **workspace-tools** to **v1.294.7**
|
|
29
|
+
- Updated **config-tools** to **v1.188.63**
|
|
30
|
+
- Updated **config** to **v1.134.63**
|
|
31
|
+
|
|
5
32
|
## [0.71.13](https://github.com/storm-software/storm-ops/releases/tag/cloudflare-tools%400.71.13) (12/08/2025)
|
|
6
33
|
|
|
7
34
|
### Bug Fixes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } }
|
|
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
3
|
|
|
4
4
|
|
|
@@ -7,11 +7,14 @@ var _chunkZ2WQB55Rjs = require('./chunk-Z2WQB55R.js');
|
|
|
7
7
|
// src/utils/r2-bucket-helpers.ts
|
|
8
8
|
var _crypto = require('crypto');
|
|
9
9
|
async function uploadFile(client, bucketName, bucketPath, fileName, version, fileContent, contentType = "application/octet-stream", isDryRun = false) {
|
|
10
|
-
|
|
10
|
+
const key = _optionalChain([(!_optionalChain([bucketPath, 'optionalAccess', _ => _.trim, 'call', _2 => _2()]) || _optionalChain([bucketPath, 'optionalAccess', _3 => _3.trim, 'call', _4 => _4()]) === "/" ? fileName : _chunkZ2WQB55Rjs.joinPaths.call(void 0, bucketPath.trim(), fileName)), 'optionalAccess', _5 => _5.replace, 'call', _6 => _6(/^\/+/g, "")]) || "";
|
|
11
|
+
_chunkZ2WQB55Rjs.writeDebug.call(void 0,
|
|
12
|
+
`Uploading ${key} (content-type: ${contentType}) to the ${bucketName} R2 bucket`
|
|
13
|
+
);
|
|
11
14
|
if (!isDryRun) {
|
|
12
15
|
await client.putObject({
|
|
13
16
|
Bucket: bucketName,
|
|
14
|
-
Key:
|
|
17
|
+
Key: key,
|
|
15
18
|
Body: fileContent,
|
|
16
19
|
ContentType: contentType,
|
|
17
20
|
Metadata: {
|
|
@@ -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.
|
|
10
|
+
version: "0.71.15",
|
|
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.
|
|
140
|
-
"@storm-software/config-tools": "1.188.
|
|
141
|
-
"@storm-software/workspace-tools": "1.294.
|
|
139
|
+
"@storm-software/config": "1.134.64",
|
|
140
|
+
"@storm-software/config-tools": "1.188.64",
|
|
141
|
+
"@storm-software/workspace-tools": "1.294.8",
|
|
142
142
|
nx: "catalog:",
|
|
143
143
|
tsup: "catalog:",
|
|
144
144
|
wrangler: ">=3.58.0"
|
|
@@ -164,7 +164,7 @@ var require_package = _chunkMCKGQKYUjs.__commonJS.call(void 0, {
|
|
|
164
164
|
}
|
|
165
165
|
},
|
|
166
166
|
dependencies: {
|
|
167
|
-
"@aws-sdk/client-s3": "^3.
|
|
167
|
+
"@aws-sdk/client-s3": "^3.947.0",
|
|
168
168
|
"@smithy/node-http-handler": "^4.4.5",
|
|
169
169
|
defu: "catalog:",
|
|
170
170
|
glob: "catalog:",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createHttpHandler
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-4DD7MPRF.mjs";
|
|
4
4
|
import {
|
|
5
5
|
getInternalDependencies,
|
|
6
6
|
uploadFile
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-M2N5CL5V.mjs";
|
|
8
8
|
import {
|
|
9
9
|
createCliOptions,
|
|
10
10
|
getPackageInfo
|
|
@@ -127,27 +127,21 @@ async function runExecutor(options, context) {
|
|
|
127
127
|
if (!isDryRun) {
|
|
128
128
|
const response = await client.listObjects({
|
|
129
129
|
Bucket: bucketId,
|
|
130
|
-
Prefix: bucketPath
|
|
130
|
+
Prefix: !bucketPath || bucketPath === "/" ? void 0 : bucketPath
|
|
131
131
|
});
|
|
132
132
|
if (response?.Contents && response.Contents.length > 0) {
|
|
133
133
|
writeTrace(
|
|
134
134
|
`Deleting the following existing items from the R2 bucket path ${bucketPath}: ${response.Contents.map((item) => item.Key).join(", ")}`
|
|
135
135
|
);
|
|
136
|
-
await
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
],
|
|
146
|
-
Quiet: false
|
|
147
|
-
}
|
|
148
|
-
})
|
|
149
|
-
)
|
|
150
|
-
);
|
|
136
|
+
await client.deleteObjects({
|
|
137
|
+
Bucket: bucketId,
|
|
138
|
+
Delete: {
|
|
139
|
+
Objects: response.Contents.map((item) => ({
|
|
140
|
+
Key: item.Key
|
|
141
|
+
})),
|
|
142
|
+
Quiet: false
|
|
143
|
+
}
|
|
144
|
+
});
|
|
151
145
|
} else {
|
|
152
146
|
writeDebug(
|
|
153
147
|
`No existing items to delete in the R2 bucket path ${bucketPath}`
|
|
@@ -175,16 +169,13 @@ async function runExecutor(options, context) {
|
|
|
175
169
|
if (projectDetails?.type === "package.json") {
|
|
176
170
|
meta.devDependencies = projectDetails?.content?.devDependencies;
|
|
177
171
|
}
|
|
178
|
-
const metaJson = JSON.stringify(meta);
|
|
179
|
-
writeTrace(`Generating meta.json file:
|
|
180
|
-
${metaJson}`);
|
|
181
172
|
await uploadFile(
|
|
182
173
|
client,
|
|
183
174
|
bucketId,
|
|
184
175
|
bucketPath,
|
|
185
176
|
"meta.json",
|
|
186
177
|
version,
|
|
187
|
-
|
|
178
|
+
JSON.stringify(meta),
|
|
188
179
|
"application/json",
|
|
189
180
|
isDryRun
|
|
190
181
|
);
|
|
@@ -196,7 +187,6 @@ ${metaJson}`);
|
|
|
196
187
|
})?.isFile()) {
|
|
197
188
|
const name = correctPaths(file).replace(correctPaths(basePath), "");
|
|
198
189
|
const type = mime.lookup(name) || "application/octet-stream";
|
|
199
|
-
writeTrace(`Uploading file: ${name} (content-type: ${type})`);
|
|
200
190
|
await uploadFile(
|
|
201
191
|
client,
|
|
202
192
|
bucketId,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkI5PY5AIWjs = require('./chunk-I5PY5AIW.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunk2A2OE6L4js = require('./chunk-2A2OE6L4.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
@@ -99,7 +99,7 @@ async function runExecutor(options, context) {
|
|
|
99
99
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
100
100
|
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
|
|
101
101
|
},
|
|
102
|
-
requestHandler:
|
|
102
|
+
requestHandler: _chunkI5PY5AIWjs.createHttpHandler.call(void 0, )
|
|
103
103
|
});
|
|
104
104
|
const version = _optionalChain([projectDetails, 'optionalAccess', _13 => _13.content, 'optionalAccess', _14 => _14.version]);
|
|
105
105
|
if (version) {
|
|
@@ -109,7 +109,7 @@ async function runExecutor(options, context) {
|
|
|
109
109
|
const files = await _glob.glob.call(void 0, _chunkZ2WQB55Rjs.joinPaths.call(void 0, basePath, "**/*"), {
|
|
110
110
|
ignore: "**/{*.stories.tsx,*.stories.ts,*.spec.tsx,*.spec.ts}"
|
|
111
111
|
});
|
|
112
|
-
const internalDependencies = await
|
|
112
|
+
const internalDependencies = await _chunk2A2OE6L4js.getInternalDependencies.call(void 0,
|
|
113
113
|
context.projectName,
|
|
114
114
|
projectGraph
|
|
115
115
|
);
|
|
@@ -127,27 +127,21 @@ async function runExecutor(options, context) {
|
|
|
127
127
|
if (!isDryRun) {
|
|
128
128
|
const response = await client.listObjects({
|
|
129
129
|
Bucket: bucketId,
|
|
130
|
-
Prefix: bucketPath
|
|
130
|
+
Prefix: !bucketPath || bucketPath === "/" ? void 0 : bucketPath
|
|
131
131
|
});
|
|
132
132
|
if (_optionalChain([response, 'optionalAccess', _17 => _17.Contents]) && response.Contents.length > 0) {
|
|
133
133
|
_chunkZ2WQB55Rjs.writeTrace.call(void 0,
|
|
134
134
|
`Deleting the following existing items from the R2 bucket path ${bucketPath}: ${response.Contents.map((item) => item.Key).join(", ")}`
|
|
135
135
|
);
|
|
136
|
-
await
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
],
|
|
146
|
-
Quiet: false
|
|
147
|
-
}
|
|
148
|
-
})
|
|
149
|
-
)
|
|
150
|
-
);
|
|
136
|
+
await client.deleteObjects({
|
|
137
|
+
Bucket: bucketId,
|
|
138
|
+
Delete: {
|
|
139
|
+
Objects: response.Contents.map((item) => ({
|
|
140
|
+
Key: item.Key
|
|
141
|
+
})),
|
|
142
|
+
Quiet: false
|
|
143
|
+
}
|
|
144
|
+
});
|
|
151
145
|
} else {
|
|
152
146
|
_chunkZ2WQB55Rjs.writeDebug.call(void 0,
|
|
153
147
|
`No existing items to delete in the R2 bucket path ${bucketPath}`
|
|
@@ -175,16 +169,13 @@ async function runExecutor(options, context) {
|
|
|
175
169
|
if (_optionalChain([projectDetails, 'optionalAccess', _22 => _22.type]) === "package.json") {
|
|
176
170
|
meta.devDependencies = _optionalChain([projectDetails, 'optionalAccess', _23 => _23.content, 'optionalAccess', _24 => _24.devDependencies]);
|
|
177
171
|
}
|
|
178
|
-
|
|
179
|
-
_chunkZ2WQB55Rjs.writeTrace.call(void 0, `Generating meta.json file:
|
|
180
|
-
${metaJson}`);
|
|
181
|
-
await _chunkMSPE2JA2js.uploadFile.call(void 0,
|
|
172
|
+
await _chunk2A2OE6L4js.uploadFile.call(void 0,
|
|
182
173
|
client,
|
|
183
174
|
bucketId,
|
|
184
175
|
bucketPath,
|
|
185
176
|
"meta.json",
|
|
186
177
|
version,
|
|
187
|
-
|
|
178
|
+
JSON.stringify(meta),
|
|
188
179
|
"application/json",
|
|
189
180
|
isDryRun
|
|
190
181
|
);
|
|
@@ -196,8 +187,7 @@ ${metaJson}`);
|
|
|
196
187
|
}), 'optionalAccess', _25 => _25.isFile, 'call', _26 => _26()])) {
|
|
197
188
|
const name = _chunkZ2WQB55Rjs.correctPaths.call(void 0, file).replace(_chunkZ2WQB55Rjs.correctPaths.call(void 0, basePath), "");
|
|
198
189
|
const type = _mimetypes2.default.lookup(name) || "application/octet-stream";
|
|
199
|
-
|
|
200
|
-
await _chunkMSPE2JA2js.uploadFile.call(void 0,
|
|
190
|
+
await _chunk2A2OE6L4js.uploadFile.call(void 0,
|
|
201
191
|
client,
|
|
202
192
|
bucketId,
|
|
203
193
|
bucketPath,
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
__commonJS
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-UJMHPBL2.mjs";
|
|
4
4
|
|
|
5
5
|
// package.json
|
|
6
6
|
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.
|
|
10
|
+
version: "0.71.15",
|
|
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.
|
|
140
|
-
"@storm-software/config-tools": "1.188.
|
|
141
|
-
"@storm-software/workspace-tools": "1.294.
|
|
139
|
+
"@storm-software/config": "1.134.64",
|
|
140
|
+
"@storm-software/config-tools": "1.188.64",
|
|
141
|
+
"@storm-software/workspace-tools": "1.294.8",
|
|
142
142
|
nx: "catalog:",
|
|
143
143
|
tsup: "catalog:",
|
|
144
144
|
wrangler: ">=3.58.0"
|
|
@@ -164,7 +164,7 @@ var require_package = __commonJS({
|
|
|
164
164
|
}
|
|
165
165
|
},
|
|
166
166
|
dependencies: {
|
|
167
|
-
"@aws-sdk/client-s3": "^3.
|
|
167
|
+
"@aws-sdk/client-s3": "^3.947.0",
|
|
168
168
|
"@smithy/node-http-handler": "^4.4.5",
|
|
169
169
|
defu: "catalog:",
|
|
170
170
|
glob: "catalog:",
|
|
@@ -7,11 +7,14 @@ import {
|
|
|
7
7
|
// src/utils/r2-bucket-helpers.ts
|
|
8
8
|
import { createHash } from "node:crypto";
|
|
9
9
|
async function uploadFile(client, bucketName, bucketPath, fileName, version, fileContent, contentType = "application/octet-stream", isDryRun = false) {
|
|
10
|
-
|
|
10
|
+
const key = (!bucketPath?.trim() || bucketPath?.trim() === "/" ? fileName : joinPaths(bucketPath.trim(), fileName))?.replace(/^\/+/g, "") || "";
|
|
11
|
+
writeDebug(
|
|
12
|
+
`Uploading ${key} (content-type: ${contentType}) to the ${bucketName} R2 bucket`
|
|
13
|
+
);
|
|
11
14
|
if (!isDryRun) {
|
|
12
15
|
await client.putObject({
|
|
13
16
|
Bucket: bucketName,
|
|
14
|
-
Key:
|
|
17
|
+
Key: key,
|
|
15
18
|
Body: fileContent,
|
|
16
19
|
ContentType: contentType,
|
|
17
20
|
Metadata: {
|
|
@@ -9,7 +9,7 @@ var __commonJS = (cb, mod) => function __require2() {
|
|
|
9
9
|
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
10
10
|
};
|
|
11
11
|
|
|
12
|
-
// ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=
|
|
12
|
+
// ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=751a554d775c3572381af4e7e5fa22eeda6dd6856012fb1cf521d6806eb2dc74__7d2cf946c74c0fca13bd3a5ab137cf87/node_modules/tsup/assets/esm_shims.js
|
|
13
13
|
import { fileURLToPath } from "url";
|
|
14
14
|
import path from "path";
|
|
15
15
|
var getFilename = () => fileURLToPath(import.meta.url);
|
|
@@ -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
|
|
3
|
+
var _chunkBJWM3DMEjs = require('./chunk-BJWM3DME.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
|
|
69
|
+
await _chunkBJWM3DMEjs.generator_default.call(void 0, tree, {
|
|
70
70
|
...options,
|
|
71
71
|
skipFormat: true
|
|
72
72
|
})
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-LJOUJTZE.mjs";
|
|
4
4
|
import {
|
|
5
5
|
findWorkspaceRoot,
|
|
6
6
|
getConfig
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
} from "./chunk-TPNHSNNZ.mjs";
|
|
16
16
|
import {
|
|
17
17
|
__dirname
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-UJMHPBL2.mjs";
|
|
19
19
|
|
|
20
20
|
// src/generators/worker/generator.ts
|
|
21
21
|
import {
|
|
@@ -26,7 +26,7 @@ import {
|
|
|
26
26
|
} from "./chunk-TPNHSNNZ.mjs";
|
|
27
27
|
import {
|
|
28
28
|
__dirname
|
|
29
|
-
} from "./chunk-
|
|
29
|
+
} from "./chunk-UJMHPBL2.mjs";
|
|
30
30
|
|
|
31
31
|
// ../config-tools/src/utilities/apply-workspace-tokens.ts
|
|
32
32
|
var applyWorkspaceBaseTokens = async (option, tokenParams) => {
|
package/dist/executors.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";require('./chunk-XO66D74Z.js');
|
|
2
|
-
require('./chunk-
|
|
3
|
-
require('./chunk-
|
|
4
|
-
require('./chunk-
|
|
2
|
+
require('./chunk-GVXVF7SH.js');
|
|
3
|
+
require('./chunk-I5PY5AIW.js');
|
|
4
|
+
require('./chunk-2A2OE6L4.js');
|
|
5
5
|
require('./chunk-QBD2OGUY.js');
|
|
6
6
|
require('./chunk-J5JJZJO5.js');
|
|
7
7
|
require('./chunk-N7FW365Q.js');
|
package/dist/executors.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import "./chunk-YSCEY447.mjs";
|
|
2
|
-
import "./chunk-
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-GMB6XFTP.mjs";
|
|
3
|
+
import "./chunk-4DD7MPRF.mjs";
|
|
4
|
+
import "./chunk-M2N5CL5V.mjs";
|
|
5
|
+
import "./chunk-2VAIL4CU.mjs";
|
|
6
|
+
import "./chunk-ZUK6K25J.mjs";
|
|
7
7
|
import "./chunk-3MAI3FU2.mjs";
|
|
8
8
|
import "./chunk-SGTAZO2Q.mjs";
|
|
9
9
|
import "./chunk-TPNHSNNZ.mjs";
|
|
10
|
-
import "./chunk-
|
|
10
|
+
import "./chunk-UJMHPBL2.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkXIWQ4YDUjs = require('./chunk-XIWQ4YDU.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkBJWM3DMEjs = require('./chunk-BJWM3DME.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 =
|
|
18
|
+
exports.applicationGenerator = _chunkXIWQ4YDUjs.applicationGenerator; exports.applicationSchematic = _chunkXIWQ4YDUjs.applicationSchematic; exports.initGenerator = _chunkBJWM3DMEjs.initGenerator; exports.initSchematic = _chunkBJWM3DMEjs.initSchematic;
|
package/dist/generators.mjs
CHANGED
|
@@ -2,14 +2,14 @@ import "./chunk-3J7KBHMJ.mjs";
|
|
|
2
2
|
import {
|
|
3
3
|
applicationGenerator,
|
|
4
4
|
applicationSchematic
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-YHWKUZ64.mjs";
|
|
6
6
|
import {
|
|
7
7
|
initGenerator,
|
|
8
8
|
initSchematic
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-LJOUJTZE.mjs";
|
|
10
10
|
import "./chunk-SGTAZO2Q.mjs";
|
|
11
11
|
import "./chunk-TPNHSNNZ.mjs";
|
|
12
|
-
import "./chunk-
|
|
12
|
+
import "./chunk-UJMHPBL2.mjs";
|
|
13
13
|
export {
|
|
14
14
|
applicationGenerator,
|
|
15
15
|
applicationSchematic,
|
package/dist/index.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }require('./chunk-XO66D74Z.js');
|
|
2
|
-
require('./chunk-
|
|
2
|
+
require('./chunk-GVXVF7SH.js');
|
|
3
3
|
require('./chunk-DHBG5ASJ.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkXIWQ4YDUjs = require('./chunk-XIWQ4YDU.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
var
|
|
12
|
-
require('./chunk-
|
|
11
|
+
var _chunkBJWM3DMEjs = require('./chunk-BJWM3DME.js');
|
|
12
|
+
require('./chunk-I5PY5AIW.js');
|
|
13
13
|
require('./chunk-CVGPWUNP.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
17
|
+
var _chunk2A2OE6L4js = require('./chunk-2A2OE6L4.js');
|
|
18
18
|
require('./chunk-QBD2OGUY.js');
|
|
19
19
|
require('./chunk-J5JJZJO5.js');
|
|
20
20
|
|
|
@@ -156,4 +156,4 @@ function createPackageJson(projectJsonPath, workspaceRoot) {
|
|
|
156
156
|
|
|
157
157
|
|
|
158
158
|
|
|
159
|
-
exports.applicationGenerator =
|
|
159
|
+
exports.applicationGenerator = _chunkXIWQ4YDUjs.applicationGenerator; exports.applicationSchematic = _chunkXIWQ4YDUjs.applicationSchematic; exports.createNodesV2 = createNodesV2; exports.getInternalDependencies = _chunk2A2OE6L4js.getInternalDependencies; exports.initGenerator = _chunkBJWM3DMEjs.initGenerator; exports.initSchematic = _chunkBJWM3DMEjs.initSchematic; exports.name = name; exports.uploadFile = _chunk2A2OE6L4js.uploadFile;
|
package/dist/index.mjs
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
import "./chunk-YSCEY447.mjs";
|
|
2
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-GMB6XFTP.mjs";
|
|
3
3
|
import "./chunk-3J7KBHMJ.mjs";
|
|
4
4
|
import {
|
|
5
5
|
applicationGenerator,
|
|
6
6
|
applicationSchematic
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-YHWKUZ64.mjs";
|
|
8
8
|
import {
|
|
9
9
|
initGenerator,
|
|
10
10
|
initSchematic
|
|
11
|
-
} from "./chunk-
|
|
12
|
-
import "./chunk-
|
|
11
|
+
} from "./chunk-LJOUJTZE.mjs";
|
|
12
|
+
import "./chunk-4DD7MPRF.mjs";
|
|
13
13
|
import "./chunk-7Z5PILRU.mjs";
|
|
14
14
|
import {
|
|
15
15
|
getInternalDependencies,
|
|
16
16
|
uploadFile
|
|
17
|
-
} from "./chunk-
|
|
18
|
-
import "./chunk-
|
|
19
|
-
import "./chunk-
|
|
17
|
+
} from "./chunk-M2N5CL5V.mjs";
|
|
18
|
+
import "./chunk-2VAIL4CU.mjs";
|
|
19
|
+
import "./chunk-ZUK6K25J.mjs";
|
|
20
20
|
import {
|
|
21
21
|
ProjectTagConstants,
|
|
22
22
|
addProjectTag
|
|
23
23
|
} from "./chunk-3MAI3FU2.mjs";
|
|
24
24
|
import "./chunk-SGTAZO2Q.mjs";
|
|
25
25
|
import "./chunk-TPNHSNNZ.mjs";
|
|
26
|
-
import "./chunk-
|
|
26
|
+
import "./chunk-UJMHPBL2.mjs";
|
|
27
27
|
|
|
28
28
|
// src/plugins/index.ts
|
|
29
29
|
import {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runExecutor
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-2VAIL4CU.mjs";
|
|
4
|
+
import "../../../chunk-ZUK6K25J.mjs";
|
|
5
5
|
import "../../../chunk-3MAI3FU2.mjs";
|
|
6
6
|
import "../../../chunk-SGTAZO2Q.mjs";
|
|
7
7
|
import "../../../chunk-TPNHSNNZ.mjs";
|
|
8
|
-
import "../../../chunk-
|
|
8
|
+
import "../../../chunk-UJMHPBL2.mjs";
|
|
9
9
|
export {
|
|
10
10
|
runExecutor as default
|
|
11
11
|
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkGVXVF7SHjs = require('../../../chunk-GVXVF7SH.js');
|
|
4
|
+
require('../../../chunk-I5PY5AIW.js');
|
|
5
|
+
require('../../../chunk-2A2OE6L4.js');
|
|
6
6
|
require('../../../chunk-N7FW365Q.js');
|
|
7
7
|
require('../../../chunk-VKMAYBQX.js');
|
|
8
8
|
require('../../../chunk-Z2WQB55R.js');
|
|
9
9
|
require('../../../chunk-MCKGQKYU.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.default =
|
|
12
|
+
exports.default = _chunkGVXVF7SHjs.runExecutor;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runExecutor
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-GMB6XFTP.mjs";
|
|
4
|
+
import "../../../chunk-4DD7MPRF.mjs";
|
|
5
|
+
import "../../../chunk-M2N5CL5V.mjs";
|
|
6
6
|
import "../../../chunk-3MAI3FU2.mjs";
|
|
7
7
|
import "../../../chunk-SGTAZO2Q.mjs";
|
|
8
8
|
import "../../../chunk-TPNHSNNZ.mjs";
|
|
9
|
-
import "../../../chunk-
|
|
9
|
+
import "../../../chunk-UJMHPBL2.mjs";
|
|
10
10
|
export {
|
|
11
11
|
runExecutor as default
|
|
12
12
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
withRunExecutor
|
|
3
|
-
} from "../../../chunk-
|
|
3
|
+
} from "../../../chunk-ZUK6K25J.mjs";
|
|
4
4
|
import {
|
|
5
5
|
createCliOptions
|
|
6
6
|
} from "../../../chunk-3MAI3FU2.mjs";
|
|
@@ -8,7 +8,7 @@ import "../../../chunk-SGTAZO2Q.mjs";
|
|
|
8
8
|
import "../../../chunk-TPNHSNNZ.mjs";
|
|
9
9
|
import {
|
|
10
10
|
__require
|
|
11
|
-
} from "../../../chunk-
|
|
11
|
+
} from "../../../chunk-UJMHPBL2.mjs";
|
|
12
12
|
|
|
13
13
|
// src/executors/serve/executor.ts
|
|
14
14
|
import { createAsyncIterable } from "@nx/devkit/src/utils/async-iterable";
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkBJWM3DMEjs = require('../../../chunk-BJWM3DME.js');
|
|
6
6
|
require('../../../chunk-MCKGQKYU.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunkBJWM3DMEjs.generator_default; exports.initGenerator = _chunkBJWM3DMEjs.initGenerator; exports.initSchematic = _chunkBJWM3DMEjs.initSchematic;
|
|
@@ -2,8 +2,8 @@ import {
|
|
|
2
2
|
generator_default,
|
|
3
3
|
initGenerator,
|
|
4
4
|
initSchematic
|
|
5
|
-
} from "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
5
|
+
} from "../../../chunk-LJOUJTZE.mjs";
|
|
6
|
+
import "../../../chunk-UJMHPBL2.mjs";
|
|
7
7
|
export {
|
|
8
8
|
generator_default as default,
|
|
9
9
|
initGenerator,
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
5
|
+
var _chunkXIWQ4YDUjs = require('../../../chunk-XIWQ4YDU.js');
|
|
6
|
+
require('../../../chunk-BJWM3DME.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 =
|
|
14
|
+
exports.applicationGenerator = _chunkXIWQ4YDUjs.applicationGenerator; exports.applicationSchematic = _chunkXIWQ4YDUjs.applicationSchematic; exports.default = _chunkXIWQ4YDUjs.generator_default;
|
|
@@ -2,11 +2,11 @@ import {
|
|
|
2
2
|
applicationGenerator,
|
|
3
3
|
applicationSchematic,
|
|
4
4
|
generator_default
|
|
5
|
-
} from "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
5
|
+
} from "../../../chunk-YHWKUZ64.mjs";
|
|
6
|
+
import "../../../chunk-LJOUJTZE.mjs";
|
|
7
7
|
import "../../../chunk-SGTAZO2Q.mjs";
|
|
8
8
|
import "../../../chunk-TPNHSNNZ.mjs";
|
|
9
|
-
import "../../../chunk-
|
|
9
|
+
import "../../../chunk-UJMHPBL2.mjs";
|
|
10
10
|
export {
|
|
11
11
|
applicationGenerator,
|
|
12
12
|
applicationSchematic,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkI5PY5AIWjs = require('../../chunk-I5PY5AIW.js');
|
|
4
4
|
require('../../chunk-MCKGQKYU.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.createHttpHandler =
|
|
7
|
+
exports.createHttpHandler = _chunkI5PY5AIWjs.createHttpHandler;
|
package/dist/src/utils/index.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunk2A2OE6L4js = require('../../chunk-2A2OE6L4.js');
|
|
6
6
|
require('../../chunk-Z2WQB55R.js');
|
|
7
7
|
require('../../chunk-MCKGQKYU.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.getInternalDependencies =
|
|
11
|
+
exports.getInternalDependencies = _chunk2A2OE6L4js.getInternalDependencies; exports.uploadFile = _chunk2A2OE6L4js.uploadFile;
|
package/dist/src/utils/index.mjs
CHANGED
|
@@ -2,9 +2,9 @@ import "../../chunk-7Z5PILRU.mjs";
|
|
|
2
2
|
import {
|
|
3
3
|
getInternalDependencies,
|
|
4
4
|
uploadFile
|
|
5
|
-
} from "../../chunk-
|
|
5
|
+
} from "../../chunk-M2N5CL5V.mjs";
|
|
6
6
|
import "../../chunk-TPNHSNNZ.mjs";
|
|
7
|
-
import "../../chunk-
|
|
7
|
+
import "../../chunk-UJMHPBL2.mjs";
|
|
8
8
|
export {
|
|
9
9
|
getInternalDependencies,
|
|
10
10
|
uploadFile
|
|
@@ -13,7 +13,7 @@ import { ProjectGraph, ProjectGraphProjectNode } from '@nx/devkit';
|
|
|
13
13
|
* @param contentType - The MIME type of the file content
|
|
14
14
|
* @param isDryRun - Whether to perform a dry run without actual upload
|
|
15
15
|
*/
|
|
16
|
-
declare function uploadFile(client: S3, bucketName: string, bucketPath: string, fileName: string, version: string, fileContent: string, contentType?: string, isDryRun?: boolean): Promise<void>;
|
|
16
|
+
declare function uploadFile(client: S3, bucketName: string, bucketPath: string | undefined, fileName: string, version: string, fileContent: string, contentType?: string, isDryRun?: boolean): Promise<void>;
|
|
17
17
|
/**
|
|
18
18
|
* Get internal dependencies of a project from the project graph
|
|
19
19
|
*
|
|
@@ -13,7 +13,7 @@ import { ProjectGraph, ProjectGraphProjectNode } from '@nx/devkit';
|
|
|
13
13
|
* @param contentType - The MIME type of the file content
|
|
14
14
|
* @param isDryRun - Whether to perform a dry run without actual upload
|
|
15
15
|
*/
|
|
16
|
-
declare function uploadFile(client: S3, bucketName: string, bucketPath: string, fileName: string, version: string, fileContent: string, contentType?: string, isDryRun?: boolean): Promise<void>;
|
|
16
|
+
declare function uploadFile(client: S3, bucketName: string, bucketPath: string | undefined, fileName: string, version: string, fileContent: string, contentType?: string, isDryRun?: boolean): Promise<void>;
|
|
17
17
|
/**
|
|
18
18
|
* Get internal dependencies of a project from the project graph
|
|
19
19
|
*
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk2A2OE6L4js = require('../../chunk-2A2OE6L4.js');
|
|
5
5
|
require('../../chunk-Z2WQB55R.js');
|
|
6
6
|
require('../../chunk-MCKGQKYU.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.getInternalDependencies =
|
|
10
|
+
exports.getInternalDependencies = _chunk2A2OE6L4js.getInternalDependencies; exports.uploadFile = _chunk2A2OE6L4js.uploadFile;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getInternalDependencies,
|
|
3
3
|
uploadFile
|
|
4
|
-
} from "../../chunk-
|
|
4
|
+
} from "../../chunk-M2N5CL5V.mjs";
|
|
5
5
|
import "../../chunk-TPNHSNNZ.mjs";
|
|
6
|
-
import "../../chunk-
|
|
6
|
+
import "../../chunk-UJMHPBL2.mjs";
|
|
7
7
|
export {
|
|
8
8
|
getInternalDependencies,
|
|
9
9
|
uploadFile
|
package/dist/tsup.config.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/cloudflare-tools",
|
|
3
|
-
"version": "0.71.
|
|
3
|
+
"version": "0.71.16",
|
|
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",
|
|
@@ -113,14 +113,14 @@
|
|
|
113
113
|
"sullivanpj"
|
|
114
114
|
],
|
|
115
115
|
"peerDependencies": {
|
|
116
|
-
"@nx/devkit": "^22.
|
|
117
|
-
"@nx/js": "^22.
|
|
118
|
-
"@nx/node": "^22.
|
|
119
|
-
"@nx/web": "^22.
|
|
120
|
-
"@storm-software/config": "1.134.
|
|
121
|
-
"@storm-software/config-tools": "1.188.
|
|
122
|
-
"@storm-software/workspace-tools": "1.294.
|
|
123
|
-
"nx": "^22.
|
|
116
|
+
"@nx/devkit": "^22.2.0",
|
|
117
|
+
"@nx/js": "^22.2.0",
|
|
118
|
+
"@nx/node": "^22.2.0",
|
|
119
|
+
"@nx/web": "^22.2.0",
|
|
120
|
+
"@storm-software/config": "1.134.64",
|
|
121
|
+
"@storm-software/config-tools": "1.188.64",
|
|
122
|
+
"@storm-software/workspace-tools": "1.294.8",
|
|
123
|
+
"nx": "^22.2.0",
|
|
124
124
|
"tsup": "8.4.0",
|
|
125
125
|
"wrangler": ">=3.58.0"
|
|
126
126
|
},
|
|
@@ -133,18 +133,18 @@
|
|
|
133
133
|
"wrangler": { "optional": false }
|
|
134
134
|
},
|
|
135
135
|
"dependencies": {
|
|
136
|
-
"@aws-sdk/client-s3": "^3.
|
|
136
|
+
"@aws-sdk/client-s3": "^3.947.0",
|
|
137
137
|
"@smithy/node-http-handler": "^4.4.5",
|
|
138
138
|
"defu": "6.1.4",
|
|
139
139
|
"glob": "^11.1.0",
|
|
140
140
|
"mime-types": "^3.0.2"
|
|
141
141
|
},
|
|
142
142
|
"devDependencies": {
|
|
143
|
-
"@nx/devkit": "^22.
|
|
144
|
-
"@nx/node": "^22.
|
|
145
|
-
"@nx/web": "^22.
|
|
146
|
-
"@nx/webpack": "^22.
|
|
147
|
-
"nx": "^22.
|
|
143
|
+
"@nx/devkit": "^22.2.0",
|
|
144
|
+
"@nx/node": "^22.2.0",
|
|
145
|
+
"@nx/web": "^22.2.0",
|
|
146
|
+
"@nx/webpack": "^22.2.0",
|
|
147
|
+
"nx": "^22.2.0",
|
|
148
148
|
"tsup": "8.4.0",
|
|
149
149
|
"untyped": "^2.0.0",
|
|
150
150
|
"wrangler": "^4.53.0"
|
|
@@ -152,5 +152,5 @@
|
|
|
152
152
|
"publishConfig": { "access": "public" },
|
|
153
153
|
"executors": "./executors.json",
|
|
154
154
|
"generators": "./generators.json",
|
|
155
|
-
"gitHead": "
|
|
155
|
+
"gitHead": "e5afccfa607b8bf8396ec9af7e7cb78313508956"
|
|
156
156
|
}
|