@storm-software/workspace-tools 1.273.6 → 1.273.9

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,42 @@
2
2
 
3
3
  # Changelog for Storm Ops - Workspace Tools
4
4
 
5
+ ## [1.273.8](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.273.8) (2025-05-13)
6
+
7
+ ### Bug Fixes
8
+
9
+ - **workspace-tools:** Resolve issue with null version written to package.json
10
+
11
+ ## [1.273.7](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.273.7) (2025-05-13)
12
+
13
+ ### Miscellaneous
14
+
15
+ - **monorepo:** Regenerate README markdown files
16
+
17
+ ### Updated Dependencies
18
+
19
+ - Updated prettier to 0.51.7
20
+ - Updated esbuild to 0.41.7
21
+ - Updated esbuild to 0.41.7
22
+ - Updated unbuild to 0.47.7
23
+ - Updated unbuild to 0.47.7
24
+
25
+ ## [1.273.6](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.273.6) (2025-05-09)
26
+
27
+ ### Miscellaneous
28
+
29
+ - **monorepo:** Regenerate README markdown files
30
+ - **monorepo:** Upgrade Nx packages to v21.0.3
31
+ - **monorepo:** Regenerate README markdown files
32
+
33
+ ### Updated Dependencies
34
+
35
+ - Updated prettier to 0.51.6
36
+ - Updated esbuild to 0.41.6
37
+ - Updated esbuild to 0.41.6
38
+ - Updated unbuild to 0.47.6
39
+ - Updated unbuild to 0.47.6
40
+
5
41
  ## [1.273.5](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.273.5) (2025-05-08)
6
42
 
7
43
  ### 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.273.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)
24
+ [![Version](https://img.shields.io/badge/version-1.273.6-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 -->
package/config/base.json CHANGED
@@ -415,6 +415,7 @@
415
415
  }
416
416
  },
417
417
  "version": {
418
+ "groupPreVersionCommand": "pnpm build",
418
419
  "generator": "@storm-software/workspace-tools:release-version",
419
420
  "generatorOptions": {
420
421
  "currentVersionResolver": "git-tag",
@@ -25,8 +25,9 @@ async function npmPublishExecutorFn(options, context) {
25
25
  context.root,
26
26
  options.packageRoot || joinPaths("dist", projectConfig.root)
27
27
  );
28
- const projectRoot = context.projectsConfigurations.projects[context.projectName].root ? joinPaths(
28
+ const projectRoot = context.projectsConfigurations.projects[context.projectName]?.root ? joinPaths(
29
29
  context.root,
30
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
30
31
  context.projectsConfigurations.projects[context.projectName].root
31
32
  ) : packageRoot;
32
33
  const packageJsonPath = joinPaths(packageRoot, "package.json");
@@ -45,28 +46,30 @@ async function npmPublishExecutorFn(options, context) {
45
46
  const projectPackageJson = JSON.parse(projectPackageJsonFile);
46
47
  if (packageJson.version !== projectPackageJson.version) {
47
48
  console.warn(
48
- `The version in the package.json file at ${packageJsonPath} does not match the version in the package.json file at ${projectPackageJsonPath}. This file will be updated to match the version in the project package.json file.`
49
- );
50
- packageJson.version = projectPackageJson.version;
51
- await writeFile(
52
- packageJsonPath,
53
- await format(JSON.stringify(packageJson), {
54
- parser: "json",
55
- proseWrap: "always",
56
- trailingComma: "none",
57
- tabWidth: 2,
58
- semi: true,
59
- singleQuote: false,
60
- quoteProps: "as-needed",
61
- insertPragma: false,
62
- bracketSameLine: true,
63
- printWidth: 80,
64
- bracketSpacing: true,
65
- arrowParens: "avoid",
66
- endOfLine: "lf",
67
- plugins: ["prettier-plugin-pkg"]
68
- })
49
+ `The version in the package.json file at ${packageJsonPath} (current: ${packageJson.version}) does not match the version in the package.json file at ${projectPackageJsonPath} (current: ${projectPackageJson.version}). This file will be updated to match the version in the project package.json file.`
69
50
  );
51
+ if (projectPackageJson.version) {
52
+ packageJson.version = projectPackageJson.version;
53
+ await writeFile(
54
+ packageJsonPath,
55
+ await format(JSON.stringify(packageJson), {
56
+ parser: "json",
57
+ proseWrap: "always",
58
+ trailingComma: "none",
59
+ tabWidth: 2,
60
+ semi: true,
61
+ singleQuote: false,
62
+ quoteProps: "as-needed",
63
+ insertPragma: false,
64
+ bracketSameLine: true,
65
+ printWidth: 80,
66
+ bracketSpacing: true,
67
+ arrowParens: "avoid",
68
+ endOfLine: "lf",
69
+ plugins: ["prettier-plugin-pkg"]
70
+ })
71
+ );
72
+ }
70
73
  }
71
74
  const packageName = packageJson.name;
72
75
  console.info(
@@ -25,8 +25,9 @@ async function npmPublishExecutorFn(options, context) {
25
25
  context.root,
26
26
  options.packageRoot || _chunk53DNHF7Bjs.joinPaths.call(void 0, "dist", projectConfig.root)
27
27
  );
28
- const projectRoot = context.projectsConfigurations.projects[context.projectName].root ? _chunk53DNHF7Bjs.joinPaths.call(void 0,
28
+ const projectRoot = _optionalChain([context, 'access', _4 => _4.projectsConfigurations, 'access', _5 => _5.projects, 'access', _6 => _6[context.projectName], 'optionalAccess', _7 => _7.root]) ? _chunk53DNHF7Bjs.joinPaths.call(void 0,
29
29
  context.root,
30
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
30
31
  context.projectsConfigurations.projects[context.projectName].root
31
32
  ) : packageRoot;
32
33
  const packageJsonPath = _chunk53DNHF7Bjs.joinPaths.call(void 0, packageRoot, "package.json");
@@ -45,28 +46,30 @@ async function npmPublishExecutorFn(options, context) {
45
46
  const projectPackageJson = JSON.parse(projectPackageJsonFile);
46
47
  if (packageJson.version !== projectPackageJson.version) {
47
48
  console.warn(
48
- `The version in the package.json file at ${packageJsonPath} does not match the version in the package.json file at ${projectPackageJsonPath}. This file will be updated to match the version in the project package.json file.`
49
- );
50
- packageJson.version = projectPackageJson.version;
51
- await _promises.writeFile.call(void 0,
52
- packageJsonPath,
53
- await _prettier.format.call(void 0, JSON.stringify(packageJson), {
54
- parser: "json",
55
- proseWrap: "always",
56
- trailingComma: "none",
57
- tabWidth: 2,
58
- semi: true,
59
- singleQuote: false,
60
- quoteProps: "as-needed",
61
- insertPragma: false,
62
- bracketSameLine: true,
63
- printWidth: 80,
64
- bracketSpacing: true,
65
- arrowParens: "avoid",
66
- endOfLine: "lf",
67
- plugins: ["prettier-plugin-pkg"]
68
- })
49
+ `The version in the package.json file at ${packageJsonPath} (current: ${packageJson.version}) does not match the version in the package.json file at ${projectPackageJsonPath} (current: ${projectPackageJson.version}). This file will be updated to match the version in the project package.json file.`
69
50
  );
51
+ if (projectPackageJson.version) {
52
+ packageJson.version = projectPackageJson.version;
53
+ await _promises.writeFile.call(void 0,
54
+ packageJsonPath,
55
+ await _prettier.format.call(void 0, JSON.stringify(packageJson), {
56
+ parser: "json",
57
+ proseWrap: "always",
58
+ trailingComma: "none",
59
+ tabWidth: 2,
60
+ semi: true,
61
+ singleQuote: false,
62
+ quoteProps: "as-needed",
63
+ insertPragma: false,
64
+ bracketSameLine: true,
65
+ printWidth: 80,
66
+ bracketSpacing: true,
67
+ arrowParens: "avoid",
68
+ endOfLine: "lf",
69
+ plugins: ["prettier-plugin-pkg"]
70
+ })
71
+ );
72
+ }
70
73
  }
71
74
  const packageName = packageJson.name;
72
75
  console.info(
@@ -195,16 +198,16 @@ Note: If this is the first time this package has been published to NPM, this can
195
198
  `
196
199
  );
197
200
  console.info("");
198
- const stdoutData = JSON.parse(_optionalChain([err, 'access', _4 => _4.stdout, 'optionalAccess', _5 => _5.toString, 'call', _6 => _6()]) || "{}");
199
- if (_optionalChain([stdoutData, 'optionalAccess', _7 => _7.error]) && !(_optionalChain([stdoutData, 'access', _8 => _8.error, 'optionalAccess', _9 => _9.code, 'optionalAccess', _10 => _10.includes, 'call', _11 => _11("E404")]) && _optionalChain([stdoutData, 'access', _12 => _12.error, 'optionalAccess', _13 => _13.summary, 'optionalAccess', _14 => _14.includes, 'call', _15 => _15("no such package available")])) && !(_optionalChain([err, 'access', _16 => _16.stderr, 'optionalAccess', _17 => _17.toString, 'call', _18 => _18(), 'access', _19 => _19.includes, 'call', _20 => _20("E404")]) && _optionalChain([err, 'access', _21 => _21.stderr, 'optionalAccess', _22 => _22.toString, 'call', _23 => _23(), 'access', _24 => _24.includes, 'call', _25 => _25("no such package available")]))) {
201
+ const stdoutData = JSON.parse(_optionalChain([err, 'access', _8 => _8.stdout, 'optionalAccess', _9 => _9.toString, 'call', _10 => _10()]) || "{}");
202
+ if (_optionalChain([stdoutData, 'optionalAccess', _11 => _11.error]) && !(_optionalChain([stdoutData, 'access', _12 => _12.error, 'optionalAccess', _13 => _13.code, 'optionalAccess', _14 => _14.includes, 'call', _15 => _15("E404")]) && _optionalChain([stdoutData, 'access', _16 => _16.error, 'optionalAccess', _17 => _17.summary, 'optionalAccess', _18 => _18.includes, 'call', _19 => _19("no such package available")])) && !(_optionalChain([err, 'access', _20 => _20.stderr, 'optionalAccess', _21 => _21.toString, 'call', _22 => _22(), 'access', _23 => _23.includes, 'call', _24 => _24("E404")]) && _optionalChain([err, 'access', _25 => _25.stderr, 'optionalAccess', _26 => _26.toString, 'call', _27 => _27(), 'access', _28 => _28.includes, 'call', _29 => _29("no such package available")]))) {
200
203
  console.error(
201
204
  "npm dist-tag add error please see below for more information:"
202
205
  );
203
206
  if (stdoutData.error.summary) {
204
- console.error(_optionalChain([stdoutData, 'access', _26 => _26.error, 'optionalAccess', _27 => _27.summary]));
207
+ console.error(_optionalChain([stdoutData, 'access', _30 => _30.error, 'optionalAccess', _31 => _31.summary]));
205
208
  }
206
209
  if (stdoutData.error.detail) {
207
- console.error(_optionalChain([stdoutData, 'access', _28 => _28.error, 'optionalAccess', _29 => _29.detail]));
210
+ console.error(_optionalChain([stdoutData, 'access', _32 => _32.error, 'optionalAccess', _33 => _33.detail]));
208
211
  }
209
212
  if (context.isVerbose) {
210
213
  console.error(
@@ -233,8 +236,8 @@ ${JSON.stringify(err2)}`
233
236
  );
234
237
  console.error(error);
235
238
  console.info("");
236
- const stdoutData = JSON.parse(_optionalChain([err, 'access', _30 => _30.stdout, 'optionalAccess', _31 => _31.toString, 'call', _32 => _32()]) || "{}");
237
- if (!(_optionalChain([stdoutData, 'access', _33 => _33.error, 'optionalAccess', _34 => _34.code, 'optionalAccess', _35 => _35.includes, 'call', _36 => _36("E404")]) && _optionalChain([stdoutData, 'access', _37 => _37.error, 'optionalAccess', _38 => _38.summary, 'optionalAccess', _39 => _39.toLowerCase, 'call', _40 => _40(), 'access', _41 => _41.includes, 'call', _42 => _42("not found")])) && !(_optionalChain([err, 'access', _43 => _43.stderr, 'optionalAccess', _44 => _44.toString, 'call', _45 => _45(), 'access', _46 => _46.includes, 'call', _47 => _47("E404")]) && _optionalChain([err, 'access', _48 => _48.stderr, 'optionalAccess', _49 => _49.toString, 'call', _50 => _50(), 'access', _51 => _51.toLowerCase, 'call', _52 => _52(), 'access', _53 => _53.includes, 'call', _54 => _54("not found")]))) {
239
+ const stdoutData = JSON.parse(_optionalChain([err, 'access', _34 => _34.stdout, 'optionalAccess', _35 => _35.toString, 'call', _36 => _36()]) || "{}");
240
+ if (!(_optionalChain([stdoutData, 'access', _37 => _37.error, 'optionalAccess', _38 => _38.code, 'optionalAccess', _39 => _39.includes, 'call', _40 => _40("E404")]) && _optionalChain([stdoutData, 'access', _41 => _41.error, 'optionalAccess', _42 => _42.summary, 'optionalAccess', _43 => _43.toLowerCase, 'call', _44 => _44(), 'access', _45 => _45.includes, 'call', _46 => _46("not found")])) && !(_optionalChain([err, 'access', _47 => _47.stderr, 'optionalAccess', _48 => _48.toString, 'call', _49 => _49(), 'access', _50 => _50.includes, 'call', _51 => _51("E404")]) && _optionalChain([err, 'access', _52 => _52.stderr, 'optionalAccess', _53 => _53.toString, 'call', _54 => _54(), 'access', _55 => _55.toLowerCase, 'call', _56 => _56(), 'access', _57 => _57.includes, 'call', _58 => _58("not found")]))) {
238
241
  console.error(
239
242
  `Something unexpected went wrong when checking for existing dist-tags.
240
243
 
@@ -281,7 +284,7 @@ Execution response: ${result.toString()}` : ""}
281
284
  console.error("An error occured running npm publish.");
282
285
  console.error("Please see below for more information:");
283
286
  console.info("");
284
- const stdoutData = JSON.parse(_optionalChain([err, 'access', _55 => _55.stdout, 'optionalAccess', _56 => _56.toString, 'call', _57 => _57()]) || "{}");
287
+ const stdoutData = JSON.parse(_optionalChain([err, 'access', _59 => _59.stdout, 'optionalAccess', _60 => _60.toString, 'call', _61 => _61()]) || "{}");
285
288
  if (stdoutData.error.summary) {
286
289
  console.error(stdoutData.error.summary);
287
290
  console.error(stdoutData.error.summary);
package/dist/executors.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-7VDOGZYO.js');
2
2
 
3
3
 
4
- var _chunkCUMWQELTjs = require('./chunk-CUMWQELT.js');
4
+ var _chunkJ43B54ZWjs = require('./chunk-J43B54ZW.js');
5
5
 
6
6
 
7
7
  var _chunkC22PXFKFjs = require('./chunk-C22PXFKF.js');
@@ -13,25 +13,25 @@ var _chunkDYDIVZRWjs = require('./chunk-DYDIVZRW.js');
13
13
  var _chunkMSCI7LQ2js = require('./chunk-MSCI7LQ2.js');
14
14
 
15
15
 
16
- var _chunk3G3HNZ22js = require('./chunk-3G3HNZ22.js');
17
-
18
-
19
16
  var _chunkTSP73RLPjs = require('./chunk-TSP73RLP.js');
20
17
 
21
18
 
22
19
  var _chunk3QD2U6SSjs = require('./chunk-3QD2U6SS.js');
23
20
 
24
21
 
22
+ var _chunkBNV64O5Ljs = require('./chunk-BNV64O5L.js');
23
+
24
+
25
25
  var _chunkON5324R7js = require('./chunk-ON5324R7.js');
26
26
 
27
27
 
28
28
  var _chunkM75P2EGZjs = require('./chunk-M75P2EGZ.js');
29
29
 
30
30
 
31
- var _chunkBNV64O5Ljs = require('./chunk-BNV64O5L.js');
31
+ var _chunkKF6AKLGEjs = require('./chunk-KF6AKLGE.js');
32
32
 
33
33
 
34
- var _chunkKF6AKLGEjs = require('./chunk-KF6AKLGE.js');
34
+ var _chunk3G3HNZ22js = require('./chunk-3G3HNZ22.js');
35
35
  require('./chunk-F6X43VUX.js');
36
36
  require('./chunk-LJDV7HFT.js');
37
37
  require('./chunk-EDMNYJEB.js');
@@ -54,4 +54,4 @@ require('./chunk-3RG5ZIWI.js');
54
54
 
55
55
 
56
56
 
57
- exports.LARGE_BUFFER = _chunkCUMWQELTjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkON5324R7js.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkM75P2EGZjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkBNV64O5Ljs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkKF6AKLGEjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunk3G3HNZ22js.cargoFormatExecutor; exports.esbuildExecutorFn = _chunk3QD2U6SSjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkTSP73RLPjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkC22PXFKFjs.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunkDYDIVZRWjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkMSCI7LQ2js.unbuildExecutorFn;
57
+ exports.LARGE_BUFFER = _chunkJ43B54ZWjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkON5324R7js.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkM75P2EGZjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkBNV64O5Ljs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkKF6AKLGEjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunk3G3HNZ22js.cargoFormatExecutor; exports.esbuildExecutorFn = _chunk3QD2U6SSjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkTSP73RLPjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkC22PXFKFjs.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunkDYDIVZRWjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkMSCI7LQ2js.unbuildExecutorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-BLX5SLPC.mjs";
2
2
  import {
3
3
  LARGE_BUFFER
4
- } from "./chunk-A6H2SCIM.mjs";
4
+ } from "./chunk-2PZQYXN7.mjs";
5
5
  import {
6
6
  sizeLimitExecutorFn
7
7
  } from "./chunk-EQ3664ZD.mjs";
@@ -11,27 +11,27 @@ import {
11
11
  import {
12
12
  unbuildExecutorFn
13
13
  } from "./chunk-Y5UH66KY.mjs";
14
- import {
15
- cargoFormatExecutor
16
- } from "./chunk-AAQQSGPY.mjs";
17
14
  import {
18
15
  getRegistryVersion
19
16
  } from "./chunk-5MOK3MSQ.mjs";
20
17
  import {
21
18
  esbuildExecutorFn
22
19
  } from "./chunk-2PZOGRBP.mjs";
20
+ import {
21
+ cargoClippyExecutor
22
+ } from "./chunk-W2RLHQ24.mjs";
23
23
  import {
24
24
  cargoBuildExecutor
25
25
  } from "./chunk-ZASRR3NW.mjs";
26
26
  import {
27
27
  cargoCheckExecutor
28
28
  } from "./chunk-M6IYTP2T.mjs";
29
- import {
30
- cargoClippyExecutor
31
- } from "./chunk-W2RLHQ24.mjs";
32
29
  import {
33
30
  cargoDocExecutor
34
31
  } from "./chunk-AW3I76E2.mjs";
32
+ import {
33
+ cargoFormatExecutor
34
+ } from "./chunk-AAQQSGPY.mjs";
35
35
  import "./chunk-KHT5W6AJ.mjs";
36
36
  import "./chunk-6LP3KKXE.mjs";
37
37
  import "./chunk-R2WP5YDO.mjs";
package/dist/index.js CHANGED
@@ -48,7 +48,7 @@ var _chunkA5CKB6IJjs = require('./chunk-A5CKB6IJ.js');
48
48
  require('./chunk-7VDOGZYO.js');
49
49
 
50
50
 
51
- var _chunkCUMWQELTjs = require('./chunk-CUMWQELT.js');
51
+ var _chunkJ43B54ZWjs = require('./chunk-J43B54ZW.js');
52
52
 
53
53
 
54
54
  var _chunkC22PXFKFjs = require('./chunk-C22PXFKF.js');
@@ -60,25 +60,25 @@ var _chunkDYDIVZRWjs = require('./chunk-DYDIVZRW.js');
60
60
  var _chunkMSCI7LQ2js = require('./chunk-MSCI7LQ2.js');
61
61
 
62
62
 
63
- var _chunk3G3HNZ22js = require('./chunk-3G3HNZ22.js');
64
-
65
-
66
63
  var _chunkTSP73RLPjs = require('./chunk-TSP73RLP.js');
67
64
 
68
65
 
69
66
  var _chunk3QD2U6SSjs = require('./chunk-3QD2U6SS.js');
70
67
 
71
68
 
69
+ var _chunkBNV64O5Ljs = require('./chunk-BNV64O5L.js');
70
+
71
+
72
72
  var _chunkON5324R7js = require('./chunk-ON5324R7.js');
73
73
 
74
74
 
75
75
  var _chunkM75P2EGZjs = require('./chunk-M75P2EGZ.js');
76
76
 
77
77
 
78
- var _chunkBNV64O5Ljs = require('./chunk-BNV64O5L.js');
78
+ var _chunkKF6AKLGEjs = require('./chunk-KF6AKLGE.js');
79
79
 
80
80
 
81
- var _chunkKF6AKLGEjs = require('./chunk-KF6AKLGE.js');
81
+ var _chunk3G3HNZ22js = require('./chunk-3G3HNZ22.js');
82
82
 
83
83
 
84
84
  var _chunkF6X43VUXjs = require('./chunk-F6X43VUX.js');
@@ -272,4 +272,4 @@ require('./chunk-3RG5ZIWI.js');
272
272
 
273
273
 
274
274
 
275
- exports.INVALID_CARGO_ARGS = _chunkLJDV7HFTjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkCUMWQELTjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkXZSS3YABjs.LOCK_FILES; 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 = _chunk7Q2NOIDRjs.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.YARN_LOCK_FILE = _chunkXZSS3YABjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkXZSS3YABjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunkAX3RSZT7js.addPluginProjectTag; exports.addProjectTag = _chunkAX3RSZT7js.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunk3TYXXJKVjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkSMRFUKN7js.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkLJDV7HFTjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk5ZFTWEKBjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkON5324R7js.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkM75P2EGZjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkBNV64O5Ljs.cargoClippyExecutor; exports.cargoCommand = _chunkLJDV7HFTjs.cargoCommand; exports.cargoCommandSync = _chunkLJDV7HFTjs.cargoCommandSync; exports.cargoDocExecutor = _chunkKF6AKLGEjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunk3G3HNZ22js.cargoFormatExecutor; exports.cargoMetadata = _chunkLJDV7HFTjs.cargoMetadata; exports.cargoRunCommand = _chunkLJDV7HFTjs.cargoRunCommand; exports.childProcess = _chunkLJDV7HFTjs.childProcess; exports.configSchemaGeneratorFn = _chunkS2JDNKK6js.configSchemaGeneratorFn; exports.createCliOptions = _chunkQVYCDINGjs.createCliOptions; exports.createProjectTsConfigJson = _chunkU3YH5M4Ljs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunk3QD2U6SSjs.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunkAX3RSZT7js.formatProjectTag; exports.getLockFileDependencies = _chunkXZSS3YABjs.getLockFileDependencies; exports.getLockFileName = _chunkXZSS3YABjs.getLockFileName; exports.getLockFileNodes = _chunkXZSS3YABjs.getLockFileNodes; exports.getOutputPath = _chunkU3YH5M4Ljs.getOutputPath; exports.getPackageInfo = _chunk7Q2NOIDRjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunk5VY5IBBQjs.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunk5VY5IBBQjs.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkA5CKB6IJjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkA5CKB6IJjs.getProjectConfigurations; exports.getProjectPlatform = _chunk5VY5IBBQjs.getProjectPlatform; exports.getProjectRoot = _chunk5VY5IBBQjs.getProjectRoot; exports.getProjectTag = _chunkAX3RSZT7js.getProjectTag; exports.getRegistryVersion = _chunkTSP73RLPjs.getRegistryVersion; exports.getTypiaTransform = _chunk6EMYX25Vjs.getTypiaTransform; exports.hasProjectTag = _chunkAX3RSZT7js.hasProjectTag; exports.initGenerator = _chunkOKSECMVKjs.initGenerator; exports.isEqualProjectTag = _chunkAX3RSZT7js.isEqualProjectTag; exports.isExternal = _chunkLJDV7HFTjs.isExternal; exports.lintStagedVersion = _chunkHI4G4OOGjs.lintStagedVersion; exports.lockFileExists = _chunkXZSS3YABjs.lockFileExists; exports.neutralLibraryGeneratorFn = _chunkMNQIKYEBjs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkTVH6TDEDjs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkU3YH5M4Ljs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.pnpmUpdate = _chunkF6X43VUXjs.pnpmUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkY7JE33K2js.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunk2F5TLK3Cjs.releaseVersionGeneratorFn; exports.runProcess = _chunkLJDV7HFTjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunkAX3RSZT7js.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkC22PXFKFjs.sizeLimitExecutorFn; 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 = _chunkU3YH5M4Ljs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkIL3R5ZVSjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk2AVWFUXPjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunkDYDIVZRWjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkMSCI7LQ2js.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunkVUSG5IWMjs.withRunExecutor; exports.withRunGenerator = _chunkQWRE2UFSjs.withRunGenerator;
275
+ exports.INVALID_CARGO_ARGS = _chunkLJDV7HFTjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkJ43B54ZWjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkXZSS3YABjs.LOCK_FILES; 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 = _chunk7Q2NOIDRjs.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.YARN_LOCK_FILE = _chunkXZSS3YABjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkXZSS3YABjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunkAX3RSZT7js.addPluginProjectTag; exports.addProjectTag = _chunkAX3RSZT7js.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunk3TYXXJKVjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkSMRFUKN7js.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkLJDV7HFTjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk5ZFTWEKBjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkON5324R7js.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkM75P2EGZjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkBNV64O5Ljs.cargoClippyExecutor; exports.cargoCommand = _chunkLJDV7HFTjs.cargoCommand; exports.cargoCommandSync = _chunkLJDV7HFTjs.cargoCommandSync; exports.cargoDocExecutor = _chunkKF6AKLGEjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunk3G3HNZ22js.cargoFormatExecutor; exports.cargoMetadata = _chunkLJDV7HFTjs.cargoMetadata; exports.cargoRunCommand = _chunkLJDV7HFTjs.cargoRunCommand; exports.childProcess = _chunkLJDV7HFTjs.childProcess; exports.configSchemaGeneratorFn = _chunkS2JDNKK6js.configSchemaGeneratorFn; exports.createCliOptions = _chunkQVYCDINGjs.createCliOptions; exports.createProjectTsConfigJson = _chunkU3YH5M4Ljs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunk3QD2U6SSjs.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunkAX3RSZT7js.formatProjectTag; exports.getLockFileDependencies = _chunkXZSS3YABjs.getLockFileDependencies; exports.getLockFileName = _chunkXZSS3YABjs.getLockFileName; exports.getLockFileNodes = _chunkXZSS3YABjs.getLockFileNodes; exports.getOutputPath = _chunkU3YH5M4Ljs.getOutputPath; exports.getPackageInfo = _chunk7Q2NOIDRjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunk5VY5IBBQjs.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunk5VY5IBBQjs.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkA5CKB6IJjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkA5CKB6IJjs.getProjectConfigurations; exports.getProjectPlatform = _chunk5VY5IBBQjs.getProjectPlatform; exports.getProjectRoot = _chunk5VY5IBBQjs.getProjectRoot; exports.getProjectTag = _chunkAX3RSZT7js.getProjectTag; exports.getRegistryVersion = _chunkTSP73RLPjs.getRegistryVersion; exports.getTypiaTransform = _chunk6EMYX25Vjs.getTypiaTransform; exports.hasProjectTag = _chunkAX3RSZT7js.hasProjectTag; exports.initGenerator = _chunkOKSECMVKjs.initGenerator; exports.isEqualProjectTag = _chunkAX3RSZT7js.isEqualProjectTag; exports.isExternal = _chunkLJDV7HFTjs.isExternal; exports.lintStagedVersion = _chunkHI4G4OOGjs.lintStagedVersion; exports.lockFileExists = _chunkXZSS3YABjs.lockFileExists; exports.neutralLibraryGeneratorFn = _chunkMNQIKYEBjs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkTVH6TDEDjs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkU3YH5M4Ljs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.pnpmUpdate = _chunkF6X43VUXjs.pnpmUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkY7JE33K2js.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunk2F5TLK3Cjs.releaseVersionGeneratorFn; exports.runProcess = _chunkLJDV7HFTjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunkAX3RSZT7js.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkC22PXFKFjs.sizeLimitExecutorFn; 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 = _chunkU3YH5M4Ljs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkIL3R5ZVSjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk2AVWFUXPjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunkDYDIVZRWjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkMSCI7LQ2js.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunkVUSG5IWMjs.withRunExecutor; exports.withRunGenerator = _chunkQWRE2UFSjs.withRunGenerator;
package/dist/index.mjs CHANGED
@@ -48,7 +48,7 @@ import {
48
48
  import "./chunk-BLX5SLPC.mjs";
49
49
  import {
50
50
  LARGE_BUFFER
51
- } from "./chunk-A6H2SCIM.mjs";
51
+ } from "./chunk-2PZQYXN7.mjs";
52
52
  import {
53
53
  sizeLimitExecutorFn
54
54
  } from "./chunk-EQ3664ZD.mjs";
@@ -58,27 +58,27 @@ import {
58
58
  import {
59
59
  unbuildExecutorFn
60
60
  } from "./chunk-Y5UH66KY.mjs";
61
- import {
62
- cargoFormatExecutor
63
- } from "./chunk-AAQQSGPY.mjs";
64
61
  import {
65
62
  getRegistryVersion
66
63
  } from "./chunk-5MOK3MSQ.mjs";
67
64
  import {
68
65
  esbuildExecutorFn
69
66
  } from "./chunk-2PZOGRBP.mjs";
67
+ import {
68
+ cargoClippyExecutor
69
+ } from "./chunk-W2RLHQ24.mjs";
70
70
  import {
71
71
  cargoBuildExecutor
72
72
  } from "./chunk-ZASRR3NW.mjs";
73
73
  import {
74
74
  cargoCheckExecutor
75
75
  } from "./chunk-M6IYTP2T.mjs";
76
- import {
77
- cargoClippyExecutor
78
- } from "./chunk-W2RLHQ24.mjs";
79
76
  import {
80
77
  cargoDocExecutor
81
78
  } from "./chunk-AW3I76E2.mjs";
79
+ import {
80
+ cargoFormatExecutor
81
+ } from "./chunk-AAQQSGPY.mjs";
82
82
  import {
83
83
  pnpmUpdate
84
84
  } from "./chunk-KHT5W6AJ.mjs";
@@ -1,11 +1,11 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkCUMWQELTjs = require('../../../chunk-CUMWQELT.js');
4
+ var _chunkJ43B54ZWjs = require('../../../chunk-J43B54ZW.js');
5
5
  require('../../../chunk-F6X43VUX.js');
6
6
  require('../../../chunk-53DNHF7B.js');
7
7
  require('../../../chunk-3RG5ZIWI.js');
8
8
 
9
9
 
10
10
 
11
- exports.LARGE_BUFFER = _chunkCUMWQELTjs.LARGE_BUFFER; exports.default = _chunkCUMWQELTjs.npmPublishExecutorFn;
11
+ exports.LARGE_BUFFER = _chunkJ43B54ZWjs.LARGE_BUFFER; exports.default = _chunkJ43B54ZWjs.npmPublishExecutorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  LARGE_BUFFER,
3
3
  npmPublishExecutorFn
4
- } from "../../../chunk-A6H2SCIM.mjs";
4
+ } from "../../../chunk-2PZQYXN7.mjs";
5
5
  import "../../../chunk-KHT5W6AJ.mjs";
6
6
  import "../../../chunk-U7JFVMCK.mjs";
7
7
  import "../../../chunk-75RE5W2I.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.273.6",
3
+ "version": "1.273.9",
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",
@@ -208,9 +208,9 @@
208
208
  "@size-limit/esbuild": "11.1.4",
209
209
  "@size-limit/esbuild-why": "11.1.4",
210
210
  "@size-limit/file": "11.1.4",
211
- "@storm-software/esbuild": "^0.41.6",
212
- "@storm-software/prettier": "^0.51.6",
213
- "@storm-software/unbuild": "^0.47.6",
211
+ "@storm-software/esbuild": "^0.41.8",
212
+ "@storm-software/prettier": "^0.51.7",
213
+ "@storm-software/unbuild": "^0.47.8",
214
214
  "fs-extra": "11.2.0",
215
215
  "glob": "^11.0.1",
216
216
  "jiti": "^2.4.2",