@storm-software/cloudflare-tools 0.55.87 → 0.55.88
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 +9 -0
- package/README.md +1 -2
- package/dist/{chunk-LDHIZ5T7.js → chunk-4WULYLQ3.js} +35 -85
- package/dist/{chunk-XCEENUJB.js → chunk-7JQIASJ7.js} +2 -2
- package/dist/{chunk-CW6SXRL4.mjs → chunk-ABAI6EPS.mjs} +5 -55
- package/dist/{chunk-H4XWGL24.mjs → chunk-NEMOTOHF.mjs} +1 -1
- package/dist/{chunk-YJOYATEB.mjs → chunk-SKMJXTAG.mjs} +1 -1
- package/dist/{chunk-X4Y76AIM.js → chunk-ZBQZJEOG.js} +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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Cloudflare Tools
|
|
4
4
|
|
|
5
|
+
## [0.55.88](https://github.com/storm-software/storm-ops/releases/tag/cloudflare-tools%400.55.88) (2025-04-30)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **esbuild:** Remove swc plugin for ESBuild
|
|
10
|
+
([ad298c288](https://github.com/storm-software/storm-ops/commit/ad298c288))
|
|
11
|
+
- **monorepo:** Regenerate README markdown files
|
|
12
|
+
([933d45f0b](https://github.com/storm-software/storm-ops/commit/933d45f0b))
|
|
13
|
+
|
|
5
14
|
## [0.55.87](https://github.com/storm-software/storm-ops/releases/tag/cloudflare-tools%400.55.87) (2025-04-30)
|
|
6
15
|
|
|
7
16
|
### Bug Fixes
|
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 -->
|
|
@@ -40,7 +40,6 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
40
40
|
|
|
41
41
|
<!-- START doctoc -->
|
|
42
42
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
43
|
-
|
|
44
43
|
## Table of Contents
|
|
45
44
|
|
|
46
45
|
- [Storm Cloudflare Tools](#storm-cloudflare-tools)
|
|
@@ -224,7 +224,7 @@ var _devkit = require('@nx/devkit');
|
|
|
224
224
|
|
|
225
225
|
|
|
226
226
|
var _child_process = require('child_process');
|
|
227
|
-
var _path = require('path'); var
|
|
227
|
+
var _path = require('path'); var path3 = _interopRequireWildcard(_path);
|
|
228
228
|
var INVALID_CARGO_ARGS = [
|
|
229
229
|
"allFeatures",
|
|
230
230
|
"allTargets",
|
|
@@ -809,53 +809,6 @@ var DEFAULT_BUILD_OPTIONS = {
|
|
|
809
809
|
}
|
|
810
810
|
};
|
|
811
811
|
|
|
812
|
-
// ../esbuild/src/plugins/resolve-paths.ts
|
|
813
|
-
|
|
814
|
-
function resolvePathsConfig(options, cwd, projectRoot) {
|
|
815
|
-
if (_optionalChain([options, 'optionalAccess', _55 => _55.compilerOptions, 'optionalAccess', _56 => _56.paths])) {
|
|
816
|
-
const paths = Object.entries(options.compilerOptions.paths);
|
|
817
|
-
const resolvedPaths = paths.map(([key, paths2]) => {
|
|
818
|
-
return [key, paths2.map((v) => path4.default.resolve(cwd, v))];
|
|
819
|
-
});
|
|
820
|
-
return Object.fromEntries(resolvedPaths);
|
|
821
|
-
}
|
|
822
|
-
if (options.extends) {
|
|
823
|
-
const extendsPath = path4.default.resolve(
|
|
824
|
-
projectRoot ? _chunkPZ5CI56Fjs.joinPaths.call(void 0, cwd, projectRoot, options.extends) : _chunkPZ5CI56Fjs.joinPaths.call(void 0, cwd, options.extends)
|
|
825
|
-
);
|
|
826
|
-
const extendsDir = path4.default.dirname(extendsPath);
|
|
827
|
-
const extendsConfig = _chunkMCKGQKYUjs.__require.call(void 0, extendsPath);
|
|
828
|
-
return resolvePathsConfig(extendsConfig, extendsDir);
|
|
829
|
-
}
|
|
830
|
-
return [];
|
|
831
|
-
}
|
|
832
|
-
var resolvePathsPlugin = (context) => ({
|
|
833
|
-
name: "storm:resolve-paths",
|
|
834
|
-
setup(build3) {
|
|
835
|
-
const parentTsConfig = build3.initialOptions.tsconfig ? _chunkMCKGQKYUjs.__require.call(void 0, _chunkPZ5CI56Fjs.joinPaths.call(void 0,
|
|
836
|
-
context.workspaceConfig.workspaceRoot,
|
|
837
|
-
build3.initialOptions.tsconfig.replace(
|
|
838
|
-
context.workspaceConfig.workspaceRoot,
|
|
839
|
-
""
|
|
840
|
-
)
|
|
841
|
-
)) : _chunkMCKGQKYUjs.__require.call(void 0, _chunkPZ5CI56Fjs.joinPaths.call(void 0, context.workspaceConfig.workspaceRoot, "tsconfig.json"));
|
|
842
|
-
const resolvedTsPaths = resolvePathsConfig(
|
|
843
|
-
parentTsConfig,
|
|
844
|
-
context.workspaceConfig.workspaceRoot,
|
|
845
|
-
context.options.projectRoot
|
|
846
|
-
);
|
|
847
|
-
const packagesRegex = new RegExp(
|
|
848
|
-
`^(${Object.keys(resolvedTsPaths).join("|")})$`
|
|
849
|
-
);
|
|
850
|
-
build3.onResolve({ filter: packagesRegex }, (args) => {
|
|
851
|
-
if (_optionalChain([build3, 'access', _57 => _57.initialOptions, 'access', _58 => _58.external, 'optionalAccess', _59 => _59.includes, 'call', _60 => _60(args.path)])) {
|
|
852
|
-
return { path: args.path, external: true };
|
|
853
|
-
}
|
|
854
|
-
return { path: `${resolvedTsPaths[args.path][0]}/index.ts` };
|
|
855
|
-
});
|
|
856
|
-
}
|
|
857
|
-
});
|
|
858
|
-
|
|
859
812
|
// ../esbuild/src/context.ts
|
|
860
813
|
async function resolveContext(userOptions) {
|
|
861
814
|
const projectRoot = userOptions.projectRoot;
|
|
@@ -883,7 +836,7 @@ async function resolveContext(userOptions) {
|
|
|
883
836
|
const projectJson = JSON.parse(projectJsonFile);
|
|
884
837
|
const projectName = projectJson.name || userOptions.name;
|
|
885
838
|
const projectConfigurations = _devkit.readProjectsConfigurationFromProjectGraph.call(void 0, projectGraph);
|
|
886
|
-
if (!_optionalChain([projectConfigurations, 'optionalAccess',
|
|
839
|
+
if (!_optionalChain([projectConfigurations, 'optionalAccess', _55 => _55.projects, 'optionalAccess', _56 => _56[projectName]])) {
|
|
887
840
|
throw new Error(
|
|
888
841
|
"The Build process failed because the project does not have a valid configuration in the project.json file. Check if the file exists in the root of the project."
|
|
889
842
|
);
|
|
@@ -935,10 +888,7 @@ async function resolveContext(userOptions) {
|
|
|
935
888
|
),
|
|
936
889
|
minify: resolvedOptions.minify || resolvedOptions.mode === "production"
|
|
937
890
|
};
|
|
938
|
-
context.options.esbuildPlugins = [
|
|
939
|
-
resolvePathsPlugin(context),
|
|
940
|
-
..._nullishCoalesce(context.options.esbuildPlugins, () => ( []))
|
|
941
|
-
];
|
|
891
|
+
context.options.esbuildPlugins = [..._nullishCoalesce(context.options.esbuildPlugins, () => ( []))];
|
|
942
892
|
return context;
|
|
943
893
|
}
|
|
944
894
|
|
|
@@ -1103,7 +1053,7 @@ var missingIgnore = [".prisma", "@prisma/client", "ts-toolbelt"];
|
|
|
1103
1053
|
var depsCheckPlugin = (bundle) => ({
|
|
1104
1054
|
name: "storm:deps-check",
|
|
1105
1055
|
setup(build3) {
|
|
1106
|
-
const pkgJsonPath =
|
|
1056
|
+
const pkgJsonPath = path3.default.join(process.cwd(), "package.json");
|
|
1107
1057
|
const pkgContents = _chunkMCKGQKYUjs.__require.call(void 0, pkgJsonPath);
|
|
1108
1058
|
const regDependencies = Object.keys(_nullishCoalesce(pkgContents["dependencies"], () => ( {})));
|
|
1109
1059
|
const devDependencies = Object.keys(_nullishCoalesce(pkgContents["devDependencies"], () => ( {})));
|
|
@@ -1173,7 +1123,7 @@ async function executeTsup(context) {
|
|
|
1173
1123
|
|
|
1174
1124
|
// ../esbuild/src/build.ts
|
|
1175
1125
|
async function reportResults(context) {
|
|
1176
|
-
if (_optionalChain([context, 'access',
|
|
1126
|
+
if (_optionalChain([context, 'access', _57 => _57.result, 'optionalAccess', _58 => _58.errors, 'access', _59 => _59.length]) === 0) {
|
|
1177
1127
|
if (context.result.warnings.length > 0) {
|
|
1178
1128
|
_chunkPZ5CI56Fjs.writeWarning.call(void 0,
|
|
1179
1129
|
` \u{1F6A7} The following warnings occurred during the build: ${context.result.warnings.map((warning) => warning.text).join("\n")}`,
|
|
@@ -1184,7 +1134,7 @@ async function reportResults(context) {
|
|
|
1184
1134
|
` \u{1F4E6} The ${context.options.name} build completed successfully`,
|
|
1185
1135
|
context.workspaceConfig
|
|
1186
1136
|
);
|
|
1187
|
-
} else if (_optionalChain([context, 'access',
|
|
1137
|
+
} else if (_optionalChain([context, 'access', _60 => _60.result, 'optionalAccess', _61 => _61.errors]) && _optionalChain([context, 'access', _62 => _62.result, 'optionalAccess', _63 => _63.errors, 'access', _64 => _64.length]) > 0) {
|
|
1188
1138
|
_chunkPZ5CI56Fjs.writeError.call(void 0,
|
|
1189
1139
|
` \u274C The ${context.options.name} build failed with the following errors: ${context.result.errors.map((error) => error.text).join("\n")}`,
|
|
1190
1140
|
context.workspaceConfig
|
|
@@ -1263,16 +1213,16 @@ async function build2(options) {
|
|
|
1263
1213
|
// ../workspace-tools/src/executors/esbuild/executor.ts
|
|
1264
1214
|
async function esbuildExecutorFn(options, context, config) {
|
|
1265
1215
|
_chunkPZ5CI56Fjs.writeInfo.call(void 0, "\u{1F4E6} Running Storm ESBuild executor on the workspace", config);
|
|
1266
|
-
if (!_optionalChain([context, 'access',
|
|
1216
|
+
if (!_optionalChain([context, 'access', _65 => _65.projectsConfigurations, 'optionalAccess', _66 => _66.projects]) || !context.projectName || !context.projectsConfigurations.projects[context.projectName] || !_optionalChain([context, 'access', _67 => _67.projectsConfigurations, 'access', _68 => _68.projects, 'access', _69 => _69[context.projectName], 'optionalAccess', _70 => _70.root])) {
|
|
1267
1217
|
throw new Error(
|
|
1268
1218
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
1269
1219
|
);
|
|
1270
1220
|
}
|
|
1271
1221
|
await build2({
|
|
1272
1222
|
...options,
|
|
1273
|
-
projectRoot: _optionalChain([context, 'access',
|
|
1223
|
+
projectRoot: _optionalChain([context, 'access', _71 => _71.projectsConfigurations, 'access', _72 => _72.projects, 'optionalAccess', _73 => _73[context.projectName], 'access', _74 => _74.root]),
|
|
1274
1224
|
name: context.projectName,
|
|
1275
|
-
sourceRoot: _optionalChain([context, 'access',
|
|
1225
|
+
sourceRoot: _optionalChain([context, 'access', _75 => _75.projectsConfigurations, 'access', _76 => _76.projects, 'optionalAccess', _77 => _77[context.projectName], 'optionalAccess', _78 => _78.sourceRoot]),
|
|
1276
1226
|
format: options.format,
|
|
1277
1227
|
platform: options.format
|
|
1278
1228
|
});
|
|
@@ -1316,15 +1266,15 @@ var _esbuildwhy = require('@size-limit/esbuild-why'); var _esbuildwhy2 = _intero
|
|
|
1316
1266
|
var _file = require('@size-limit/file'); var _file2 = _interopRequireDefault(_file);
|
|
1317
1267
|
var _sizelimit = require('size-limit'); var _sizelimit2 = _interopRequireDefault(_sizelimit);
|
|
1318
1268
|
async function sizeLimitExecutorFn(options, context, config) {
|
|
1319
|
-
if (!_optionalChain([context, 'optionalAccess',
|
|
1269
|
+
if (!_optionalChain([context, 'optionalAccess', _79 => _79.projectName]) || !_optionalChain([context, 'access', _80 => _80.projectsConfigurations, 'optionalAccess', _81 => _81.projects]) || !context.projectsConfigurations.projects[context.projectName]) {
|
|
1320
1270
|
throw new Error(
|
|
1321
1271
|
"The Size-Limit process failed because the context is not valid. Please run this command from a workspace."
|
|
1322
1272
|
);
|
|
1323
1273
|
}
|
|
1324
1274
|
_chunkPZ5CI56Fjs.writeInfo.call(void 0, `\u{1F4CF} Running Size-Limit on ${context.projectName}`, config);
|
|
1325
1275
|
_sizelimit2.default.call(void 0, [_file2.default, _esbuild3.default, _esbuildwhy2.default], {
|
|
1326
|
-
checks: _nullishCoalesce(_nullishCoalesce(options.entry, () => ( _optionalChain([context, 'access',
|
|
1327
|
-
_nullishCoalesce(_optionalChain([context, 'access',
|
|
1276
|
+
checks: _nullishCoalesce(_nullishCoalesce(options.entry, () => ( _optionalChain([context, 'access', _82 => _82.projectsConfigurations, 'access', _83 => _83.projects, 'access', _84 => _84[context.projectName], 'optionalAccess', _85 => _85.sourceRoot]))), () => ( _devkit.joinPathFragments.call(void 0,
|
|
1277
|
+
_nullishCoalesce(_optionalChain([context, 'access', _86 => _86.projectsConfigurations, 'access', _87 => _87.projects, 'access', _88 => _88[context.projectName], 'optionalAccess', _89 => _89.root]), () => ( "./")),
|
|
1328
1278
|
"src"
|
|
1329
1279
|
)))
|
|
1330
1280
|
}).then((result) => {
|
|
@@ -1394,7 +1344,7 @@ var executor_default8 = withRunExecutor(
|
|
|
1394
1344
|
var _jiti = require('jiti');
|
|
1395
1345
|
async function unbuildExecutorFn(options, context, config) {
|
|
1396
1346
|
_chunkPZ5CI56Fjs.writeInfo.call(void 0, "\u{1F4E6} Running Storm Unbuild executor on the workspace", config);
|
|
1397
|
-
if (!_optionalChain([context, 'access',
|
|
1347
|
+
if (!_optionalChain([context, 'access', _90 => _90.projectsConfigurations, 'optionalAccess', _91 => _91.projects]) || !context.projectName || !context.projectsConfigurations.projects[context.projectName]) {
|
|
1398
1348
|
throw new Error(
|
|
1399
1349
|
"The Build process failed because the context is not valid. Please run this command from a workspace root directory."
|
|
1400
1350
|
);
|
|
@@ -1508,7 +1458,7 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
1508
1458
|
);
|
|
1509
1459
|
config = await _chunkHBASMEU5js.getConfig.call(void 0, workspaceRoot3);
|
|
1510
1460
|
}
|
|
1511
|
-
if (_optionalChain([generatorOptions, 'optionalAccess',
|
|
1461
|
+
if (_optionalChain([generatorOptions, 'optionalAccess', _92 => _92.hooks, 'optionalAccess', _93 => _93.applyDefaultOptions])) {
|
|
1512
1462
|
_chunkPZ5CI56Fjs.writeDebug.call(void 0, "Running the applyDefaultOptions hook...", config);
|
|
1513
1463
|
options = await Promise.resolve(
|
|
1514
1464
|
generatorOptions.hooks.applyDefaultOptions(options, config)
|
|
@@ -1525,7 +1475,7 @@ ${Object.keys(_nullishCoalesce(options, () => ( {}))).map((key) => ` - ${key}=${
|
|
|
1525
1475
|
{ workspaceRoot: tree.root, config },
|
|
1526
1476
|
applyWorkspaceBaseTokens
|
|
1527
1477
|
);
|
|
1528
|
-
if (_optionalChain([generatorOptions, 'optionalAccess',
|
|
1478
|
+
if (_optionalChain([generatorOptions, 'optionalAccess', _94 => _94.hooks, 'optionalAccess', _95 => _95.preProcess])) {
|
|
1529
1479
|
_chunkPZ5CI56Fjs.writeDebug.call(void 0, "Running the preProcess hook...", config);
|
|
1530
1480
|
await Promise.resolve(
|
|
1531
1481
|
generatorOptions.hooks.preProcess(tokenized, config)
|
|
@@ -1536,15 +1486,15 @@ ${Object.keys(_nullishCoalesce(options, () => ( {}))).map((key) => ` - ${key}=${
|
|
|
1536
1486
|
generatorFn(tree, tokenized, config)
|
|
1537
1487
|
);
|
|
1538
1488
|
if (result) {
|
|
1539
|
-
if (result.success === false || result.error && _optionalChain([result, 'optionalAccess',
|
|
1489
|
+
if (result.success === false || result.error && _optionalChain([result, 'optionalAccess', _96 => _96.error, 'optionalAccess', _97 => _97.message]) && typeof _optionalChain([result, 'optionalAccess', _98 => _98.error, 'optionalAccess', _99 => _99.message]) === "string" && _optionalChain([result, 'optionalAccess', _100 => _100.error, 'optionalAccess', _101 => _101.name]) && typeof _optionalChain([result, 'optionalAccess', _102 => _102.error, 'optionalAccess', _103 => _103.name]) === "string") {
|
|
1540
1490
|
throw new Error(`The ${name} generator failed to run`, {
|
|
1541
|
-
cause: _optionalChain([result, 'optionalAccess',
|
|
1491
|
+
cause: _optionalChain([result, 'optionalAccess', _104 => _104.error])
|
|
1542
1492
|
});
|
|
1543
1493
|
} else if (result.success && result.data) {
|
|
1544
1494
|
return result;
|
|
1545
1495
|
}
|
|
1546
1496
|
}
|
|
1547
|
-
if (_optionalChain([generatorOptions, 'optionalAccess',
|
|
1497
|
+
if (_optionalChain([generatorOptions, 'optionalAccess', _105 => _105.hooks, 'optionalAccess', _106 => _106.postProcess])) {
|
|
1548
1498
|
_chunkPZ5CI56Fjs.writeDebug.call(void 0, "Running the postProcess hook...", config);
|
|
1549
1499
|
await Promise.resolve(generatorOptions.hooks.postProcess(config));
|
|
1550
1500
|
_chunkPZ5CI56Fjs.writeDebug.call(void 0, "Completed the postProcess hook", config);
|
|
@@ -1676,15 +1626,15 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
1676
1626
|
_devkit.addProjectConfiguration.call(void 0, tree, normalized.name, projectConfig);
|
|
1677
1627
|
let repository = {
|
|
1678
1628
|
type: "github",
|
|
1679
|
-
url: _optionalChain([config, 'optionalAccess',
|
|
1629
|
+
url: _optionalChain([config, 'optionalAccess', _107 => _107.repository]) || `https://github.com/${_optionalChain([config, 'optionalAccess', _108 => _108.organization]) || "storm-software"}/${_optionalChain([config, 'optionalAccess', _109 => _109.namespace]) || _optionalChain([config, 'optionalAccess', _110 => _110.name]) || "repository"}.git`
|
|
1680
1630
|
};
|
|
1681
1631
|
let description = options.description || "A package developed by Storm Software used to create modern, scalable web applications.";
|
|
1682
1632
|
if (tree.exists("package.json")) {
|
|
1683
1633
|
const packageJson = _devkit.readJson.call(void 0, tree, "package.json");
|
|
1684
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
1634
|
+
if (_optionalChain([packageJson, 'optionalAccess', _111 => _111.repository])) {
|
|
1685
1635
|
repository = packageJson.repository;
|
|
1686
1636
|
}
|
|
1687
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
1637
|
+
if (_optionalChain([packageJson, 'optionalAccess', _112 => _112.description])) {
|
|
1688
1638
|
description = packageJson.description;
|
|
1689
1639
|
}
|
|
1690
1640
|
}
|
|
@@ -1739,9 +1689,9 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
1739
1689
|
_devkit.updateJson.call(void 0, tree, "package.json", (json) => ({
|
|
1740
1690
|
...json,
|
|
1741
1691
|
pnpm: {
|
|
1742
|
-
..._optionalChain([json, 'optionalAccess',
|
|
1692
|
+
..._optionalChain([json, 'optionalAccess', _113 => _113.pnpm]),
|
|
1743
1693
|
overrides: {
|
|
1744
|
-
..._optionalChain([json, 'optionalAccess',
|
|
1694
|
+
..._optionalChain([json, 'optionalAccess', _114 => _114.pnpm, 'optionalAccess', _115 => _115.overrides]),
|
|
1745
1695
|
[_nullishCoalesce(normalized.importPath, () => ( ""))]: "workspace:*"
|
|
1746
1696
|
}
|
|
1747
1697
|
}
|
|
@@ -1759,10 +1709,10 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
1759
1709
|
]);
|
|
1760
1710
|
if (tree.exists("package.json")) {
|
|
1761
1711
|
const packageJson = _devkit.readJson.call(void 0, tree, "package.json");
|
|
1762
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
1712
|
+
if (_optionalChain([packageJson, 'optionalAccess', _116 => _116.repository])) {
|
|
1763
1713
|
repository = packageJson.repository;
|
|
1764
1714
|
}
|
|
1765
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
1715
|
+
if (_optionalChain([packageJson, 'optionalAccess', _117 => _117.description])) {
|
|
1766
1716
|
description = packageJson.description;
|
|
1767
1717
|
}
|
|
1768
1718
|
}
|
|
@@ -1799,22 +1749,22 @@ function getOutputPath(options) {
|
|
|
1799
1749
|
function createProjectTsConfigJson(tree, options) {
|
|
1800
1750
|
const tsconfig = {
|
|
1801
1751
|
extends: options.rootProject ? void 0 : _js.getRelativePathToRootTsConfig.call(void 0, tree, options.projectRoot),
|
|
1802
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
1752
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _118 => _118.tsconfigOptions]), () => ( {})),
|
|
1803
1753
|
compilerOptions: {
|
|
1804
1754
|
...options.rootProject ? _js.tsConfigBaseOptions : {},
|
|
1805
1755
|
outDir: _chunkPZ5CI56Fjs.joinPaths.call(void 0, _devkit.offsetFromRoot.call(void 0, options.projectRoot), "dist/out-tsc"),
|
|
1806
1756
|
noEmit: true,
|
|
1807
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
1757
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _119 => _119.tsconfigOptions, 'optionalAccess', _120 => _120.compilerOptions]), () => ( {}))
|
|
1808
1758
|
},
|
|
1809
|
-
files: [..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
1759
|
+
files: [..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _121 => _121.tsconfigOptions, 'optionalAccess', _122 => _122.files]), () => ( []))],
|
|
1810
1760
|
include: [
|
|
1811
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
1761
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _123 => _123.tsconfigOptions, 'optionalAccess', _124 => _124.include]), () => ( [])),
|
|
1812
1762
|
"src/**/*.ts",
|
|
1813
1763
|
"src/**/*.js",
|
|
1814
1764
|
"bin/**/*"
|
|
1815
1765
|
],
|
|
1816
1766
|
exclude: [
|
|
1817
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
1767
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _125 => _125.tsconfigOptions, 'optionalAccess', _126 => _126.exclude]), () => ( [])),
|
|
1818
1768
|
"jest.config.ts",
|
|
1819
1769
|
"src/**/*.spec.ts",
|
|
1820
1770
|
"src/**/*.test.ts"
|
|
@@ -1824,8 +1774,8 @@ function createProjectTsConfigJson(tree, options) {
|
|
|
1824
1774
|
}
|
|
1825
1775
|
async function normalizeOptions(tree, options, config) {
|
|
1826
1776
|
let importPath = options.importPath;
|
|
1827
|
-
if (!importPath && _optionalChain([config, 'optionalAccess',
|
|
1828
|
-
importPath = `@${_optionalChain([config, 'optionalAccess',
|
|
1777
|
+
if (!importPath && _optionalChain([config, 'optionalAccess', _127 => _127.namespace])) {
|
|
1778
|
+
importPath = `@${_optionalChain([config, 'optionalAccess', _128 => _128.namespace])}/${options.name}`;
|
|
1829
1779
|
}
|
|
1830
1780
|
if (options.publishable) {
|
|
1831
1781
|
if (!importPath) {
|
|
@@ -1981,8 +1931,8 @@ async function configSchemaGeneratorFn(tree, options, config) {
|
|
|
1981
1931
|
});
|
|
1982
1932
|
_chunkPZ5CI56Fjs.writeTrace.call(void 0, jsonSchema, config);
|
|
1983
1933
|
const outputPath = options.outputFile.replaceAll("{workspaceRoot}", "").replaceAll(
|
|
1984
|
-
_nullishCoalesce(_optionalChain([config, 'optionalAccess',
|
|
1985
|
-
_optionalChain([options, 'access',
|
|
1934
|
+
_nullishCoalesce(_optionalChain([config, 'optionalAccess', _129 => _129.workspaceRoot]), () => ( _chunkPZ5CI56Fjs.findWorkspaceRoot.call(void 0, ))),
|
|
1935
|
+
_optionalChain([options, 'access', _130 => _130.outputFile, 'optionalAccess', _131 => _131.startsWith, 'call', _132 => _132("./")]) ? "" : "./"
|
|
1986
1936
|
);
|
|
1987
1937
|
_chunkPZ5CI56Fjs.writeTrace.call(void 0,
|
|
1988
1938
|
`\u{1F4DD} Writing Storm Configuration JSON Schema to "${outputPath}"`,
|
|
@@ -2294,7 +2244,7 @@ async function presetGeneratorFn(tree, options) {
|
|
|
2294
2244
|
};
|
|
2295
2245
|
return json;
|
|
2296
2246
|
});
|
|
2297
|
-
_devkit.generateFiles.call(void 0, tree,
|
|
2247
|
+
_devkit.generateFiles.call(void 0, tree, path3.join(__dirname, "files"), projectRoot, {
|
|
2298
2248
|
...options,
|
|
2299
2249
|
pnpmVersion,
|
|
2300
2250
|
nodeVersion
|
|
@@ -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 _chunkZBQZJEOGjs = require('./chunk-ZBQZJEOG.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunkHBASMEU5js = require('./chunk-HBASMEU5.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 _chunkZBQZJEOGjs.generator_default.call(void 0, tree, {
|
|
70
70
|
...options,
|
|
71
71
|
skipFormat: true
|
|
72
72
|
})
|
|
@@ -810,53 +810,6 @@ var DEFAULT_BUILD_OPTIONS = {
|
|
|
810
810
|
}
|
|
811
811
|
};
|
|
812
812
|
|
|
813
|
-
// ../esbuild/src/plugins/resolve-paths.ts
|
|
814
|
-
import path2 from "node:path";
|
|
815
|
-
function resolvePathsConfig(options, cwd, projectRoot) {
|
|
816
|
-
if (options?.compilerOptions?.paths) {
|
|
817
|
-
const paths = Object.entries(options.compilerOptions.paths);
|
|
818
|
-
const resolvedPaths = paths.map(([key, paths2]) => {
|
|
819
|
-
return [key, paths2.map((v) => path2.resolve(cwd, v))];
|
|
820
|
-
});
|
|
821
|
-
return Object.fromEntries(resolvedPaths);
|
|
822
|
-
}
|
|
823
|
-
if (options.extends) {
|
|
824
|
-
const extendsPath = path2.resolve(
|
|
825
|
-
projectRoot ? joinPaths(cwd, projectRoot, options.extends) : joinPaths(cwd, options.extends)
|
|
826
|
-
);
|
|
827
|
-
const extendsDir = path2.dirname(extendsPath);
|
|
828
|
-
const extendsConfig = __require(extendsPath);
|
|
829
|
-
return resolvePathsConfig(extendsConfig, extendsDir);
|
|
830
|
-
}
|
|
831
|
-
return [];
|
|
832
|
-
}
|
|
833
|
-
var resolvePathsPlugin = (context) => ({
|
|
834
|
-
name: "storm:resolve-paths",
|
|
835
|
-
setup(build3) {
|
|
836
|
-
const parentTsConfig = build3.initialOptions.tsconfig ? __require(joinPaths(
|
|
837
|
-
context.workspaceConfig.workspaceRoot,
|
|
838
|
-
build3.initialOptions.tsconfig.replace(
|
|
839
|
-
context.workspaceConfig.workspaceRoot,
|
|
840
|
-
""
|
|
841
|
-
)
|
|
842
|
-
)) : __require(joinPaths(context.workspaceConfig.workspaceRoot, "tsconfig.json"));
|
|
843
|
-
const resolvedTsPaths = resolvePathsConfig(
|
|
844
|
-
parentTsConfig,
|
|
845
|
-
context.workspaceConfig.workspaceRoot,
|
|
846
|
-
context.options.projectRoot
|
|
847
|
-
);
|
|
848
|
-
const packagesRegex = new RegExp(
|
|
849
|
-
`^(${Object.keys(resolvedTsPaths).join("|")})$`
|
|
850
|
-
);
|
|
851
|
-
build3.onResolve({ filter: packagesRegex }, (args) => {
|
|
852
|
-
if (build3.initialOptions.external?.includes(args.path)) {
|
|
853
|
-
return { path: args.path, external: true };
|
|
854
|
-
}
|
|
855
|
-
return { path: `${resolvedTsPaths[args.path][0]}/index.ts` };
|
|
856
|
-
});
|
|
857
|
-
}
|
|
858
|
-
});
|
|
859
|
-
|
|
860
813
|
// ../esbuild/src/context.ts
|
|
861
814
|
async function resolveContext(userOptions) {
|
|
862
815
|
const projectRoot = userOptions.projectRoot;
|
|
@@ -936,10 +889,7 @@ async function resolveContext(userOptions) {
|
|
|
936
889
|
),
|
|
937
890
|
minify: resolvedOptions.minify || resolvedOptions.mode === "production"
|
|
938
891
|
};
|
|
939
|
-
context.options.esbuildPlugins = [
|
|
940
|
-
resolvePathsPlugin(context),
|
|
941
|
-
...context.options.esbuildPlugins ?? []
|
|
942
|
-
];
|
|
892
|
+
context.options.esbuildPlugins = [...context.options.esbuildPlugins ?? []];
|
|
943
893
|
return context;
|
|
944
894
|
}
|
|
945
895
|
|
|
@@ -1075,7 +1025,7 @@ async function generatePackageJson(context) {
|
|
|
1075
1025
|
|
|
1076
1026
|
// ../esbuild/src/plugins/deps-check.ts
|
|
1077
1027
|
import { builtinModules as builtinModules2 } from "node:module";
|
|
1078
|
-
import
|
|
1028
|
+
import path2 from "node:path";
|
|
1079
1029
|
var unusedIgnore = [
|
|
1080
1030
|
// these are our dev dependencies
|
|
1081
1031
|
/@types\/.*?/,
|
|
@@ -1104,7 +1054,7 @@ var missingIgnore = [".prisma", "@prisma/client", "ts-toolbelt"];
|
|
|
1104
1054
|
var depsCheckPlugin = (bundle) => ({
|
|
1105
1055
|
name: "storm:deps-check",
|
|
1106
1056
|
setup(build3) {
|
|
1107
|
-
const pkgJsonPath =
|
|
1057
|
+
const pkgJsonPath = path2.join(process.cwd(), "package.json");
|
|
1108
1058
|
const pkgContents = __require(pkgJsonPath);
|
|
1109
1059
|
const regDependencies = Object.keys(pkgContents["dependencies"] ?? {});
|
|
1110
1060
|
const devDependencies = Object.keys(pkgContents["devDependencies"] ?? {});
|
|
@@ -2147,7 +2097,7 @@ import {
|
|
|
2147
2097
|
joinPathFragments as joinPathFragments4,
|
|
2148
2098
|
updateJson as updateJson2
|
|
2149
2099
|
} from "@nx/devkit";
|
|
2150
|
-
import * as
|
|
2100
|
+
import * as path3 from "node:path";
|
|
2151
2101
|
async function presetGeneratorFn(tree, options) {
|
|
2152
2102
|
const projectRoot = ".";
|
|
2153
2103
|
options.description ??= `\u26A1The ${options.namespace ? options.namespace : options.name} monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.`;
|
|
@@ -2295,7 +2245,7 @@ async function presetGeneratorFn(tree, options) {
|
|
|
2295
2245
|
};
|
|
2296
2246
|
return json;
|
|
2297
2247
|
});
|
|
2298
|
-
generateFiles4(tree,
|
|
2248
|
+
generateFiles4(tree, path3.join(__dirname, "files"), projectRoot, {
|
|
2299
2249
|
...options,
|
|
2300
2250
|
pnpmVersion,
|
|
2301
2251
|
nodeVersion
|
|
@@ -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.55.
|
|
10
|
+
version: "0.55.88",
|
|
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",
|
|
@@ -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.55.
|
|
10
|
+
version: "0.55.88",
|
|
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",
|
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 _chunk7JQIASJ7js = require('./chunk-7JQIASJ7.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkZBQZJEOGjs = require('./chunk-ZBQZJEOG.js');
|
|
10
10
|
require('./chunk-HBASMEU5.js');
|
|
11
11
|
require('./chunk-PZ5CI56F.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 = _chunk7JQIASJ7js.applicationGenerator; exports.applicationSchematic = _chunk7JQIASJ7js.applicationSchematic; exports.initGenerator = _chunkZBQZJEOGjs.initGenerator; exports.initSchematic = _chunkZBQZJEOGjs.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-NEMOTOHF.mjs";
|
|
6
6
|
import {
|
|
7
7
|
initGenerator,
|
|
8
8
|
initSchematic
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-SKMJXTAG.mjs";
|
|
10
10
|
import "./chunk-GPAI4NHQ.mjs";
|
|
11
11
|
import "./chunk-MV24QW26.mjs";
|
|
12
12
|
import "./chunk-QQ22YQSB.mjs";
|
package/dist/index.js
CHANGED
|
@@ -3,14 +3,14 @@ require('./chunk-DHBG5ASJ.js');
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunk7JQIASJ7js = require('./chunk-7JQIASJ7.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkZBQZJEOGjs = require('./chunk-ZBQZJEOG.js');
|
|
11
11
|
require('./chunk-CVGPWUNP.js');
|
|
12
12
|
require('./chunk-I4P7DVDN.js');
|
|
13
|
-
require('./chunk-
|
|
13
|
+
require('./chunk-4WULYLQ3.js');
|
|
14
14
|
require('./chunk-HIUZ6UL7.js');
|
|
15
15
|
|
|
16
16
|
|
|
@@ -140,4 +140,4 @@ function createPackageJson(projectJsonPath, workspaceRoot) {
|
|
|
140
140
|
|
|
141
141
|
|
|
142
142
|
|
|
143
|
-
exports.applicationGenerator =
|
|
143
|
+
exports.applicationGenerator = _chunk7JQIASJ7js.applicationGenerator; exports.applicationSchematic = _chunk7JQIASJ7js.applicationSchematic; exports.createNodes = createNodes; exports.getInternalDependencies = _chunkRIUVF72Kjs.getInternalDependencies; exports.initGenerator = _chunkZBQZJEOGjs.initGenerator; exports.initSchematic = _chunkZBQZJEOGjs.initSchematic; exports.name = name; exports.r2UploadFile = _chunkRIUVF72Kjs.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-NEMOTOHF.mjs";
|
|
7
7
|
import {
|
|
8
8
|
initGenerator,
|
|
9
9
|
initSchematic
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-SKMJXTAG.mjs";
|
|
11
11
|
import "./chunk-7Z5PILRU.mjs";
|
|
12
12
|
import "./chunk-QPABB45G.mjs";
|
|
13
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-ABAI6EPS.mjs";
|
|
14
14
|
import "./chunk-ISGKIYF5.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 _chunkI4P7DVDNjs = require('../../../chunk-I4P7DVDN.js');
|
|
4
|
-
require('../../../chunk-
|
|
4
|
+
require('../../../chunk-4WULYLQ3.js');
|
|
5
5
|
require('../../../chunk-6XDOBG77.js');
|
|
6
6
|
require('../../../chunk-HBASMEU5.js');
|
|
7
7
|
require('../../../chunk-PZ5CI56F.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 _chunk4WULYLQ3js = require('../../../chunk-4WULYLQ3.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunk6XDOBG77js = require('../../../chunk-6XDOBG77.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 = _chunk4WULYLQ3js.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 _chunkZBQZJEOGjs = require('../../../chunk-ZBQZJEOG.js');
|
|
6
6
|
require('../../../chunk-MCKGQKYU.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunkZBQZJEOGjs.generator_default; exports.initGenerator = _chunkZBQZJEOGjs.initGenerator; exports.initSchematic = _chunkZBQZJEOGjs.initSchematic;
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
5
|
+
var _chunk7JQIASJ7js = require('../../../chunk-7JQIASJ7.js');
|
|
6
|
+
require('../../../chunk-ZBQZJEOG.js');
|
|
7
7
|
require('../../../chunk-HBASMEU5.js');
|
|
8
8
|
require('../../../chunk-PZ5CI56F.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 = _chunk7JQIASJ7js.applicationGenerator; exports.applicationSchematic = _chunk7JQIASJ7js.applicationSchematic; exports.default = _chunk7JQIASJ7js.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-NEMOTOHF.mjs";
|
|
6
|
+
import "../../../chunk-SKMJXTAG.mjs";
|
|
7
7
|
import "../../../chunk-GPAI4NHQ.mjs";
|
|
8
8
|
import "../../../chunk-MV24QW26.mjs";
|
|
9
9
|
import "../../../chunk-QQ22YQSB.mjs";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/cloudflare-tools",
|
|
3
|
-
"version": "0.55.
|
|
3
|
+
"version": "0.55.88",
|
|
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",
|