@storm-software/workspace-tools 1.264.20 → 1.264.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  # Changelog for Storm Ops - Workspace Tools
4
4
 
5
+ ## [1.264.21](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.264.21) (2025-03-18)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Regenerate README markdown files
10
+ ([2d7343483](https://github.com/storm-software/storm-ops/commit/2d7343483))
11
+
5
12
  ## [1.264.20](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.264.20) (2025-03-17)
6
13
 
7
14
  ### 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
- [![Version](https://img.shields.io/badge/version-1.264.19-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-1.264.20-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
@@ -1062,15 +1062,14 @@ var resolveOptions = /* @__PURE__ */ __name(async (userOptions) => {
1062
1062
  }, {})
1063
1063
  },
1064
1064
  inject: [
1065
- options.format === "cjs" && options.injectShims ? joinPaths(__dirname, "../assets/cjs_shims.js") : "",
1066
- options.format === "esm" && options.injectShims && options.platform === "node" ? joinPaths(__dirname, "../assets/esm_shims.js") : ""
1067
- ]
1065
+ options.format === "cjs" && options.injectShims ? joinPaths(__dirname, "../assets/cjs_shims.js") : void 0,
1066
+ options.format === "esm" && options.injectShims && options.platform === "node" ? joinPaths(__dirname, "../assets/esm_shims.js") : void 0
1067
+ ].filter(Boolean)
1068
1068
  };
1069
1069
  result.plugins = userOptions.plugins ?? getDefaultBuildPlugins(userOptions, result);
1070
- if (options.inject) {
1071
- options.inject = defu(result.inject, options.inject);
1070
+ if (options.inject && Array.isArray(options.inject) && options.inject.length > 0) {
1071
+ result.inject = defu(result.inject, options.inject);
1072
1072
  }
1073
- options.inject?.filter(Boolean);
1074
1073
  delete result.entry;
1075
1074
  delete result.outputPath;
1076
1075
  stopwatch();
@@ -1061,15 +1061,14 @@ var resolveOptions = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
1061
1061
  }, {})
1062
1062
  },
1063
1063
  inject: [
1064
- options.format === "cjs" && options.injectShims ? _chunkJTAXCQX6js.joinPaths.call(void 0, __dirname, "../assets/cjs_shims.js") : "",
1065
- options.format === "esm" && options.injectShims && options.platform === "node" ? _chunkJTAXCQX6js.joinPaths.call(void 0, __dirname, "../assets/esm_shims.js") : ""
1066
- ]
1064
+ options.format === "cjs" && options.injectShims ? _chunkJTAXCQX6js.joinPaths.call(void 0, __dirname, "../assets/cjs_shims.js") : void 0,
1065
+ options.format === "esm" && options.injectShims && options.platform === "node" ? _chunkJTAXCQX6js.joinPaths.call(void 0, __dirname, "../assets/esm_shims.js") : void 0
1066
+ ].filter(Boolean)
1067
1067
  };
1068
1068
  result.plugins = _nullishCoalesce(userOptions.plugins, () => ( getDefaultBuildPlugins(userOptions, result)));
1069
- if (options.inject) {
1070
- options.inject = _defu2.default.call(void 0, result.inject, options.inject);
1069
+ if (options.inject && Array.isArray(options.inject) && options.inject.length > 0) {
1070
+ result.inject = _defu2.default.call(void 0, result.inject, options.inject);
1071
1071
  }
1072
- _optionalChain([options, 'access', _45 => _45.inject, 'optionalAccess', _46 => _46.filter, 'call', _47 => _47(Boolean)]);
1073
1072
  delete result.entry;
1074
1073
  delete result.outputPath;
1075
1074
  stopwatch();
@@ -1195,7 +1194,7 @@ ${_chunkSPRQWSBEjs.formatLogMessage.call(void 0, options)}`, context2.options.co
1195
1194
  }
1196
1195
  _chunk3GQAWCBQjs.__name.call(void 0, executeEsBuild, "executeEsBuild");
1197
1196
  async function copyBuildAssets(context2) {
1198
- if (_optionalChain([context2, 'access', _48 => _48.result, 'optionalAccess', _49 => _49.errors, 'access', _50 => _50.length]) === 0) {
1197
+ if (_optionalChain([context2, 'access', _45 => _45.result, 'optionalAccess', _46 => _46.errors, 'access', _47 => _47.length]) === 0) {
1199
1198
  _chunkSPRQWSBEjs.writeDebug.call(void 0, ` \u{1F4CB} Copying asset files to output directory: ${context2.options.outdir}`, context2.options.config);
1200
1199
  const stopwatch = _chunkSPRQWSBEjs.getStopwatch.call(void 0, `${context2.options.name} asset copy`);
1201
1200
  await copyAssets(context2.options.config, _nullishCoalesce(context2.options.assets, () => ( [])), context2.options.outdir, context2.options.projectRoot, context2.options.sourceRoot, true, false);
@@ -1205,7 +1204,7 @@ async function copyBuildAssets(context2) {
1205
1204
  }
1206
1205
  _chunk3GQAWCBQjs.__name.call(void 0, copyBuildAssets, "copyBuildAssets");
1207
1206
  async function reportResults(context2) {
1208
- if (_optionalChain([context2, 'access', _51 => _51.result, 'optionalAccess', _52 => _52.errors, 'access', _53 => _53.length]) === 0) {
1207
+ if (_optionalChain([context2, 'access', _48 => _48.result, 'optionalAccess', _49 => _49.errors, 'access', _50 => _50.length]) === 0) {
1209
1208
  if (context2.result.warnings.length > 0) {
1210
1209
  _chunkSPRQWSBEjs.writeWarning.call(void 0, ` \u{1F6A7} The following warnings occurred during the build: ${context2.result.warnings.map((warning) => warning.text).join("\n")}`, context2.options.config);
1211
1210
  }
@@ -1306,14 +1305,14 @@ var watch = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (context2, opti
1306
1305
  // src/executors/esbuild/executor.ts
1307
1306
  async function esbuildExecutorFn(options, context2, config) {
1308
1307
  _chunkSPRQWSBEjs.writeInfo.call(void 0, "\u{1F4E6} Running Storm ESBuild executor on the workspace", config);
1309
- if (!_optionalChain([context2, 'access', _54 => _54.projectsConfigurations, 'optionalAccess', _55 => _55.projects]) || !context2.projectName || !context2.projectsConfigurations.projects[context2.projectName] || !_optionalChain([context2, 'access', _56 => _56.projectsConfigurations, 'access', _57 => _57.projects, 'access', _58 => _58[context2.projectName], 'optionalAccess', _59 => _59.root])) {
1308
+ if (!_optionalChain([context2, 'access', _51 => _51.projectsConfigurations, 'optionalAccess', _52 => _52.projects]) || !context2.projectName || !context2.projectsConfigurations.projects[context2.projectName] || !_optionalChain([context2, 'access', _53 => _53.projectsConfigurations, 'access', _54 => _54.projects, 'access', _55 => _55[context2.projectName], 'optionalAccess', _56 => _56.root])) {
1310
1309
  throw new Error("The Build process failed because the context is not valid. Please run this command from a workspace.");
1311
1310
  }
1312
1311
  await build3({
1313
1312
  ...options,
1314
- projectRoot: _optionalChain([context2, 'access', _60 => _60.projectsConfigurations, 'access', _61 => _61.projects, 'optionalAccess', _62 => _62[context2.projectName], 'access', _63 => _63.root]),
1313
+ projectRoot: _optionalChain([context2, 'access', _57 => _57.projectsConfigurations, 'access', _58 => _58.projects, 'optionalAccess', _59 => _59[context2.projectName], 'access', _60 => _60.root]),
1315
1314
  projectName: context2.projectName,
1316
- sourceRoot: _optionalChain([context2, 'access', _64 => _64.projectsConfigurations, 'access', _65 => _65.projects, 'optionalAccess', _66 => _66[context2.projectName], 'optionalAccess', _67 => _67.sourceRoot]),
1315
+ sourceRoot: _optionalChain([context2, 'access', _61 => _61.projectsConfigurations, 'access', _62 => _62.projects, 'optionalAccess', _63 => _63[context2.projectName], 'optionalAccess', _64 => _64.sourceRoot]),
1317
1316
  format: options.format,
1318
1317
  platform: options.format
1319
1318
  });
package/dist/executors.js CHANGED
@@ -19,7 +19,7 @@ var _chunkDJJEQUOEjs = require('./chunk-DJJEQUOE.js');
19
19
  var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
20
20
 
21
21
 
22
- var _chunkTLFV74ZVjs = require('./chunk-TLFV74ZV.js');
22
+ var _chunkKUPMTEZUjs = require('./chunk-KUPMTEZU.js');
23
23
 
24
24
 
25
25
  var _chunkDYKPDBZQjs = require('./chunk-DYKPDBZQ.js');
@@ -28,10 +28,10 @@ var _chunkDYKPDBZQjs = require('./chunk-DYKPDBZQ.js');
28
28
  var _chunkVGWC25SXjs = require('./chunk-VGWC25SX.js');
29
29
 
30
30
 
31
- var _chunkI44JBB55js = require('./chunk-I44JBB55.js');
31
+ var _chunk3MWOC5X7js = require('./chunk-3MWOC5X7.js');
32
32
 
33
33
 
34
- var _chunk3MWOC5X7js = require('./chunk-3MWOC5X7.js');
34
+ var _chunkI44JBB55js = require('./chunk-I44JBB55.js');
35
35
  require('./chunk-CUPARBOS.js');
36
36
  require('./chunk-ULBTYC2B.js');
37
37
  require('./chunk-ZMFVKBRM.js');
@@ -53,4 +53,4 @@ require('./chunk-3GQAWCBQ.js');
53
53
 
54
54
 
55
55
 
56
- exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkDYKPDBZQjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkVGWC25SXjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkI44JBB55js.cargoClippyExecutor; exports.cargoDocExecutor = _chunk3MWOC5X7js.cargoDocExecutor; exports.cargoFormatExecutor = _chunkDJJEQUOEjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkTLFV74ZVjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkASBO74YMjs.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunkEEMX5TF7js.typiaExecutorFn; exports.unbuildExecutorFn = _chunkTFNKD3A2js.unbuildExecutorFn;
56
+ exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkDYKPDBZQjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkVGWC25SXjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkI44JBB55js.cargoClippyExecutor; exports.cargoDocExecutor = _chunk3MWOC5X7js.cargoDocExecutor; exports.cargoFormatExecutor = _chunkDJJEQUOEjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkKUPMTEZUjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkASBO74YMjs.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunkEEMX5TF7js.typiaExecutorFn; exports.unbuildExecutorFn = _chunkTFNKD3A2js.unbuildExecutorFn;
@@ -19,19 +19,19 @@ import {
19
19
  } from "./chunk-3PWCELL5.mjs";
20
20
  import {
21
21
  esbuildExecutorFn
22
- } from "./chunk-WGRKPUAV.mjs";
22
+ } from "./chunk-3OLF2X22.mjs";
23
23
  import {
24
24
  cargoBuildExecutor
25
25
  } from "./chunk-MHZ6V7XS.mjs";
26
26
  import {
27
27
  cargoCheckExecutor
28
28
  } from "./chunk-TYTLMYMZ.mjs";
29
- import {
30
- cargoClippyExecutor
31
- } from "./chunk-7A34G3TI.mjs";
32
29
  import {
33
30
  cargoDocExecutor
34
31
  } from "./chunk-CEK44GFG.mjs";
32
+ import {
33
+ cargoClippyExecutor
34
+ } from "./chunk-7A34G3TI.mjs";
35
35
  import "./chunk-AD4BVP7F.mjs";
36
36
  import "./chunk-JIAGNEII.mjs";
37
37
  import "./chunk-7ENGREV2.mjs";
package/dist/index.js CHANGED
@@ -66,7 +66,7 @@ var _chunkDJJEQUOEjs = require('./chunk-DJJEQUOE.js');
66
66
  var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
67
67
 
68
68
 
69
- var _chunkTLFV74ZVjs = require('./chunk-TLFV74ZV.js');
69
+ var _chunkKUPMTEZUjs = require('./chunk-KUPMTEZU.js');
70
70
 
71
71
 
72
72
  var _chunkDYKPDBZQjs = require('./chunk-DYKPDBZQ.js');
@@ -75,10 +75,10 @@ var _chunkDYKPDBZQjs = require('./chunk-DYKPDBZQ.js');
75
75
  var _chunkVGWC25SXjs = require('./chunk-VGWC25SX.js');
76
76
 
77
77
 
78
- var _chunkI44JBB55js = require('./chunk-I44JBB55.js');
78
+ var _chunk3MWOC5X7js = require('./chunk-3MWOC5X7.js');
79
79
 
80
80
 
81
- var _chunk3MWOC5X7js = require('./chunk-3MWOC5X7.js');
81
+ var _chunkI44JBB55js = require('./chunk-I44JBB55.js');
82
82
 
83
83
 
84
84
  var _chunkCUPARBOSjs = require('./chunk-CUPARBOS.js');
@@ -282,4 +282,4 @@ require('./chunk-3GQAWCBQ.js');
282
282
 
283
283
 
284
284
 
285
- exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkPK2SUBWIjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPK2SUBWIjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPK2SUBWIjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPK2SUBWIjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPK2SUBWIjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunk7AXFMX2Tjs.PackageManagerTypes; exports.ProjectTagConstants = _chunk7YRW5HNXjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk4NOLUAQNjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk4NOLUAQNjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk4NOLUAQNjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk4NOLUAQNjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk4NOLUAQNjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk4NOLUAQNjs.ProjectTagVariant; exports.YARN_LOCK_FILE = _chunkPK2SUBWIjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPK2SUBWIjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkAC5SI4YZjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkKFT2TAHEjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkDYKPDBZQjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkVGWC25SXjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkI44JBB55js.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunk3MWOC5X7js.cargoDocExecutor; exports.cargoFormatExecutor = _chunkDJJEQUOEjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunkYCDNXKRBjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkTLFV74ZVjs.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunk7YRW5HNXjs.formatProjectTag; exports.getLockFileDependencies = _chunkPK2SUBWIjs.getLockFileDependencies; exports.getLockFileName = _chunkPK2SUBWIjs.getLockFileName; exports.getLockFileNodes = _chunkPK2SUBWIjs.getLockFileNodes; exports.getOutputPath = _chunkRBU35LQWjs.getOutputPath; exports.getPackageInfo = _chunk7AXFMX2Tjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkUF6KFXG5js.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkUF6KFXG5js.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkGKL4BY2Yjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkGKL4BY2Yjs.getProjectConfigurations; exports.getProjectPlatform = _chunkUF6KFXG5js.getProjectPlatform; exports.getProjectRoot = _chunkUF6KFXG5js.getProjectRoot; exports.getProjectTag = _chunk7YRW5HNXjs.getProjectTag; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.getTypiaTransform = _chunkXITP2BX2js.getTypiaTransform; exports.hasProjectTag = _chunk7YRW5HNXjs.hasProjectTag; exports.initGenerator = _chunk3IZ3O4OKjs.initGenerator; exports.isEqualProjectTag = _chunk7YRW5HNXjs.isEqualProjectTag; exports.isExternal = _chunkULBTYC2Bjs.isExternal; exports.lintStagedVersion = _chunkHI4G4OOGjs.lintStagedVersion; exports.lockFileExists = _chunkPK2SUBWIjs.lockFileExists; exports.modifyCargoNestedTable = _chunkZMFVKBRMjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkZMFVKBRMjs.modifyCargoTable; exports.neutralLibraryGeneratorFn = _chunkP5WJDR64js.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkIRPD2M2Ijs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkRBU35LQWjs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.parseCargoToml = _chunkZMFVKBRMjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkZMFVKBRMjs.parseCargoTomlWithTree; exports.pnpmCatalogUpdate = _chunkCUPARBOSjs.pnpmCatalogUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkIFB5HNMTjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkW25HMODDjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkASBO74YMjs.sizeLimitExecutorFn; exports.stringifyCargoToml = _chunkZMFVKBRMjs.stringifyCargoToml; exports.swcCliVersion = _chunkHI4G4OOGjs.swcCliVersion; exports.swcCoreVersion = _chunkHI4G4OOGjs.swcCoreVersion; exports.swcHelpersVersion = _chunkHI4G4OOGjs.swcHelpersVersion; exports.swcNodeVersion = _chunkHI4G4OOGjs.swcNodeVersion; exports.tsLibVersion = _chunkHI4G4OOGjs.tsLibVersion; exports.tsupVersion = _chunkHI4G4OOGjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkRBU35LQWjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkIWCQL3AQjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk7O34DHUGjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunkEEMX5TF7js.typiaExecutorFn; exports.unbuildExecutorFn = _chunkTFNKD3A2js.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunkIVNDY2FEjs.withRunExecutor; exports.withRunGenerator = _chunkSWKSEHJVjs.withRunGenerator;
285
+ exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkPK2SUBWIjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPK2SUBWIjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPK2SUBWIjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPK2SUBWIjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPK2SUBWIjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunk7AXFMX2Tjs.PackageManagerTypes; exports.ProjectTagConstants = _chunk7YRW5HNXjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk4NOLUAQNjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk4NOLUAQNjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk4NOLUAQNjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk4NOLUAQNjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk4NOLUAQNjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk4NOLUAQNjs.ProjectTagVariant; exports.YARN_LOCK_FILE = _chunkPK2SUBWIjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPK2SUBWIjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkAC5SI4YZjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkKFT2TAHEjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkDYKPDBZQjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkVGWC25SXjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkI44JBB55js.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunk3MWOC5X7js.cargoDocExecutor; exports.cargoFormatExecutor = _chunkDJJEQUOEjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunkYCDNXKRBjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkKUPMTEZUjs.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunk7YRW5HNXjs.formatProjectTag; exports.getLockFileDependencies = _chunkPK2SUBWIjs.getLockFileDependencies; exports.getLockFileName = _chunkPK2SUBWIjs.getLockFileName; exports.getLockFileNodes = _chunkPK2SUBWIjs.getLockFileNodes; exports.getOutputPath = _chunkRBU35LQWjs.getOutputPath; exports.getPackageInfo = _chunk7AXFMX2Tjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkUF6KFXG5js.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkUF6KFXG5js.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkGKL4BY2Yjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkGKL4BY2Yjs.getProjectConfigurations; exports.getProjectPlatform = _chunkUF6KFXG5js.getProjectPlatform; exports.getProjectRoot = _chunkUF6KFXG5js.getProjectRoot; exports.getProjectTag = _chunk7YRW5HNXjs.getProjectTag; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.getTypiaTransform = _chunkXITP2BX2js.getTypiaTransform; exports.hasProjectTag = _chunk7YRW5HNXjs.hasProjectTag; exports.initGenerator = _chunk3IZ3O4OKjs.initGenerator; exports.isEqualProjectTag = _chunk7YRW5HNXjs.isEqualProjectTag; exports.isExternal = _chunkULBTYC2Bjs.isExternal; exports.lintStagedVersion = _chunkHI4G4OOGjs.lintStagedVersion; exports.lockFileExists = _chunkPK2SUBWIjs.lockFileExists; exports.modifyCargoNestedTable = _chunkZMFVKBRMjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkZMFVKBRMjs.modifyCargoTable; exports.neutralLibraryGeneratorFn = _chunkP5WJDR64js.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkIRPD2M2Ijs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkRBU35LQWjs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.parseCargoToml = _chunkZMFVKBRMjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkZMFVKBRMjs.parseCargoTomlWithTree; exports.pnpmCatalogUpdate = _chunkCUPARBOSjs.pnpmCatalogUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkIFB5HNMTjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkW25HMODDjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkASBO74YMjs.sizeLimitExecutorFn; exports.stringifyCargoToml = _chunkZMFVKBRMjs.stringifyCargoToml; exports.swcCliVersion = _chunkHI4G4OOGjs.swcCliVersion; exports.swcCoreVersion = _chunkHI4G4OOGjs.swcCoreVersion; exports.swcHelpersVersion = _chunkHI4G4OOGjs.swcHelpersVersion; exports.swcNodeVersion = _chunkHI4G4OOGjs.swcNodeVersion; exports.tsLibVersion = _chunkHI4G4OOGjs.tsLibVersion; exports.tsupVersion = _chunkHI4G4OOGjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkRBU35LQWjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkIWCQL3AQjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk7O34DHUGjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunkEEMX5TF7js.typiaExecutorFn; exports.unbuildExecutorFn = _chunkTFNKD3A2js.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunkIVNDY2FEjs.withRunExecutor; exports.withRunGenerator = _chunkSWKSEHJVjs.withRunGenerator;
package/dist/index.mjs CHANGED
@@ -66,19 +66,19 @@ import {
66
66
  } from "./chunk-3PWCELL5.mjs";
67
67
  import {
68
68
  esbuildExecutorFn
69
- } from "./chunk-WGRKPUAV.mjs";
69
+ } from "./chunk-3OLF2X22.mjs";
70
70
  import {
71
71
  cargoBuildExecutor
72
72
  } from "./chunk-MHZ6V7XS.mjs";
73
73
  import {
74
74
  cargoCheckExecutor
75
75
  } from "./chunk-TYTLMYMZ.mjs";
76
- import {
77
- cargoClippyExecutor
78
- } from "./chunk-7A34G3TI.mjs";
79
76
  import {
80
77
  cargoDocExecutor
81
78
  } from "./chunk-CEK44GFG.mjs";
79
+ import {
80
+ cargoClippyExecutor
81
+ } from "./chunk-7A34G3TI.mjs";
82
82
  import {
83
83
  pnpmCatalogUpdate
84
84
  } from "./chunk-AD4BVP7F.mjs";
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkTLFV74ZVjs = require('../../../chunk-TLFV74ZV.js');
4
+ var _chunkKUPMTEZUjs = require('../../../chunk-KUPMTEZU.js');
5
5
  require('../../../chunk-IVNDY2FE.js');
6
6
  require('../../../chunk-UALZJZUK.js');
7
7
  require('../../../chunk-SPRQWSBE.js');
@@ -11,4 +11,4 @@ require('../../../chunk-3GQAWCBQ.js');
11
11
 
12
12
 
13
13
 
14
- exports.default = _chunkTLFV74ZVjs.executor_default; exports.esbuildExecutorFn = _chunkTLFV74ZVjs.esbuildExecutorFn;
14
+ exports.default = _chunkKUPMTEZUjs.executor_default; exports.esbuildExecutorFn = _chunkKUPMTEZUjs.esbuildExecutorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  esbuildExecutorFn,
3
3
  executor_default
4
- } from "../../../chunk-WGRKPUAV.mjs";
4
+ } from "../../../chunk-3OLF2X22.mjs";
5
5
  import "../../../chunk-5QWEZQFR.mjs";
6
6
  import "../../../chunk-AWKIWCLR.mjs";
7
7
  import "../../../chunk-AUU7AFJV.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.264.20",
3
+ "version": "1.264.21",
4
4
  "description": "Tools for managing a Storm workspace, including various Nx generators and executors for common development tasks.",
5
5
  "repository": {
6
6
  "type": "github",