@storm-software/workspace-tools 1.292.5 → 1.292.7

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,40 @@
2
2
 
3
3
  # Changelog for Storm Ops - Workspace Tools
4
4
 
5
+ ## [1.292.6](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.292.6) (2025-10-17)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Update workspace package links
10
+ ([af97dc773](https://github.com/storm-software/storm-ops/commit/af97dc773))
11
+
12
+ ### Updated Dependencies
13
+
14
+ - Updated pnpm-tools to 0.6.6
15
+ - Updated npm-tools to 0.5.6
16
+ - Updated prettier to 0.57.6
17
+ - Updated esbuild to 0.53.6
18
+ - Updated unbuild to 0.57.6
19
+ - Updated tsdown to 0.45.6
20
+
21
+ ## [1.292.5](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.292.5) (2025-10-17)
22
+
23
+ ### Miscellaneous
24
+
25
+ - **workspace-tools:** Clean up the error display in the base executor
26
+ ([64e4510e0](https://github.com/storm-software/storm-ops/commit/64e4510e0))
27
+ - **monorepo:** Update workspace package links
28
+ ([3ec988077](https://github.com/storm-software/storm-ops/commit/3ec988077))
29
+
30
+ ### Updated Dependencies
31
+
32
+ - Updated pnpm-tools to 0.6.5
33
+ - Updated npm-tools to 0.5.5
34
+ - Updated prettier to 0.57.5
35
+ - Updated esbuild to 0.53.5
36
+ - Updated unbuild to 0.57.5
37
+ - Updated tsdown to 0.45.5
38
+
5
39
  ## [1.292.4](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.292.4) (2025-10-17)
6
40
 
7
41
  ### 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.292.3-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.292.5-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 -->
@@ -330,13 +330,17 @@ async function generatePackageJson(context) {
330
330
  // ../tsup/src/index.ts
331
331
  var _tsup = require('tsup');
332
332
  async function build(options) {
333
- _chunk2CDSXWFAjs.writeDebug.call(void 0,
334
- ` \u{1F680} Running ${options.name || "tsup"} build`,
335
- options.workspaceConfig
336
- );
333
+ if (!options.silent) {
334
+ _chunk2CDSXWFAjs.writeDebug.call(void 0,
335
+ ` \u{1F680} Running ${options.name || "tsup"} build`,
336
+ options.workspaceConfig
337
+ );
338
+ }
337
339
  const stopwatch = _chunk2CDSXWFAjs.getStopwatch.call(void 0, `${options.name || "tsup"} build`);
338
340
  await _tsup.build.call(void 0, options);
339
- stopwatch();
341
+ if (!options.silent) {
342
+ stopwatch();
343
+ }
340
344
  }
341
345
 
342
346
  // ../esbuild/src/tsup.ts
@@ -330,13 +330,17 @@ async function generatePackageJson(context) {
330
330
  // ../tsup/src/index.ts
331
331
  import { build as tsup } from "tsup";
332
332
  async function build(options) {
333
- writeDebug(
334
- ` \u{1F680} Running ${options.name || "tsup"} build`,
335
- options.workspaceConfig
336
- );
333
+ if (!options.silent) {
334
+ writeDebug(
335
+ ` \u{1F680} Running ${options.name || "tsup"} build`,
336
+ options.workspaceConfig
337
+ );
338
+ }
337
339
  const stopwatch = getStopwatch(`${options.name || "tsup"} build`);
338
340
  await tsup(options);
339
- stopwatch();
341
+ if (!options.silent) {
342
+ stopwatch();
343
+ }
340
344
  }
341
345
 
342
346
  // ../esbuild/src/tsup.ts
package/dist/executors.js CHANGED
@@ -16,13 +16,13 @@ var _chunkADWXA4ZQjs = require('./chunk-ADWXA4ZQ.js');
16
16
  var _chunkSVSX2DDYjs = require('./chunk-SVSX2DDY.js');
17
17
 
18
18
 
19
- var _chunk5Z2FOAF6js = require('./chunk-5Z2FOAF6.js');
19
+ var _chunk3JD245PMjs = require('./chunk-3JD245PM.js');
20
20
 
21
21
 
22
22
  var _chunkWRXLSZ6Ijs = require('./chunk-WRXLSZ6I.js');
23
23
 
24
24
 
25
- var _chunkIK74PRVHjs = require('./chunk-IK74PRVH.js');
25
+ var _chunkMYFQ64WEjs = require('./chunk-MYFQ64WE.js');
26
26
  require('./chunk-FSYURQ5X.js');
27
27
 
28
28
 
@@ -35,7 +35,7 @@ var _chunkJOWRO646js = require('./chunk-JOWRO646.js');
35
35
  var _chunkVWQYDQYVjs = require('./chunk-VWQYDQYV.js');
36
36
 
37
37
 
38
- var _chunk3JD245PMjs = require('./chunk-3JD245PM.js');
38
+ var _chunk5Z2FOAF6js = require('./chunk-5Z2FOAF6.js');
39
39
  require('./chunk-7QY4X73C.js');
40
40
  require('./chunk-LJDV7HFT.js');
41
41
  require('./chunk-J4I6MJT2.js');
@@ -60,4 +60,4 @@ require('./chunk-G2L3EEEO.js');
60
60
 
61
61
 
62
62
 
63
- exports.LARGE_BUFFER = _chunkMGF3DTWMjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkF23XFCK3js.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkJOWRO646js.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkVWQYDQYVjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunk5Z2FOAF6js.cargoDocExecutor; exports.cargoFormatExecutor = _chunk3JD245PMjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkIK74PRVHjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkWRXLSZ6Ijs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunk5C7DI3NFjs.sizeLimitExecutorFn; exports.tsdownExecutorFn = _chunkADWXA4ZQjs.tsdownExecutorFn; exports.typiaExecutorFn = _chunkSVSX2DDYjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkYNZUCZH3js.unbuildExecutorFn;
63
+ exports.LARGE_BUFFER = _chunkMGF3DTWMjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkF23XFCK3js.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkJOWRO646js.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkVWQYDQYVjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunk5Z2FOAF6js.cargoDocExecutor; exports.cargoFormatExecutor = _chunk3JD245PMjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkMYFQ64WEjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkWRXLSZ6Ijs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunk5C7DI3NFjs.sizeLimitExecutorFn; exports.tsdownExecutorFn = _chunkADWXA4ZQjs.tsdownExecutorFn; exports.typiaExecutorFn = _chunkSVSX2DDYjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkYNZUCZH3js.unbuildExecutorFn;
@@ -15,14 +15,14 @@ import {
15
15
  typiaExecutorFn
16
16
  } from "./chunk-BCXNBLCP.mjs";
17
17
  import {
18
- cargoDocExecutor
19
- } from "./chunk-DSC7W7VD.mjs";
18
+ cargoFormatExecutor
19
+ } from "./chunk-6FX2E553.mjs";
20
20
  import {
21
21
  getRegistryVersion
22
22
  } from "./chunk-7DLHAWLG.mjs";
23
23
  import {
24
24
  esbuildExecutorFn
25
- } from "./chunk-2URVGYNV.mjs";
25
+ } from "./chunk-NXWRHUNL.mjs";
26
26
  import "./chunk-F3NQOV2M.mjs";
27
27
  import {
28
28
  cargoBuildExecutor
@@ -34,8 +34,8 @@ import {
34
34
  cargoClippyExecutor
35
35
  } from "./chunk-BC7TUSC7.mjs";
36
36
  import {
37
- cargoFormatExecutor
38
- } from "./chunk-6FX2E553.mjs";
37
+ cargoDocExecutor
38
+ } from "./chunk-DSC7W7VD.mjs";
39
39
  import "./chunk-UCXAD2SG.mjs";
40
40
  import "./chunk-6LP3KKXE.mjs";
41
41
  import "./chunk-JLXBL5BC.mjs";
@@ -1,6 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-INERRJ6Q.js');
2
2
 
3
3
 
4
+ var _chunkWEL4BVFXjs = require('./chunk-WEL4BVFX.js');
5
+
6
+
4
7
  var _chunkT5BI42AOjs = require('./chunk-T5BI42AO.js');
5
8
 
6
9
 
@@ -10,9 +13,6 @@ var _chunkYMZQ7GGXjs = require('./chunk-YMZQ7GGX.js');
10
13
  var _chunkJ3WZEN2Ujs = require('./chunk-J3WZEN2U.js');
11
14
 
12
15
 
13
- var _chunkWEL4BVFXjs = require('./chunk-WEL4BVFX.js');
14
-
15
-
16
16
  var _chunk6A7OOTO2js = require('./chunk-6A7OOTO2.js');
17
17
 
18
18
 
@@ -1,4 +1,7 @@
1
1
  import "./chunk-RLIZVCIN.mjs";
2
+ import {
3
+ releaseVersionGeneratorFn
4
+ } from "./chunk-ZZWU35JU.mjs";
2
5
  import {
3
6
  neutralLibraryGeneratorFn
4
7
  } from "./chunk-2ONEZU6V.mjs";
@@ -8,9 +11,6 @@ import {
8
11
  import {
9
12
  presetGeneratorFn
10
13
  } from "./chunk-YNLDYAEE.mjs";
11
- import {
12
- releaseVersionGeneratorFn
13
- } from "./chunk-ZZWU35JU.mjs";
14
14
  import {
15
15
  browserLibraryGeneratorFn
16
16
  } from "./chunk-B4RJUBHW.mjs";
package/dist/index.js CHANGED
@@ -65,13 +65,13 @@ var _chunkADWXA4ZQjs = require('./chunk-ADWXA4ZQ.js');
65
65
  var _chunkSVSX2DDYjs = require('./chunk-SVSX2DDY.js');
66
66
 
67
67
 
68
- var _chunk5Z2FOAF6js = require('./chunk-5Z2FOAF6.js');
68
+ var _chunk3JD245PMjs = require('./chunk-3JD245PM.js');
69
69
 
70
70
 
71
71
  var _chunkWRXLSZ6Ijs = require('./chunk-WRXLSZ6I.js');
72
72
 
73
73
 
74
- var _chunkIK74PRVHjs = require('./chunk-IK74PRVH.js');
74
+ var _chunkMYFQ64WEjs = require('./chunk-MYFQ64WE.js');
75
75
  require('./chunk-FSYURQ5X.js');
76
76
 
77
77
 
@@ -84,7 +84,7 @@ var _chunkJOWRO646js = require('./chunk-JOWRO646.js');
84
84
  var _chunkVWQYDQYVjs = require('./chunk-VWQYDQYV.js');
85
85
 
86
86
 
87
- var _chunk3JD245PMjs = require('./chunk-3JD245PM.js');
87
+ var _chunk5Z2FOAF6js = require('./chunk-5Z2FOAF6.js');
88
88
 
89
89
 
90
90
 
@@ -104,6 +104,9 @@ var _chunkLJDV7HFTjs = require('./chunk-LJDV7HFT.js');
104
104
  require('./chunk-INERRJ6Q.js');
105
105
 
106
106
 
107
+ var _chunkWEL4BVFXjs = require('./chunk-WEL4BVFX.js');
108
+
109
+
107
110
  var _chunkT5BI42AOjs = require('./chunk-T5BI42AO.js');
108
111
 
109
112
 
@@ -113,9 +116,6 @@ var _chunkYMZQ7GGXjs = require('./chunk-YMZQ7GGX.js');
113
116
  var _chunkJ3WZEN2Ujs = require('./chunk-J3WZEN2U.js');
114
117
 
115
118
 
116
- var _chunkWEL4BVFXjs = require('./chunk-WEL4BVFX.js');
117
-
118
-
119
119
  var _chunk6A7OOTO2js = require('./chunk-6A7OOTO2.js');
120
120
 
121
121
 
@@ -285,4 +285,4 @@ var _chunk7CJRMBX3js = require('./chunk-7CJRMBX3.js');
285
285
 
286
286
 
287
287
 
288
- exports.INVALID_CARGO_ARGS = _chunkLJDV7HFTjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkMGF3DTWMjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkXZSS3YABjs.LOCK_FILES; exports.NAMED_INPUTS = _chunkIBTPJDV6js.NAMED_INPUTS; exports.NPM_LOCK_FILE = _chunkXZSS3YABjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkXZSS3YABjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkXZSS3YABjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkXZSS3YABjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunk7QY4X73Cjs.PackageManagerTypes; exports.ProjectTagConstants = _chunkAX3RSZT7js.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.RELEASE = _chunkIBTPJDV6js.RELEASE; exports.YARN_LOCK_FILE = _chunkXZSS3YABjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkXZSS3YABjs.YARN_LOCK_PATH; exports.addPackageJsonGitHead = _chunk7QY4X73Cjs.addPackageJsonGitHead; exports.addPluginProjectTag = _chunkAX3RSZT7js.addPluginProjectTag; exports.addProjectTag = _chunkAX3RSZT7js.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkKLUJ3GE7js.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunk6A7OOTO2js.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkLJDV7HFTjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk5ZFTWEKBjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkF23XFCK3js.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkJOWRO646js.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkVWQYDQYVjs.cargoClippyExecutor; exports.cargoCommand = _chunkLJDV7HFTjs.cargoCommand; exports.cargoCommandSync = _chunkLJDV7HFTjs.cargoCommandSync; exports.cargoDocExecutor = _chunk5Z2FOAF6js.cargoDocExecutor; exports.cargoFormatExecutor = _chunk3JD245PMjs.cargoFormatExecutor; exports.cargoMetadata = _chunkLJDV7HFTjs.cargoMetadata; exports.cargoRunCommand = _chunkLJDV7HFTjs.cargoRunCommand; exports.childProcess = _chunkLJDV7HFTjs.childProcess; exports.configSchemaGeneratorFn = _chunkMBO4Z5AVjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkQVYCDINGjs.createCliOptions; exports.createProjectTsConfigJson = _chunk4HV5G4DTjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkIK74PRVHjs.esbuildExecutorFn; exports.eslintVersion = _chunkSZWM7COVjs.eslintVersion; exports.formatProjectTag = _chunkAX3RSZT7js.formatProjectTag; exports.getLockFileDependencies = _chunkXZSS3YABjs.getLockFileDependencies; exports.getLockFileName = _chunkXZSS3YABjs.getLockFileName; exports.getLockFileNodes = _chunkXZSS3YABjs.getLockFileNodes; exports.getOutputPath = _chunk4HV5G4DTjs.getOutputPath; exports.getPackageInfo = _chunk7QY4X73Cjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkJ6F3WHRBjs.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkJ6F3WHRBjs.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunk3Q7VPB75js.getProjectConfiguration; exports.getProjectConfigurations = _chunk3Q7VPB75js.getProjectConfigurations; exports.getProjectPlatform = _chunkJ6F3WHRBjs.getProjectPlatform; exports.getProjectRoot = _chunkJ6F3WHRBjs.getProjectRoot; exports.getProjectTag = _chunkAX3RSZT7js.getProjectTag; exports.getRegistryVersion = _chunkWRXLSZ6Ijs.getRegistryVersion; exports.getRoot = _chunkJ6F3WHRBjs.getRoot; exports.getTypiaTransform = _chunk6EMYX25Vjs.getTypiaTransform; exports.hasProjectTag = _chunkAX3RSZT7js.hasProjectTag; exports.initGenerator = _chunkOKSECMVKjs.initGenerator; exports.isEqualProjectTag = _chunkAX3RSZT7js.isEqualProjectTag; exports.isExternal = _chunkLJDV7HFTjs.isExternal; exports.lintStagedVersion = _chunkSZWM7COVjs.lintStagedVersion; exports.lockFileExists = _chunkXZSS3YABjs.lockFileExists; exports.neutralLibraryGeneratorFn = _chunkT5BI42AOjs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkYMZQ7GGXjs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkSZWM7COVjs.nodeVersion; exports.normalizeOptions = _chunk4HV5G4DTjs.normalizeOptions; exports.nxVersion = _chunkSZWM7COVjs.nxVersion; exports.pnpmVersion = _chunkSZWM7COVjs.pnpmVersion; exports.presetGeneratorFn = _chunkJ3WZEN2Ujs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkSZWM7COVjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkSZWM7COVjs.prettierPrismaVersion; exports.prettierVersion = _chunkSZWM7COVjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkWEL4BVFXjs.releaseVersionGeneratorFn; exports.runProcess = _chunkLJDV7HFTjs.runProcess; exports.semanticReleaseVersion = _chunkSZWM7COVjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunkAX3RSZT7js.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunk5C7DI3NFjs.sizeLimitExecutorFn; exports.swcCliVersion = _chunkSZWM7COVjs.swcCliVersion; exports.swcCoreVersion = _chunkSZWM7COVjs.swcCoreVersion; exports.swcHelpersVersion = _chunkSZWM7COVjs.swcHelpersVersion; exports.swcNodeVersion = _chunkSZWM7COVjs.swcNodeVersion; exports.tsLibVersion = _chunkSZWM7COVjs.tsLibVersion; exports.tsdownExecutorFn = _chunkADWXA4ZQjs.tsdownExecutorFn; exports.tsupVersion = _chunkSZWM7COVjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunk4HV5G4DTjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkSZWM7COVjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkCLMAB7TAjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk2AVWFUXPjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkSZWM7COVjs.typescriptVersion; exports.typiaExecutorFn = _chunkSVSX2DDYjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkYNZUCZH3js.unbuildExecutorFn; exports.verdaccioVersion = _chunkSZWM7COVjs.verdaccioVersion; exports.withNamedInputs = _chunkIBTPJDV6js.withNamedInputs; exports.withRunExecutor = _chunkTCC635LOjs.withRunExecutor; exports.withRunGenerator = _chunkXYDGMWNMjs.withRunGenerator;
288
+ exports.INVALID_CARGO_ARGS = _chunkLJDV7HFTjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkMGF3DTWMjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkXZSS3YABjs.LOCK_FILES; exports.NAMED_INPUTS = _chunkIBTPJDV6js.NAMED_INPUTS; exports.NPM_LOCK_FILE = _chunkXZSS3YABjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkXZSS3YABjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkXZSS3YABjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkXZSS3YABjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunk7QY4X73Cjs.PackageManagerTypes; exports.ProjectTagConstants = _chunkAX3RSZT7js.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.RELEASE = _chunkIBTPJDV6js.RELEASE; exports.YARN_LOCK_FILE = _chunkXZSS3YABjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkXZSS3YABjs.YARN_LOCK_PATH; exports.addPackageJsonGitHead = _chunk7QY4X73Cjs.addPackageJsonGitHead; exports.addPluginProjectTag = _chunkAX3RSZT7js.addPluginProjectTag; exports.addProjectTag = _chunkAX3RSZT7js.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkKLUJ3GE7js.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunk6A7OOTO2js.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkLJDV7HFTjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk5ZFTWEKBjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkF23XFCK3js.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkJOWRO646js.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkVWQYDQYVjs.cargoClippyExecutor; exports.cargoCommand = _chunkLJDV7HFTjs.cargoCommand; exports.cargoCommandSync = _chunkLJDV7HFTjs.cargoCommandSync; exports.cargoDocExecutor = _chunk5Z2FOAF6js.cargoDocExecutor; exports.cargoFormatExecutor = _chunk3JD245PMjs.cargoFormatExecutor; exports.cargoMetadata = _chunkLJDV7HFTjs.cargoMetadata; exports.cargoRunCommand = _chunkLJDV7HFTjs.cargoRunCommand; exports.childProcess = _chunkLJDV7HFTjs.childProcess; exports.configSchemaGeneratorFn = _chunkMBO4Z5AVjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkQVYCDINGjs.createCliOptions; exports.createProjectTsConfigJson = _chunk4HV5G4DTjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkMYFQ64WEjs.esbuildExecutorFn; exports.eslintVersion = _chunkSZWM7COVjs.eslintVersion; exports.formatProjectTag = _chunkAX3RSZT7js.formatProjectTag; exports.getLockFileDependencies = _chunkXZSS3YABjs.getLockFileDependencies; exports.getLockFileName = _chunkXZSS3YABjs.getLockFileName; exports.getLockFileNodes = _chunkXZSS3YABjs.getLockFileNodes; exports.getOutputPath = _chunk4HV5G4DTjs.getOutputPath; exports.getPackageInfo = _chunk7QY4X73Cjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkJ6F3WHRBjs.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkJ6F3WHRBjs.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunk3Q7VPB75js.getProjectConfiguration; exports.getProjectConfigurations = _chunk3Q7VPB75js.getProjectConfigurations; exports.getProjectPlatform = _chunkJ6F3WHRBjs.getProjectPlatform; exports.getProjectRoot = _chunkJ6F3WHRBjs.getProjectRoot; exports.getProjectTag = _chunkAX3RSZT7js.getProjectTag; exports.getRegistryVersion = _chunkWRXLSZ6Ijs.getRegistryVersion; exports.getRoot = _chunkJ6F3WHRBjs.getRoot; exports.getTypiaTransform = _chunk6EMYX25Vjs.getTypiaTransform; exports.hasProjectTag = _chunkAX3RSZT7js.hasProjectTag; exports.initGenerator = _chunkOKSECMVKjs.initGenerator; exports.isEqualProjectTag = _chunkAX3RSZT7js.isEqualProjectTag; exports.isExternal = _chunkLJDV7HFTjs.isExternal; exports.lintStagedVersion = _chunkSZWM7COVjs.lintStagedVersion; exports.lockFileExists = _chunkXZSS3YABjs.lockFileExists; exports.neutralLibraryGeneratorFn = _chunkT5BI42AOjs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkYMZQ7GGXjs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkSZWM7COVjs.nodeVersion; exports.normalizeOptions = _chunk4HV5G4DTjs.normalizeOptions; exports.nxVersion = _chunkSZWM7COVjs.nxVersion; exports.pnpmVersion = _chunkSZWM7COVjs.pnpmVersion; exports.presetGeneratorFn = _chunkJ3WZEN2Ujs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkSZWM7COVjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkSZWM7COVjs.prettierPrismaVersion; exports.prettierVersion = _chunkSZWM7COVjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkWEL4BVFXjs.releaseVersionGeneratorFn; exports.runProcess = _chunkLJDV7HFTjs.runProcess; exports.semanticReleaseVersion = _chunkSZWM7COVjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunkAX3RSZT7js.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunk5C7DI3NFjs.sizeLimitExecutorFn; exports.swcCliVersion = _chunkSZWM7COVjs.swcCliVersion; exports.swcCoreVersion = _chunkSZWM7COVjs.swcCoreVersion; exports.swcHelpersVersion = _chunkSZWM7COVjs.swcHelpersVersion; exports.swcNodeVersion = _chunkSZWM7COVjs.swcNodeVersion; exports.tsLibVersion = _chunkSZWM7COVjs.tsLibVersion; exports.tsdownExecutorFn = _chunkADWXA4ZQjs.tsdownExecutorFn; exports.tsupVersion = _chunkSZWM7COVjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunk4HV5G4DTjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkSZWM7COVjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkCLMAB7TAjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk2AVWFUXPjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkSZWM7COVjs.typescriptVersion; exports.typiaExecutorFn = _chunkSVSX2DDYjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkYNZUCZH3js.unbuildExecutorFn; exports.verdaccioVersion = _chunkSZWM7COVjs.verdaccioVersion; exports.withNamedInputs = _chunkIBTPJDV6js.withNamedInputs; exports.withRunExecutor = _chunkTCC635LOjs.withRunExecutor; exports.withRunGenerator = _chunkXYDGMWNMjs.withRunGenerator;
package/dist/index.mjs CHANGED
@@ -64,14 +64,14 @@ import {
64
64
  typiaExecutorFn
65
65
  } from "./chunk-BCXNBLCP.mjs";
66
66
  import {
67
- cargoDocExecutor
68
- } from "./chunk-DSC7W7VD.mjs";
67
+ cargoFormatExecutor
68
+ } from "./chunk-6FX2E553.mjs";
69
69
  import {
70
70
  getRegistryVersion
71
71
  } from "./chunk-7DLHAWLG.mjs";
72
72
  import {
73
73
  esbuildExecutorFn
74
- } from "./chunk-2URVGYNV.mjs";
74
+ } from "./chunk-NXWRHUNL.mjs";
75
75
  import "./chunk-F3NQOV2M.mjs";
76
76
  import {
77
77
  cargoBuildExecutor
@@ -83,8 +83,8 @@ import {
83
83
  cargoClippyExecutor
84
84
  } from "./chunk-BC7TUSC7.mjs";
85
85
  import {
86
- cargoFormatExecutor
87
- } from "./chunk-6FX2E553.mjs";
86
+ cargoDocExecutor
87
+ } from "./chunk-DSC7W7VD.mjs";
88
88
  import {
89
89
  PackageManagerTypes,
90
90
  addPackageJsonGitHead,
@@ -102,6 +102,9 @@ import {
102
102
  runProcess
103
103
  } from "./chunk-6LP3KKXE.mjs";
104
104
  import "./chunk-RLIZVCIN.mjs";
105
+ import {
106
+ releaseVersionGeneratorFn
107
+ } from "./chunk-ZZWU35JU.mjs";
105
108
  import {
106
109
  neutralLibraryGeneratorFn
107
110
  } from "./chunk-2ONEZU6V.mjs";
@@ -111,9 +114,6 @@ import {
111
114
  import {
112
115
  presetGeneratorFn
113
116
  } from "./chunk-YNLDYAEE.mjs";
114
- import {
115
- releaseVersionGeneratorFn
116
- } from "./chunk-ZZWU35JU.mjs";
117
117
  import {
118
118
  browserLibraryGeneratorFn
119
119
  } from "./chunk-B4RJUBHW.mjs";
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkIK74PRVHjs = require('../../../chunk-IK74PRVH.js');
4
+ var _chunkMYFQ64WEjs = require('../../../chunk-MYFQ64WE.js');
5
5
  require('../../../chunk-FSYURQ5X.js');
6
6
  require('../../../chunk-TCC635LO.js');
7
7
  require('../../../chunk-LA2KY2TQ.js');
@@ -12,4 +12,4 @@ require('../../../chunk-G2L3EEEO.js');
12
12
 
13
13
 
14
14
 
15
- exports.default = _chunkIK74PRVHjs.executor_default; exports.esbuildExecutorFn = _chunkIK74PRVHjs.esbuildExecutorFn;
15
+ exports.default = _chunkMYFQ64WEjs.executor_default; exports.esbuildExecutorFn = _chunkMYFQ64WEjs.esbuildExecutorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  esbuildExecutorFn,
3
3
  executor_default
4
- } from "../../../chunk-2URVGYNV.mjs";
4
+ } from "../../../chunk-NXWRHUNL.mjs";
5
5
  import "../../../chunk-F3NQOV2M.mjs";
6
6
  import "../../../chunk-ZTFZJPOM.mjs";
7
7
  import "../../../chunk-76SRFTZ2.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.292.5",
3
+ "version": "1.292.7",
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",
@@ -209,12 +209,12 @@
209
209
  "@size-limit/esbuild": "11.1.4",
210
210
  "@size-limit/esbuild-why": "11.1.4",
211
211
  "@size-limit/file": "11.1.4",
212
- "@storm-software/esbuild": "^0.53.5",
213
- "@storm-software/npm-tools": "^0.5.5",
214
- "@storm-software/pnpm-tools": "^0.6.5",
215
- "@storm-software/prettier": "^0.57.5",
216
- "@storm-software/tsdown": "^0.45.5",
217
- "@storm-software/unbuild": "^0.57.5",
212
+ "@storm-software/esbuild": "^0.53.7",
213
+ "@storm-software/npm-tools": "^0.5.7",
214
+ "@storm-software/pnpm-tools": "^0.6.7",
215
+ "@storm-software/prettier": "^0.57.7",
216
+ "@storm-software/tsdown": "^0.45.7",
217
+ "@storm-software/unbuild": "^0.57.7",
218
218
  "fs-extra": "11.2.0",
219
219
  "glob": "^11.0.1",
220
220
  "jiti": "^2.4.2",
@@ -239,5 +239,5 @@
239
239
  "publishConfig": { "access": "public" },
240
240
  "executors": "./executors.json",
241
241
  "generators": "./generators.json",
242
- "gitHead": "963648c59da71e988de4bf5006126466f89195ed"
242
+ "gitHead": "f16b438d3b1a16b47bbed4a8564885f88462b331"
243
243
  }