@storm-software/cloudflare-tools 0.63.35 → 0.63.37
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 +16 -0
- package/README.md +1 -1
- package/dist/{chunk-LRIQCDEB.js → chunk-2MVVYXKI.js} +2 -2
- package/dist/{chunk-WRZZX6ZT.js → chunk-3JC7GD6W.js} +104 -103
- package/dist/{chunk-M5XUHFCS.mjs → chunk-5GWTYHPY.mjs} +2 -2
- package/dist/{chunk-OELEFRTT.mjs → chunk-6DG73BPX.mjs} +104 -103
- package/dist/{chunk-LHSBOOCB.js → chunk-M3UWNGNL.js} +2 -2
- package/dist/{chunk-M2TJV5QX.mjs → chunk-OCNZNFC5.mjs} +1 -1
- package/dist/executors.js +1 -1
- package/dist/executors.mjs +1 -1
- package/dist/generators.js +3 -3
- package/dist/generators.mjs +2 -2
- package/dist/index.js +4 -4
- package/dist/index.mjs +3 -3
- package/dist/src/executors/cloudflare-publish/executor.js +1 -1
- package/dist/src/executors/cloudflare-publish/executor.mjs +1 -1
- package/dist/src/executors/serve/executor.js +2 -2
- package/dist/src/executors/serve/executor.mjs +1 -1
- package/dist/src/generators/init/generator.js +2 -2
- package/dist/src/generators/init/generator.mjs +1 -1
- package/dist/src/generators/worker/generator.js +3 -3
- package/dist/src/generators/worker/generator.mjs +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Cloudflare Tools
|
|
4
4
|
|
|
5
|
+
## [0.63.36](https://github.com/storm-software/storm-ops/releases/tag/cloudflare-tools%400.63.36) (2025-07-06)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
([03db3eded](https://github.com/storm-software/storm-ops/commit/03db3eded))
|
|
11
|
+
|
|
12
|
+
## [0.63.35](https://github.com/storm-software/storm-ops/releases/tag/cloudflare-tools%400.63.35) (2025-07-03)
|
|
13
|
+
|
|
14
|
+
### Miscellaneous
|
|
15
|
+
|
|
16
|
+
- **monorepo:** Reformat package dependencies
|
|
17
|
+
([fa2e517d7](https://github.com/storm-software/storm-ops/commit/fa2e517d7))
|
|
18
|
+
- **monorepo:** Regenerate README markdown files
|
|
19
|
+
([0d65555eb](https://github.com/storm-software/storm-ops/commit/0d65555eb))
|
|
20
|
+
|
|
5
21
|
## [0.63.34](https://github.com/storm-software/storm-ops/releases/tag/cloudflare-tools%400.63.34) (2025-07-02)
|
|
6
22
|
|
|
7
23
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -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 _chunkM3UWNGNLjs = require('./chunk-M3UWNGNL.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunk6UIEOKYNjs = require('./chunk-6UIEOKYN.js');
|
|
@@ -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 _chunkM3UWNGNLjs.generator_default.call(void 0, tree, {
|
|
70
70
|
...options,
|
|
71
71
|
skipFormat: true
|
|
72
72
|
})
|
|
@@ -519,6 +519,7 @@ ${pendingAssets.map((pendingAsset) => typeof pendingAsset === "string" ? ` - ${p
|
|
|
519
519
|
assets: pendingAssets
|
|
520
520
|
});
|
|
521
521
|
await assetHandler.processAllAssetsOnce();
|
|
522
|
+
_chunkMIU47PPGjs.writeTrace.call(void 0, "Completed copying assets to the output directory", config);
|
|
522
523
|
if (includeSrc === true) {
|
|
523
524
|
_chunkMIU47PPGjs.writeDebug.call(void 0,
|
|
524
525
|
`\u{1F4DD} Adding banner and writing source files: ${_chunkMIU47PPGjs.joinPaths.call(void 0,
|
|
@@ -2357,132 +2358,132 @@ var _resolvelocalpackagedependencies = require('@nx/js/src/generators/release-ve
|
|
|
2357
2358
|
var _updatelockfile = require('@nx/js/src/release/utils/update-lock-file');
|
|
2358
2359
|
|
|
2359
2360
|
// ../git-tools/src/types.ts
|
|
2360
|
-
var
|
|
2361
|
+
var COMMIT_TYPES = {
|
|
2361
2362
|
/* --- Bumps version when selected --- */
|
|
2362
|
-
chore: {
|
|
2363
|
-
description: "Other changes that don't modify src or test files",
|
|
2364
|
-
title: "Chore",
|
|
2365
|
-
emoji: "\u2699\uFE0F ",
|
|
2366
|
-
semverBump: "patch",
|
|
2367
|
-
changelog: {
|
|
2368
|
-
title: "Miscellaneous",
|
|
2369
|
-
hidden: false
|
|
2363
|
+
"chore": {
|
|
2364
|
+
"description": "Other changes that don't modify src or test files",
|
|
2365
|
+
"title": "Chore",
|
|
2366
|
+
"emoji": "\u2699\uFE0F ",
|
|
2367
|
+
"semverBump": "patch",
|
|
2368
|
+
"changelog": {
|
|
2369
|
+
"title": "Miscellaneous",
|
|
2370
|
+
"hidden": false
|
|
2370
2371
|
}
|
|
2371
2372
|
},
|
|
2372
|
-
fix: {
|
|
2373
|
-
description: "A change that resolves an issue previously identified with the package",
|
|
2374
|
-
title: "Bug Fix",
|
|
2375
|
-
emoji: "\u{1FAB2} ",
|
|
2376
|
-
semverBump: "patch",
|
|
2377
|
-
changelog: {
|
|
2378
|
-
title: "Bug Fixes",
|
|
2379
|
-
hidden: false
|
|
2373
|
+
"fix": {
|
|
2374
|
+
"description": "A change that resolves an issue previously identified with the package",
|
|
2375
|
+
"title": "Bug Fix",
|
|
2376
|
+
"emoji": "\u{1FAB2} ",
|
|
2377
|
+
"semverBump": "patch",
|
|
2378
|
+
"changelog": {
|
|
2379
|
+
"title": "Bug Fixes",
|
|
2380
|
+
"hidden": false
|
|
2380
2381
|
}
|
|
2381
2382
|
},
|
|
2382
|
-
feat: {
|
|
2383
|
-
description: "A change that adds a new feature to the package",
|
|
2384
|
-
title: "Feature",
|
|
2385
|
-
emoji: "\u{1F511} ",
|
|
2386
|
-
semverBump: "minor",
|
|
2387
|
-
changelog: {
|
|
2388
|
-
title: "Features",
|
|
2389
|
-
hidden: false
|
|
2383
|
+
"feat": {
|
|
2384
|
+
"description": "A change that adds a new feature to the package",
|
|
2385
|
+
"title": "Feature",
|
|
2386
|
+
"emoji": "\u{1F511} ",
|
|
2387
|
+
"semverBump": "minor",
|
|
2388
|
+
"changelog": {
|
|
2389
|
+
"title": "Features",
|
|
2390
|
+
"hidden": false
|
|
2390
2391
|
}
|
|
2391
2392
|
},
|
|
2392
|
-
ci: {
|
|
2393
|
-
description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)",
|
|
2394
|
-
title: "Continuous Integration",
|
|
2395
|
-
emoji: "\u{1F9F0} ",
|
|
2396
|
-
semverBump: "patch",
|
|
2397
|
-
changelog: {
|
|
2398
|
-
title: "Continuous Integration",
|
|
2399
|
-
hidden: false
|
|
2393
|
+
"ci": {
|
|
2394
|
+
"description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)",
|
|
2395
|
+
"title": "Continuous Integration",
|
|
2396
|
+
"emoji": "\u{1F9F0} ",
|
|
2397
|
+
"semverBump": "patch",
|
|
2398
|
+
"changelog": {
|
|
2399
|
+
"title": "Continuous Integration",
|
|
2400
|
+
"hidden": false
|
|
2400
2401
|
}
|
|
2401
2402
|
},
|
|
2402
|
-
refactor: {
|
|
2403
|
-
description: "A code change that neither fixes a bug nor adds a feature",
|
|
2404
|
-
title: "Code Refactoring",
|
|
2405
|
-
emoji: "\u{1F9EA} ",
|
|
2406
|
-
semverBump: "patch",
|
|
2407
|
-
changelog: {
|
|
2408
|
-
title: "Source Code Improvements",
|
|
2409
|
-
hidden: false
|
|
2403
|
+
"refactor": {
|
|
2404
|
+
"description": "A code change that neither fixes a bug nor adds a feature",
|
|
2405
|
+
"title": "Code Refactoring",
|
|
2406
|
+
"emoji": "\u{1F9EA} ",
|
|
2407
|
+
"semverBump": "patch",
|
|
2408
|
+
"changelog": {
|
|
2409
|
+
"title": "Source Code Improvements",
|
|
2410
|
+
"hidden": false
|
|
2410
2411
|
}
|
|
2411
2412
|
},
|
|
2412
|
-
style: {
|
|
2413
|
-
description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
|
|
2414
|
-
title: "Style Improvements",
|
|
2415
|
-
emoji: "\u{1F48E} ",
|
|
2416
|
-
semverBump: "patch",
|
|
2417
|
-
changelog: {
|
|
2418
|
-
title: "Style Improvements",
|
|
2419
|
-
hidden: false
|
|
2413
|
+
"style": {
|
|
2414
|
+
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
|
|
2415
|
+
"title": "Style Improvements",
|
|
2416
|
+
"emoji": "\u{1F48E} ",
|
|
2417
|
+
"semverBump": "patch",
|
|
2418
|
+
"changelog": {
|
|
2419
|
+
"title": "Style Improvements",
|
|
2420
|
+
"hidden": false
|
|
2420
2421
|
}
|
|
2421
2422
|
},
|
|
2422
|
-
perf: {
|
|
2423
|
-
description: "A code change that improves performance",
|
|
2424
|
-
title: "Performance Improvement",
|
|
2425
|
-
emoji: "\u23F1\uFE0F ",
|
|
2426
|
-
semverBump: "patch",
|
|
2427
|
-
changelog: {
|
|
2428
|
-
title: "Performance Improvements",
|
|
2429
|
-
hidden: false
|
|
2423
|
+
"perf": {
|
|
2424
|
+
"description": "A code change that improves performance",
|
|
2425
|
+
"title": "Performance Improvement",
|
|
2426
|
+
"emoji": "\u23F1\uFE0F ",
|
|
2427
|
+
"semverBump": "patch",
|
|
2428
|
+
"changelog": {
|
|
2429
|
+
"title": "Performance Improvements",
|
|
2430
|
+
"hidden": false
|
|
2430
2431
|
}
|
|
2431
2432
|
},
|
|
2432
2433
|
/* --- Does not bump version when selected --- */
|
|
2433
|
-
docs: {
|
|
2434
|
-
description: "A change that only includes documentation updates",
|
|
2435
|
-
title: "Documentation",
|
|
2436
|
-
emoji: "\u{1F4DC} ",
|
|
2437
|
-
semverBump: "none",
|
|
2438
|
-
changelog: {
|
|
2439
|
-
title: "Documentation",
|
|
2440
|
-
hidden: false
|
|
2434
|
+
"docs": {
|
|
2435
|
+
"description": "A change that only includes documentation updates",
|
|
2436
|
+
"title": "Documentation",
|
|
2437
|
+
"emoji": "\u{1F4DC} ",
|
|
2438
|
+
"semverBump": "none",
|
|
2439
|
+
"changelog": {
|
|
2440
|
+
"title": "Documentation",
|
|
2441
|
+
"hidden": false
|
|
2441
2442
|
}
|
|
2442
2443
|
},
|
|
2443
|
-
test: {
|
|
2444
|
-
description: "Adding missing tests or correcting existing tests",
|
|
2445
|
-
title: "Testing",
|
|
2446
|
-
emoji: "\u{1F6A8} ",
|
|
2447
|
-
semverBump: "none",
|
|
2448
|
-
changelog: {
|
|
2449
|
-
title: "Testing",
|
|
2450
|
-
hidden: true
|
|
2444
|
+
"test": {
|
|
2445
|
+
"description": "Adding missing tests or correcting existing tests",
|
|
2446
|
+
"title": "Testing",
|
|
2447
|
+
"emoji": "\u{1F6A8} ",
|
|
2448
|
+
"semverBump": "none",
|
|
2449
|
+
"changelog": {
|
|
2450
|
+
"title": "Testing",
|
|
2451
|
+
"hidden": true
|
|
2451
2452
|
}
|
|
2452
2453
|
},
|
|
2453
2454
|
/* --- Not included in commitlint but included in changelog --- */
|
|
2454
|
-
deps: {
|
|
2455
|
-
description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies",
|
|
2456
|
-
title: "Dependencies",
|
|
2457
|
-
emoji: "\u{1F4E6} ",
|
|
2458
|
-
hidden: true,
|
|
2459
|
-
semverBump: "patch",
|
|
2460
|
-
changelog: {
|
|
2461
|
-
title: "Dependency Upgrades",
|
|
2462
|
-
hidden: false
|
|
2455
|
+
"deps": {
|
|
2456
|
+
"description": "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies",
|
|
2457
|
+
"title": "Dependencies",
|
|
2458
|
+
"emoji": "\u{1F4E6} ",
|
|
2459
|
+
"hidden": true,
|
|
2460
|
+
"semverBump": "patch",
|
|
2461
|
+
"changelog": {
|
|
2462
|
+
"title": "Dependency Upgrades",
|
|
2463
|
+
"hidden": false
|
|
2463
2464
|
}
|
|
2464
2465
|
},
|
|
2465
2466
|
/* --- Not included in commitlint or changelog --- */
|
|
2466
|
-
build: {
|
|
2467
|
-
description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)",
|
|
2468
|
-
title: "Build",
|
|
2469
|
-
emoji: "\u{1F6E0} ",
|
|
2470
|
-
hidden: true,
|
|
2471
|
-
semverBump: "none",
|
|
2472
|
-
changelog: {
|
|
2473
|
-
title: "Build",
|
|
2474
|
-
hidden: true
|
|
2467
|
+
"build": {
|
|
2468
|
+
"description": "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)",
|
|
2469
|
+
"title": "Build",
|
|
2470
|
+
"emoji": "\u{1F6E0} ",
|
|
2471
|
+
"hidden": true,
|
|
2472
|
+
"semverBump": "none",
|
|
2473
|
+
"changelog": {
|
|
2474
|
+
"title": "Build",
|
|
2475
|
+
"hidden": true
|
|
2475
2476
|
}
|
|
2476
2477
|
},
|
|
2477
|
-
release: {
|
|
2478
|
-
description: "Publishing a commit containing a newly released version",
|
|
2479
|
-
title: "Publish Release",
|
|
2480
|
-
emoji: "\u{1F680} ",
|
|
2481
|
-
hidden: true,
|
|
2482
|
-
semverBump: "none",
|
|
2483
|
-
changelog: {
|
|
2484
|
-
title: "Publish Release",
|
|
2485
|
-
hidden: true
|
|
2478
|
+
"release": {
|
|
2479
|
+
"description": "Publishing a commit containing a newly released version",
|
|
2480
|
+
"title": "Publish Release",
|
|
2481
|
+
"emoji": "\u{1F680} ",
|
|
2482
|
+
"hidden": true,
|
|
2483
|
+
"semverBump": "none",
|
|
2484
|
+
"changelog": {
|
|
2485
|
+
"title": "Publish Release",
|
|
2486
|
+
"hidden": true
|
|
2486
2487
|
}
|
|
2487
2488
|
}
|
|
2488
2489
|
};
|
|
@@ -2491,10 +2492,10 @@ var DEFAULT_COMMIT_QUESTIONS = {
|
|
|
2491
2492
|
type: "select",
|
|
2492
2493
|
title: "Commit Type",
|
|
2493
2494
|
description: "Select the commit type that best describes your changes",
|
|
2494
|
-
enum: Object.keys(
|
|
2495
|
-
(type) =>
|
|
2495
|
+
enum: Object.keys(COMMIT_TYPES).filter(
|
|
2496
|
+
(type) => COMMIT_TYPES[type].hidden !== true
|
|
2496
2497
|
).reduce((ret, type) => {
|
|
2497
|
-
ret[type] =
|
|
2498
|
+
ret[type] = COMMIT_TYPES[type];
|
|
2498
2499
|
return ret;
|
|
2499
2500
|
}, {}),
|
|
2500
2501
|
defaultValue: "chore",
|
|
@@ -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.63.
|
|
10
|
+
version: "0.63.36",
|
|
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",
|
|
@@ -175,7 +175,7 @@ var require_package = __commonJS({
|
|
|
175
175
|
nx: "catalog:",
|
|
176
176
|
tsup: "catalog:",
|
|
177
177
|
untyped: "catalog:",
|
|
178
|
-
wrangler: "^4.
|
|
178
|
+
wrangler: "^4.24.0"
|
|
179
179
|
},
|
|
180
180
|
publishConfig: {
|
|
181
181
|
access: "public"
|
|
@@ -520,6 +520,7 @@ ${pendingAssets.map((pendingAsset) => typeof pendingAsset === "string" ? ` - ${p
|
|
|
520
520
|
assets: pendingAssets
|
|
521
521
|
});
|
|
522
522
|
await assetHandler.processAllAssetsOnce();
|
|
523
|
+
writeTrace("Completed copying assets to the output directory", config);
|
|
523
524
|
if (includeSrc === true) {
|
|
524
525
|
writeDebug(
|
|
525
526
|
`\u{1F4DD} Adding banner and writing source files: ${joinPaths(
|
|
@@ -2358,132 +2359,132 @@ import { resolveLocalPackageDependencies as resolveLocalPackageJsonDependencies
|
|
|
2358
2359
|
import { updateLockFile } from "@nx/js/src/release/utils/update-lock-file";
|
|
2359
2360
|
|
|
2360
2361
|
// ../git-tools/src/types.ts
|
|
2361
|
-
var
|
|
2362
|
+
var COMMIT_TYPES = {
|
|
2362
2363
|
/* --- Bumps version when selected --- */
|
|
2363
|
-
chore: {
|
|
2364
|
-
description: "Other changes that don't modify src or test files",
|
|
2365
|
-
title: "Chore",
|
|
2366
|
-
emoji: "\u2699\uFE0F ",
|
|
2367
|
-
semverBump: "patch",
|
|
2368
|
-
changelog: {
|
|
2369
|
-
title: "Miscellaneous",
|
|
2370
|
-
hidden: false
|
|
2364
|
+
"chore": {
|
|
2365
|
+
"description": "Other changes that don't modify src or test files",
|
|
2366
|
+
"title": "Chore",
|
|
2367
|
+
"emoji": "\u2699\uFE0F ",
|
|
2368
|
+
"semverBump": "patch",
|
|
2369
|
+
"changelog": {
|
|
2370
|
+
"title": "Miscellaneous",
|
|
2371
|
+
"hidden": false
|
|
2371
2372
|
}
|
|
2372
2373
|
},
|
|
2373
|
-
fix: {
|
|
2374
|
-
description: "A change that resolves an issue previously identified with the package",
|
|
2375
|
-
title: "Bug Fix",
|
|
2376
|
-
emoji: "\u{1FAB2} ",
|
|
2377
|
-
semverBump: "patch",
|
|
2378
|
-
changelog: {
|
|
2379
|
-
title: "Bug Fixes",
|
|
2380
|
-
hidden: false
|
|
2374
|
+
"fix": {
|
|
2375
|
+
"description": "A change that resolves an issue previously identified with the package",
|
|
2376
|
+
"title": "Bug Fix",
|
|
2377
|
+
"emoji": "\u{1FAB2} ",
|
|
2378
|
+
"semverBump": "patch",
|
|
2379
|
+
"changelog": {
|
|
2380
|
+
"title": "Bug Fixes",
|
|
2381
|
+
"hidden": false
|
|
2381
2382
|
}
|
|
2382
2383
|
},
|
|
2383
|
-
feat: {
|
|
2384
|
-
description: "A change that adds a new feature to the package",
|
|
2385
|
-
title: "Feature",
|
|
2386
|
-
emoji: "\u{1F511} ",
|
|
2387
|
-
semverBump: "minor",
|
|
2388
|
-
changelog: {
|
|
2389
|
-
title: "Features",
|
|
2390
|
-
hidden: false
|
|
2384
|
+
"feat": {
|
|
2385
|
+
"description": "A change that adds a new feature to the package",
|
|
2386
|
+
"title": "Feature",
|
|
2387
|
+
"emoji": "\u{1F511} ",
|
|
2388
|
+
"semverBump": "minor",
|
|
2389
|
+
"changelog": {
|
|
2390
|
+
"title": "Features",
|
|
2391
|
+
"hidden": false
|
|
2391
2392
|
}
|
|
2392
2393
|
},
|
|
2393
|
-
ci: {
|
|
2394
|
-
description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)",
|
|
2395
|
-
title: "Continuous Integration",
|
|
2396
|
-
emoji: "\u{1F9F0} ",
|
|
2397
|
-
semverBump: "patch",
|
|
2398
|
-
changelog: {
|
|
2399
|
-
title: "Continuous Integration",
|
|
2400
|
-
hidden: false
|
|
2394
|
+
"ci": {
|
|
2395
|
+
"description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)",
|
|
2396
|
+
"title": "Continuous Integration",
|
|
2397
|
+
"emoji": "\u{1F9F0} ",
|
|
2398
|
+
"semverBump": "patch",
|
|
2399
|
+
"changelog": {
|
|
2400
|
+
"title": "Continuous Integration",
|
|
2401
|
+
"hidden": false
|
|
2401
2402
|
}
|
|
2402
2403
|
},
|
|
2403
|
-
refactor: {
|
|
2404
|
-
description: "A code change that neither fixes a bug nor adds a feature",
|
|
2405
|
-
title: "Code Refactoring",
|
|
2406
|
-
emoji: "\u{1F9EA} ",
|
|
2407
|
-
semverBump: "patch",
|
|
2408
|
-
changelog: {
|
|
2409
|
-
title: "Source Code Improvements",
|
|
2410
|
-
hidden: false
|
|
2404
|
+
"refactor": {
|
|
2405
|
+
"description": "A code change that neither fixes a bug nor adds a feature",
|
|
2406
|
+
"title": "Code Refactoring",
|
|
2407
|
+
"emoji": "\u{1F9EA} ",
|
|
2408
|
+
"semverBump": "patch",
|
|
2409
|
+
"changelog": {
|
|
2410
|
+
"title": "Source Code Improvements",
|
|
2411
|
+
"hidden": false
|
|
2411
2412
|
}
|
|
2412
2413
|
},
|
|
2413
|
-
style: {
|
|
2414
|
-
description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
|
|
2415
|
-
title: "Style Improvements",
|
|
2416
|
-
emoji: "\u{1F48E} ",
|
|
2417
|
-
semverBump: "patch",
|
|
2418
|
-
changelog: {
|
|
2419
|
-
title: "Style Improvements",
|
|
2420
|
-
hidden: false
|
|
2414
|
+
"style": {
|
|
2415
|
+
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
|
|
2416
|
+
"title": "Style Improvements",
|
|
2417
|
+
"emoji": "\u{1F48E} ",
|
|
2418
|
+
"semverBump": "patch",
|
|
2419
|
+
"changelog": {
|
|
2420
|
+
"title": "Style Improvements",
|
|
2421
|
+
"hidden": false
|
|
2421
2422
|
}
|
|
2422
2423
|
},
|
|
2423
|
-
perf: {
|
|
2424
|
-
description: "A code change that improves performance",
|
|
2425
|
-
title: "Performance Improvement",
|
|
2426
|
-
emoji: "\u23F1\uFE0F ",
|
|
2427
|
-
semverBump: "patch",
|
|
2428
|
-
changelog: {
|
|
2429
|
-
title: "Performance Improvements",
|
|
2430
|
-
hidden: false
|
|
2424
|
+
"perf": {
|
|
2425
|
+
"description": "A code change that improves performance",
|
|
2426
|
+
"title": "Performance Improvement",
|
|
2427
|
+
"emoji": "\u23F1\uFE0F ",
|
|
2428
|
+
"semverBump": "patch",
|
|
2429
|
+
"changelog": {
|
|
2430
|
+
"title": "Performance Improvements",
|
|
2431
|
+
"hidden": false
|
|
2431
2432
|
}
|
|
2432
2433
|
},
|
|
2433
2434
|
/* --- Does not bump version when selected --- */
|
|
2434
|
-
docs: {
|
|
2435
|
-
description: "A change that only includes documentation updates",
|
|
2436
|
-
title: "Documentation",
|
|
2437
|
-
emoji: "\u{1F4DC} ",
|
|
2438
|
-
semverBump: "none",
|
|
2439
|
-
changelog: {
|
|
2440
|
-
title: "Documentation",
|
|
2441
|
-
hidden: false
|
|
2435
|
+
"docs": {
|
|
2436
|
+
"description": "A change that only includes documentation updates",
|
|
2437
|
+
"title": "Documentation",
|
|
2438
|
+
"emoji": "\u{1F4DC} ",
|
|
2439
|
+
"semverBump": "none",
|
|
2440
|
+
"changelog": {
|
|
2441
|
+
"title": "Documentation",
|
|
2442
|
+
"hidden": false
|
|
2442
2443
|
}
|
|
2443
2444
|
},
|
|
2444
|
-
test: {
|
|
2445
|
-
description: "Adding missing tests or correcting existing tests",
|
|
2446
|
-
title: "Testing",
|
|
2447
|
-
emoji: "\u{1F6A8} ",
|
|
2448
|
-
semverBump: "none",
|
|
2449
|
-
changelog: {
|
|
2450
|
-
title: "Testing",
|
|
2451
|
-
hidden: true
|
|
2445
|
+
"test": {
|
|
2446
|
+
"description": "Adding missing tests or correcting existing tests",
|
|
2447
|
+
"title": "Testing",
|
|
2448
|
+
"emoji": "\u{1F6A8} ",
|
|
2449
|
+
"semverBump": "none",
|
|
2450
|
+
"changelog": {
|
|
2451
|
+
"title": "Testing",
|
|
2452
|
+
"hidden": true
|
|
2452
2453
|
}
|
|
2453
2454
|
},
|
|
2454
2455
|
/* --- Not included in commitlint but included in changelog --- */
|
|
2455
|
-
deps: {
|
|
2456
|
-
description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies",
|
|
2457
|
-
title: "Dependencies",
|
|
2458
|
-
emoji: "\u{1F4E6} ",
|
|
2459
|
-
hidden: true,
|
|
2460
|
-
semverBump: "patch",
|
|
2461
|
-
changelog: {
|
|
2462
|
-
title: "Dependency Upgrades",
|
|
2463
|
-
hidden: false
|
|
2456
|
+
"deps": {
|
|
2457
|
+
"description": "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies",
|
|
2458
|
+
"title": "Dependencies",
|
|
2459
|
+
"emoji": "\u{1F4E6} ",
|
|
2460
|
+
"hidden": true,
|
|
2461
|
+
"semverBump": "patch",
|
|
2462
|
+
"changelog": {
|
|
2463
|
+
"title": "Dependency Upgrades",
|
|
2464
|
+
"hidden": false
|
|
2464
2465
|
}
|
|
2465
2466
|
},
|
|
2466
2467
|
/* --- Not included in commitlint or changelog --- */
|
|
2467
|
-
build: {
|
|
2468
|
-
description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)",
|
|
2469
|
-
title: "Build",
|
|
2470
|
-
emoji: "\u{1F6E0} ",
|
|
2471
|
-
hidden: true,
|
|
2472
|
-
semverBump: "none",
|
|
2473
|
-
changelog: {
|
|
2474
|
-
title: "Build",
|
|
2475
|
-
hidden: true
|
|
2468
|
+
"build": {
|
|
2469
|
+
"description": "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)",
|
|
2470
|
+
"title": "Build",
|
|
2471
|
+
"emoji": "\u{1F6E0} ",
|
|
2472
|
+
"hidden": true,
|
|
2473
|
+
"semverBump": "none",
|
|
2474
|
+
"changelog": {
|
|
2475
|
+
"title": "Build",
|
|
2476
|
+
"hidden": true
|
|
2476
2477
|
}
|
|
2477
2478
|
},
|
|
2478
|
-
release: {
|
|
2479
|
-
description: "Publishing a commit containing a newly released version",
|
|
2480
|
-
title: "Publish Release",
|
|
2481
|
-
emoji: "\u{1F680} ",
|
|
2482
|
-
hidden: true,
|
|
2483
|
-
semverBump: "none",
|
|
2484
|
-
changelog: {
|
|
2485
|
-
title: "Publish Release",
|
|
2486
|
-
hidden: true
|
|
2479
|
+
"release": {
|
|
2480
|
+
"description": "Publishing a commit containing a newly released version",
|
|
2481
|
+
"title": "Publish Release",
|
|
2482
|
+
"emoji": "\u{1F680} ",
|
|
2483
|
+
"hidden": true,
|
|
2484
|
+
"semverBump": "none",
|
|
2485
|
+
"changelog": {
|
|
2486
|
+
"title": "Publish Release",
|
|
2487
|
+
"hidden": true
|
|
2487
2488
|
}
|
|
2488
2489
|
}
|
|
2489
2490
|
};
|
|
@@ -2492,10 +2493,10 @@ var DEFAULT_COMMIT_QUESTIONS = {
|
|
|
2492
2493
|
type: "select",
|
|
2493
2494
|
title: "Commit Type",
|
|
2494
2495
|
description: "Select the commit type that best describes your changes",
|
|
2495
|
-
enum: Object.keys(
|
|
2496
|
-
(type) =>
|
|
2496
|
+
enum: Object.keys(COMMIT_TYPES).filter(
|
|
2497
|
+
(type) => COMMIT_TYPES[type].hidden !== true
|
|
2497
2498
|
).reduce((ret, type) => {
|
|
2498
|
-
ret[type] =
|
|
2499
|
+
ret[type] = COMMIT_TYPES[type];
|
|
2499
2500
|
return ret;
|
|
2500
2501
|
}, {}),
|
|
2501
2502
|
defaultValue: "chore",
|
|
@@ -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.63.
|
|
10
|
+
version: "0.63.36",
|
|
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",
|
|
@@ -175,7 +175,7 @@ var require_package = _chunkMCKGQKYUjs.__commonJS.call(void 0, {
|
|
|
175
175
|
nx: "catalog:",
|
|
176
176
|
tsup: "catalog:",
|
|
177
177
|
untyped: "catalog:",
|
|
178
|
-
wrangler: "^4.
|
|
178
|
+
wrangler: "^4.24.0"
|
|
179
179
|
},
|
|
180
180
|
publishConfig: {
|
|
181
181
|
access: "public"
|
package/dist/executors.js
CHANGED
package/dist/executors.mjs
CHANGED
package/dist/generators.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunk2MVVYXKIjs = require('./chunk-2MVVYXKI.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkM3UWNGNLjs = require('./chunk-M3UWNGNL.js');
|
|
10
10
|
require('./chunk-6UIEOKYN.js');
|
|
11
11
|
require('./chunk-MIU47PPG.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 = _chunk2MVVYXKIjs.applicationGenerator; exports.applicationSchematic = _chunk2MVVYXKIjs.applicationSchematic; exports.initGenerator = _chunkM3UWNGNLjs.initGenerator; exports.initSchematic = _chunkM3UWNGNLjs.initSchematic;
|
package/dist/generators.mjs
CHANGED
|
@@ -2,11 +2,11 @@ import "./chunk-3J7KBHMJ.mjs";
|
|
|
2
2
|
import {
|
|
3
3
|
applicationGenerator,
|
|
4
4
|
applicationSchematic
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-OCNZNFC5.mjs";
|
|
6
6
|
import {
|
|
7
7
|
initGenerator,
|
|
8
8
|
initSchematic
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-5GWTYHPY.mjs";
|
|
10
10
|
import "./chunk-Z4IZ3XJO.mjs";
|
|
11
11
|
import "./chunk-VZKF4MGJ.mjs";
|
|
12
12
|
import "./chunk-OPEKNIHF.mjs";
|
package/dist/index.js
CHANGED
|
@@ -3,14 +3,14 @@ require('./chunk-DHBG5ASJ.js');
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunk2MVVYXKIjs = require('./chunk-2MVVYXKI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkM3UWNGNLjs = require('./chunk-M3UWNGNL.js');
|
|
11
11
|
require('./chunk-CVGPWUNP.js');
|
|
12
12
|
require('./chunk-IRORGRVZ.js');
|
|
13
|
-
require('./chunk-
|
|
13
|
+
require('./chunk-3JC7GD6W.js');
|
|
14
14
|
require('./chunk-RNMAH525.js');
|
|
15
15
|
|
|
16
16
|
|
|
@@ -162,4 +162,4 @@ function createPackageJson(projectJsonPath, workspaceRoot) {
|
|
|
162
162
|
|
|
163
163
|
|
|
164
164
|
|
|
165
|
-
exports.applicationGenerator =
|
|
165
|
+
exports.applicationGenerator = _chunk2MVVYXKIjs.applicationGenerator; exports.applicationSchematic = _chunk2MVVYXKIjs.applicationSchematic; exports.createNodesV2 = createNodesV2; exports.getInternalDependencies = _chunkC7KE3V74js.getInternalDependencies; exports.initGenerator = _chunkM3UWNGNLjs.initGenerator; exports.initSchematic = _chunkM3UWNGNLjs.initSchematic; exports.name = name; exports.r2UploadFile = _chunkC7KE3V74js.r2UploadFile;
|
package/dist/index.mjs
CHANGED
|
@@ -3,14 +3,14 @@ import "./chunk-3J7KBHMJ.mjs";
|
|
|
3
3
|
import {
|
|
4
4
|
applicationGenerator,
|
|
5
5
|
applicationSchematic
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-OCNZNFC5.mjs";
|
|
7
7
|
import {
|
|
8
8
|
initGenerator,
|
|
9
9
|
initSchematic
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-5GWTYHPY.mjs";
|
|
11
11
|
import "./chunk-7Z5PILRU.mjs";
|
|
12
12
|
import "./chunk-Y6O475G7.mjs";
|
|
13
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-6DG73BPX.mjs";
|
|
14
14
|
import "./chunk-A2DHPPIE.mjs";
|
|
15
15
|
import {
|
|
16
16
|
getInternalDependencies,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
var _chunkIRORGRVZjs = require('../../../chunk-IRORGRVZ.js');
|
|
4
|
-
require('../../../chunk-
|
|
4
|
+
require('../../../chunk-3JC7GD6W.js');
|
|
5
5
|
require('../../../chunk-NU34IEWN.js');
|
|
6
6
|
require('../../../chunk-6UIEOKYN.js');
|
|
7
7
|
require('../../../chunk-MIU47PPG.js');
|
|
@@ -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 _chunk3JC7GD6Wjs = require('../../../chunk-3JC7GD6W.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunkNU34IEWNjs = require('../../../chunk-NU34IEWN.js');
|
|
@@ -55,7 +55,7 @@ async function* serveExecutor(options, context, config) {
|
|
|
55
55
|
success: true
|
|
56
56
|
};
|
|
57
57
|
}
|
|
58
|
-
var executor_default =
|
|
58
|
+
var executor_default = _chunk3JC7GD6Wjs.withRunExecutor.call(void 0,
|
|
59
59
|
"Cloudflare Serve executor",
|
|
60
60
|
serveExecutor,
|
|
61
61
|
{
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkM3UWNGNLjs = require('../../../chunk-M3UWNGNL.js');
|
|
6
6
|
require('../../../chunk-MCKGQKYU.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunkM3UWNGNLjs.generator_default; exports.initGenerator = _chunkM3UWNGNLjs.initGenerator; exports.initSchematic = _chunkM3UWNGNLjs.initSchematic;
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
5
|
+
var _chunk2MVVYXKIjs = require('../../../chunk-2MVVYXKI.js');
|
|
6
|
+
require('../../../chunk-M3UWNGNL.js');
|
|
7
7
|
require('../../../chunk-6UIEOKYN.js');
|
|
8
8
|
require('../../../chunk-MIU47PPG.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 = _chunk2MVVYXKIjs.applicationGenerator; exports.applicationSchematic = _chunk2MVVYXKIjs.applicationSchematic; exports.default = _chunk2MVVYXKIjs.generator_default;
|
|
@@ -2,8 +2,8 @@ import {
|
|
|
2
2
|
applicationGenerator,
|
|
3
3
|
applicationSchematic,
|
|
4
4
|
generator_default
|
|
5
|
-
} from "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
5
|
+
} from "../../../chunk-OCNZNFC5.mjs";
|
|
6
|
+
import "../../../chunk-5GWTYHPY.mjs";
|
|
7
7
|
import "../../../chunk-Z4IZ3XJO.mjs";
|
|
8
8
|
import "../../../chunk-VZKF4MGJ.mjs";
|
|
9
9
|
import "../../../chunk-OPEKNIHF.mjs";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/cloudflare-tools",
|
|
3
|
-
"version": "0.63.
|
|
3
|
+
"version": "0.63.37",
|
|
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",
|
|
@@ -141,10 +141,10 @@
|
|
|
141
141
|
"nx": "21.0.3",
|
|
142
142
|
"tsup": "8.4.0",
|
|
143
143
|
"untyped": "^1.5.2",
|
|
144
|
-
"wrangler": "^4.
|
|
144
|
+
"wrangler": "^4.24.0"
|
|
145
145
|
},
|
|
146
146
|
"publishConfig": { "access": "public" },
|
|
147
147
|
"executors": "./executors.json",
|
|
148
148
|
"generators": "./generators.json",
|
|
149
|
-
"gitHead": "
|
|
149
|
+
"gitHead": "b9e7552c043ded538659309cd6fc08c846a50faa"
|
|
150
150
|
}
|