@storm-software/workspace-tools 1.295.53 → 1.295.54

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,24 @@
2
2
 
3
3
  # Changelog for Storm Ops - Workspace Tools
4
4
 
5
+ ## [1.295.53](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.295.53) (04/14/2026)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Update workspace packages' dependencies ([3a2b8a77e](https://github.com/storm-software/storm-ops/commit/3a2b8a77e))
10
+
11
+ ### Updated Dependencies
12
+
13
+ - Updated **testing-tools** to **v1.119.152**
14
+ - Updated **config-tools** to **v1.189.77**
15
+ - Updated **pnpm-tools** to **v0.7.5**
16
+ - Updated **npm-tools** to **v0.6.115**
17
+ - Updated **prettier** to **v0.59.51**
18
+ - Updated **esbuild** to **v0.53.159**
19
+ - Updated **unbuild** to **v0.57.159**
20
+ - Updated **config** to **v1.137.31**
21
+ - Updated **tsdown** to **v0.45.159**
22
+
5
23
  ## [1.295.52](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.295.52) (04/13/2026)
6
24
 
7
25
  ### Bug Fixes
package/README.md CHANGED
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
27
27
 
28
28
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
29
29
 
30
- [![Version](https://img.shields.io/badge/version-1.295.51-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)
30
+ [![Version](https://img.shields.io/badge/version-1.295.52-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)
31
31
 
32
32
  <!-- prettier-ignore-start -->
33
33
  <!-- markdownlint-disable -->
@@ -34,7 +34,7 @@ async function napiExecutor(options, context, config) {
34
34
  "The Napi Build process failed because the project could not be found in the project graph. Please run this command from a workspace root directory."
35
35
  );
36
36
  }
37
- const projectRoot = context.projectGraph?.nodes[context.projectName ?? ""].data.root;
37
+ const projectRoot = context.projectGraph?.nodes[context.projectName ?? ""]?.data.root;
38
38
  const packageJson = joinPaths(projectRoot ?? ".", "package.json");
39
39
  if (!fileExists(packageJson)) {
40
40
  throw new Error(`Could not find package.json at ${packageJson}`);
@@ -48,27 +48,29 @@ async function napiExecutor(options, context, config) {
48
48
  if (options.cwd) {
49
49
  normalizedOptions.cwd = correctPaths(options.cwd);
50
50
  } else {
51
- normalizedOptions.cwd = correctPaths(projectRoot);
52
- const absoluteProjectRoot = joinPaths(
53
- config.workspaceRoot,
54
- projectRoot || "."
51
+ const absoluteProjectRoot = correctPaths(
52
+ joinPaths(config.workspaceRoot, projectRoot || ".")
55
53
  );
54
+ normalizedOptions.cwd = absoluteProjectRoot;
56
55
  if (normalizedOptions.outputDir) {
57
56
  normalizedOptions.outputDir = relative(
58
- absoluteProjectRoot,
57
+ normalizedOptions.cwd,
59
58
  correctPaths(
60
59
  isAbsolute(normalizedOptions.outputDir) ? normalizedOptions.outputDir : joinPaths(config.workspaceRoot, normalizedOptions.outputDir)
61
60
  )
62
61
  );
63
62
  }
64
63
  if (normalizedOptions.packageJsonPath) {
65
- normalizedOptions.packageJsonPath = correctPaths(
66
- isAbsolute(normalizedOptions.packageJsonPath) ? normalizedOptions.packageJsonPath : joinPaths(config.workspaceRoot, normalizedOptions.packageJsonPath)
64
+ normalizedOptions.packageJsonPath = relative(
65
+ normalizedOptions.cwd,
66
+ correctPaths(
67
+ isAbsolute(normalizedOptions.packageJsonPath) ? normalizedOptions.packageJsonPath : joinPaths(config.workspaceRoot, normalizedOptions.packageJsonPath)
68
+ )
67
69
  );
68
70
  }
69
71
  if (normalizedOptions.configPath) {
70
72
  normalizedOptions.configPath = relative(
71
- absoluteProjectRoot,
73
+ normalizedOptions.cwd,
72
74
  correctPaths(
73
75
  isAbsolute(normalizedOptions.configPath) ? normalizedOptions.configPath : joinPaths(config.workspaceRoot, normalizedOptions.configPath)
74
76
  )
@@ -76,7 +78,7 @@ async function napiExecutor(options, context, config) {
76
78
  }
77
79
  if (normalizedOptions.manifestPath) {
78
80
  normalizedOptions.manifestPath = relative(
79
- absoluteProjectRoot,
81
+ normalizedOptions.cwd,
80
82
  correctPaths(
81
83
  isAbsolute(normalizedOptions.manifestPath) ? normalizedOptions.manifestPath : joinPaths(config.workspaceRoot, normalizedOptions.manifestPath)
82
84
  )
@@ -34,7 +34,7 @@ async function napiExecutor(options, context, config) {
34
34
  "The Napi Build process failed because the project could not be found in the project graph. Please run this command from a workspace root directory."
35
35
  );
36
36
  }
37
- const projectRoot = _optionalChain([context, 'access', _4 => _4.projectGraph, 'optionalAccess', _5 => _5.nodes, 'access', _6 => _6[_nullishCoalesce(context.projectName, () => ( ""))], 'access', _7 => _7.data, 'access', _8 => _8.root]);
37
+ const projectRoot = _optionalChain([context, 'access', _4 => _4.projectGraph, 'optionalAccess', _5 => _5.nodes, 'access', _6 => _6[_nullishCoalesce(context.projectName, () => ( ""))], 'optionalAccess', _7 => _7.data, 'access', _8 => _8.root]);
38
38
  const packageJson = _chunkCQDBLKPFjs.joinPaths.call(void 0, _nullishCoalesce(projectRoot, () => ( ".")), "package.json");
39
39
  if (!_fileutils.fileExists.call(void 0, packageJson)) {
40
40
  throw new Error(`Could not find package.json at ${packageJson}`);
@@ -48,27 +48,29 @@ async function napiExecutor(options, context, config) {
48
48
  if (options.cwd) {
49
49
  normalizedOptions.cwd = _chunkCQDBLKPFjs.correctPaths.call(void 0, options.cwd);
50
50
  } else {
51
- normalizedOptions.cwd = _chunkCQDBLKPFjs.correctPaths.call(void 0, projectRoot);
52
- const absoluteProjectRoot = _chunkCQDBLKPFjs.joinPaths.call(void 0,
53
- config.workspaceRoot,
54
- projectRoot || "."
51
+ const absoluteProjectRoot = _chunkCQDBLKPFjs.correctPaths.call(void 0,
52
+ _chunkCQDBLKPFjs.joinPaths.call(void 0, config.workspaceRoot, projectRoot || ".")
55
53
  );
54
+ normalizedOptions.cwd = absoluteProjectRoot;
56
55
  if (normalizedOptions.outputDir) {
57
56
  normalizedOptions.outputDir = _chunkCQDBLKPFjs.relative.call(void 0,
58
- absoluteProjectRoot,
57
+ normalizedOptions.cwd,
59
58
  _chunkCQDBLKPFjs.correctPaths.call(void 0,
60
59
  _chunkCQDBLKPFjs.isAbsolute.call(void 0, normalizedOptions.outputDir) ? normalizedOptions.outputDir : _chunkCQDBLKPFjs.joinPaths.call(void 0, config.workspaceRoot, normalizedOptions.outputDir)
61
60
  )
62
61
  );
63
62
  }
64
63
  if (normalizedOptions.packageJsonPath) {
65
- normalizedOptions.packageJsonPath = _chunkCQDBLKPFjs.correctPaths.call(void 0,
66
- _chunkCQDBLKPFjs.isAbsolute.call(void 0, normalizedOptions.packageJsonPath) ? normalizedOptions.packageJsonPath : _chunkCQDBLKPFjs.joinPaths.call(void 0, config.workspaceRoot, normalizedOptions.packageJsonPath)
64
+ normalizedOptions.packageJsonPath = _chunkCQDBLKPFjs.relative.call(void 0,
65
+ normalizedOptions.cwd,
66
+ _chunkCQDBLKPFjs.correctPaths.call(void 0,
67
+ _chunkCQDBLKPFjs.isAbsolute.call(void 0, normalizedOptions.packageJsonPath) ? normalizedOptions.packageJsonPath : _chunkCQDBLKPFjs.joinPaths.call(void 0, config.workspaceRoot, normalizedOptions.packageJsonPath)
68
+ )
67
69
  );
68
70
  }
69
71
  if (normalizedOptions.configPath) {
70
72
  normalizedOptions.configPath = _chunkCQDBLKPFjs.relative.call(void 0,
71
- absoluteProjectRoot,
73
+ normalizedOptions.cwd,
72
74
  _chunkCQDBLKPFjs.correctPaths.call(void 0,
73
75
  _chunkCQDBLKPFjs.isAbsolute.call(void 0, normalizedOptions.configPath) ? normalizedOptions.configPath : _chunkCQDBLKPFjs.joinPaths.call(void 0, config.workspaceRoot, normalizedOptions.configPath)
74
76
  )
@@ -76,7 +78,7 @@ async function napiExecutor(options, context, config) {
76
78
  }
77
79
  if (normalizedOptions.manifestPath) {
78
80
  normalizedOptions.manifestPath = _chunkCQDBLKPFjs.relative.call(void 0,
79
- absoluteProjectRoot,
81
+ normalizedOptions.cwd,
80
82
  _chunkCQDBLKPFjs.correctPaths.call(void 0,
81
83
  _chunkCQDBLKPFjs.isAbsolute.call(void 0, normalizedOptions.manifestPath) ? normalizedOptions.manifestPath : _chunkCQDBLKPFjs.joinPaths.call(void 0, config.workspaceRoot, normalizedOptions.manifestPath)
82
84
  )
package/dist/executors.js CHANGED
@@ -17,7 +17,7 @@ var _chunkVXH74KT7js = require('./chunk-VXH74KT7.js');
17
17
  require('./chunk-RB72JOT5.js');
18
18
 
19
19
 
20
- var _chunkSYNZK5SYjs = require('./chunk-SYNZK5SY.js');
20
+ var _chunkMXCH7LWPjs = require('./chunk-MXCH7LWP.js');
21
21
 
22
22
 
23
23
  var _chunkVOWQOVZ3js = require('./chunk-VOWQOVZ3.js');
@@ -63,4 +63,4 @@ require('./chunk-CQDBLKPF.js');
63
63
 
64
64
 
65
65
 
66
- exports.LARGE_BUFFER = _chunkVOWQOVZ3js.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkZFKZAH3Cjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunk4SXDS4FJjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkOEKXZFSRjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkDQQAO3XHjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkMX7HEDMXjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkVXH74KT7js.esbuildExecutorFn; exports.getRegistryVersion = _chunkS7Q645MCjs.getRegistryVersion; exports.napiExecutor = _chunkSYNZK5SYjs.napiExecutor; exports.sizeLimitExecutorFn = _chunkUE3WG442js.sizeLimitExecutorFn; exports.tsdownExecutorFn = _chunkPR737KX2js.tsdownExecutorFn; exports.typiaExecutorFn = _chunkEM5QCZFNjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkHNWDW45Qjs.unbuildExecutorFn;
66
+ exports.LARGE_BUFFER = _chunkVOWQOVZ3js.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkZFKZAH3Cjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunk4SXDS4FJjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkOEKXZFSRjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkDQQAO3XHjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkMX7HEDMXjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkVXH74KT7js.esbuildExecutorFn; exports.getRegistryVersion = _chunkS7Q645MCjs.getRegistryVersion; exports.napiExecutor = _chunkMXCH7LWPjs.napiExecutor; exports.sizeLimitExecutorFn = _chunkUE3WG442js.sizeLimitExecutorFn; exports.tsdownExecutorFn = _chunkPR737KX2js.tsdownExecutorFn; exports.typiaExecutorFn = _chunkEM5QCZFNjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkHNWDW45Qjs.unbuildExecutorFn;
@@ -17,7 +17,7 @@ import {
17
17
  import "./chunk-I4X5CIJM.mjs";
18
18
  import {
19
19
  napiExecutor
20
- } from "./chunk-27RUT62Q.mjs";
20
+ } from "./chunk-JRITKMJK.mjs";
21
21
  import {
22
22
  LARGE_BUFFER
23
23
  } from "./chunk-GVUEO74Y.mjs";
package/dist/index.js CHANGED
@@ -74,7 +74,7 @@ var _chunkVXH74KT7js = require('./chunk-VXH74KT7.js');
74
74
  require('./chunk-RB72JOT5.js');
75
75
 
76
76
 
77
- var _chunkSYNZK5SYjs = require('./chunk-SYNZK5SY.js');
77
+ var _chunkMXCH7LWPjs = require('./chunk-MXCH7LWP.js');
78
78
 
79
79
 
80
80
  var _chunkVOWQOVZ3js = require('./chunk-VOWQOVZ3.js');
@@ -296,4 +296,4 @@ var _chunk7CJRMBX3js = require('./chunk-7CJRMBX3.js');
296
296
 
297
297
 
298
298
 
299
- exports.INVALID_CARGO_ARGS = _chunkD2PV33E5js.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkVOWQOVZ3js.LARGE_BUFFER; exports.LOCK_FILES = _chunkTM2CRDJWjs.LOCK_FILES; exports.NAMED_INPUTS = _chunk4AKDRRMLjs.NAMED_INPUTS; exports.NPM_LOCK_FILE = _chunkTM2CRDJWjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkTM2CRDJWjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkTM2CRDJWjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkTM2CRDJWjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunkNFYP774Djs.PackageManagerTypes; exports.ProjectTagConstants = _chunkUHTWNVEZjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk2JANPL5Kjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk2JANPL5Kjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk2JANPL5Kjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk2JANPL5Kjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk2JANPL5Kjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk2JANPL5Kjs.ProjectTagVariant; exports.RELEASE = _chunk4AKDRRMLjs.RELEASE; exports.StormJsVersionActions = _chunkH27YUTCQjs.StormJsVersionActions; exports.StormRustVersionActions = _chunk7RPZKHP6js.StormRustVersionActions; exports.TypescriptProjectLinkingType = _chunk2JANPL5Kjs.TypescriptProjectLinkingType; exports.YARN_LOCK_FILE = _chunkTM2CRDJWjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkTM2CRDJWjs.YARN_LOCK_PATH; exports.addPackageJsonGitHead = _chunkNFYP774Djs.addPackageJsonGitHead; exports.addPluginProjectTag = _chunkUHTWNVEZjs.addPluginProjectTag; exports.addProjectTag = _chunkUHTWNVEZjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkVXHOSAQ7js.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkMNYABCZTjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkD2PV33E5js.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk5ZFTWEKBjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkZFKZAH3Cjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunk4SXDS4FJjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkOEKXZFSRjs.cargoClippyExecutor; exports.cargoCommand = _chunkD2PV33E5js.cargoCommand; exports.cargoCommandSync = _chunkD2PV33E5js.cargoCommandSync; exports.cargoDocExecutor = _chunkDQQAO3XHjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkMX7HEDMXjs.cargoFormatExecutor; exports.cargoMetadata = _chunkD2PV33E5js.cargoMetadata; exports.cargoRunCommand = _chunkD2PV33E5js.cargoRunCommand; exports.childProcess = _chunkD2PV33E5js.childProcess; exports.configSchemaGeneratorFn = _chunk5CXVHLF5js.configSchemaGeneratorFn; exports.createCliOptions = _chunkQVYCDINGjs.createCliOptions; exports.createProjectTsConfigJson = _chunkBZMYB75Mjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkVXH74KT7js.esbuildExecutorFn; exports.eslintVersion = _chunkSZWM7COVjs.eslintVersion; exports.formatProjectTag = _chunkUHTWNVEZjs.formatProjectTag; exports.getLockFileDependencies = _chunkTM2CRDJWjs.getLockFileDependencies; exports.getLockFileName = _chunkTM2CRDJWjs.getLockFileName; exports.getLockFileNodes = _chunkTM2CRDJWjs.getLockFileNodes; exports.getOutputPath = _chunkBZMYB75Mjs.getOutputPath; exports.getPackageInfo = _chunkNFYP774Djs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkXZ6L6OXJjs.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkXZ6L6OXJjs.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkDIUWF7BWjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkDIUWF7BWjs.getProjectConfigurations; exports.getProjectPlatform = _chunkXZ6L6OXJjs.getProjectPlatform; exports.getProjectRoot = _chunkXZ6L6OXJjs.getProjectRoot; exports.getProjectTag = _chunkUHTWNVEZjs.getProjectTag; exports.getRegistryVersion = _chunkS7Q645MCjs.getRegistryVersion; exports.getRoot = _chunkXZ6L6OXJjs.getRoot; exports.getTypiaTransform = _chunk6EMYX25Vjs.getTypiaTransform; exports.hasProjectTag = _chunkUHTWNVEZjs.hasProjectTag; exports.initGenerator = _chunkOKSECMVKjs.initGenerator; exports.isEqualProjectTag = _chunkUHTWNVEZjs.isEqualProjectTag; exports.isExternal = _chunkD2PV33E5js.isExternal; exports.lintStagedVersion = _chunkSZWM7COVjs.lintStagedVersion; exports.lockFileExists = _chunkTM2CRDJWjs.lockFileExists; exports.napiExecutor = _chunkSYNZK5SYjs.napiExecutor; exports.neutralLibraryGeneratorFn = _chunk4XHYIQO7js.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunk4655YIJBjs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkSZWM7COVjs.nodeVersion; exports.normalizeOptions = _chunkBZMYB75Mjs.normalizeOptions; exports.nxVersion = _chunkSZWM7COVjs.nxVersion; exports.pnpmVersion = _chunkSZWM7COVjs.pnpmVersion; exports.presetGeneratorFn = _chunkBDRN6CQLjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkSZWM7COVjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkSZWM7COVjs.prettierPrismaVersion; exports.prettierVersion = _chunkSZWM7COVjs.prettierVersion; exports.runProcess = _chunkD2PV33E5js.runProcess; exports.semanticReleaseVersion = _chunkSZWM7COVjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunkUHTWNVEZjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkUE3WG442js.sizeLimitExecutorFn; exports.swcCliVersion = _chunkSZWM7COVjs.swcCliVersion; exports.swcCoreVersion = _chunkSZWM7COVjs.swcCoreVersion; exports.swcHelpersVersion = _chunkSZWM7COVjs.swcHelpersVersion; exports.swcNodeVersion = _chunkSZWM7COVjs.swcNodeVersion; exports.tsLibVersion = _chunkSZWM7COVjs.tsLibVersion; exports.tsdownExecutorFn = _chunkPR737KX2js.tsdownExecutorFn; exports.tsupVersion = _chunkSZWM7COVjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkBZMYB75Mjs.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 = _chunkEM5QCZFNjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkHNWDW45Qjs.unbuildExecutorFn; exports.verdaccioVersion = _chunkSZWM7COVjs.verdaccioVersion; exports.withNamedInputs = _chunk4AKDRRMLjs.withNamedInputs; exports.withRunExecutor = _chunkRO2CCHL3js.withRunExecutor; exports.withRunGenerator = _chunkFR2SIPZVjs.withRunGenerator;
299
+ exports.INVALID_CARGO_ARGS = _chunkD2PV33E5js.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkVOWQOVZ3js.LARGE_BUFFER; exports.LOCK_FILES = _chunkTM2CRDJWjs.LOCK_FILES; exports.NAMED_INPUTS = _chunk4AKDRRMLjs.NAMED_INPUTS; exports.NPM_LOCK_FILE = _chunkTM2CRDJWjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkTM2CRDJWjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkTM2CRDJWjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkTM2CRDJWjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunkNFYP774Djs.PackageManagerTypes; exports.ProjectTagConstants = _chunkUHTWNVEZjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk2JANPL5Kjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk2JANPL5Kjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk2JANPL5Kjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk2JANPL5Kjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk2JANPL5Kjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk2JANPL5Kjs.ProjectTagVariant; exports.RELEASE = _chunk4AKDRRMLjs.RELEASE; exports.StormJsVersionActions = _chunkH27YUTCQjs.StormJsVersionActions; exports.StormRustVersionActions = _chunk7RPZKHP6js.StormRustVersionActions; exports.TypescriptProjectLinkingType = _chunk2JANPL5Kjs.TypescriptProjectLinkingType; exports.YARN_LOCK_FILE = _chunkTM2CRDJWjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkTM2CRDJWjs.YARN_LOCK_PATH; exports.addPackageJsonGitHead = _chunkNFYP774Djs.addPackageJsonGitHead; exports.addPluginProjectTag = _chunkUHTWNVEZjs.addPluginProjectTag; exports.addProjectTag = _chunkUHTWNVEZjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkVXHOSAQ7js.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkMNYABCZTjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkD2PV33E5js.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk5ZFTWEKBjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkZFKZAH3Cjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunk4SXDS4FJjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkOEKXZFSRjs.cargoClippyExecutor; exports.cargoCommand = _chunkD2PV33E5js.cargoCommand; exports.cargoCommandSync = _chunkD2PV33E5js.cargoCommandSync; exports.cargoDocExecutor = _chunkDQQAO3XHjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkMX7HEDMXjs.cargoFormatExecutor; exports.cargoMetadata = _chunkD2PV33E5js.cargoMetadata; exports.cargoRunCommand = _chunkD2PV33E5js.cargoRunCommand; exports.childProcess = _chunkD2PV33E5js.childProcess; exports.configSchemaGeneratorFn = _chunk5CXVHLF5js.configSchemaGeneratorFn; exports.createCliOptions = _chunkQVYCDINGjs.createCliOptions; exports.createProjectTsConfigJson = _chunkBZMYB75Mjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkVXH74KT7js.esbuildExecutorFn; exports.eslintVersion = _chunkSZWM7COVjs.eslintVersion; exports.formatProjectTag = _chunkUHTWNVEZjs.formatProjectTag; exports.getLockFileDependencies = _chunkTM2CRDJWjs.getLockFileDependencies; exports.getLockFileName = _chunkTM2CRDJWjs.getLockFileName; exports.getLockFileNodes = _chunkTM2CRDJWjs.getLockFileNodes; exports.getOutputPath = _chunkBZMYB75Mjs.getOutputPath; exports.getPackageInfo = _chunkNFYP774Djs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkXZ6L6OXJjs.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkXZ6L6OXJjs.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkDIUWF7BWjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkDIUWF7BWjs.getProjectConfigurations; exports.getProjectPlatform = _chunkXZ6L6OXJjs.getProjectPlatform; exports.getProjectRoot = _chunkXZ6L6OXJjs.getProjectRoot; exports.getProjectTag = _chunkUHTWNVEZjs.getProjectTag; exports.getRegistryVersion = _chunkS7Q645MCjs.getRegistryVersion; exports.getRoot = _chunkXZ6L6OXJjs.getRoot; exports.getTypiaTransform = _chunk6EMYX25Vjs.getTypiaTransform; exports.hasProjectTag = _chunkUHTWNVEZjs.hasProjectTag; exports.initGenerator = _chunkOKSECMVKjs.initGenerator; exports.isEqualProjectTag = _chunkUHTWNVEZjs.isEqualProjectTag; exports.isExternal = _chunkD2PV33E5js.isExternal; exports.lintStagedVersion = _chunkSZWM7COVjs.lintStagedVersion; exports.lockFileExists = _chunkTM2CRDJWjs.lockFileExists; exports.napiExecutor = _chunkMXCH7LWPjs.napiExecutor; exports.neutralLibraryGeneratorFn = _chunk4XHYIQO7js.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunk4655YIJBjs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkSZWM7COVjs.nodeVersion; exports.normalizeOptions = _chunkBZMYB75Mjs.normalizeOptions; exports.nxVersion = _chunkSZWM7COVjs.nxVersion; exports.pnpmVersion = _chunkSZWM7COVjs.pnpmVersion; exports.presetGeneratorFn = _chunkBDRN6CQLjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkSZWM7COVjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkSZWM7COVjs.prettierPrismaVersion; exports.prettierVersion = _chunkSZWM7COVjs.prettierVersion; exports.runProcess = _chunkD2PV33E5js.runProcess; exports.semanticReleaseVersion = _chunkSZWM7COVjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunkUHTWNVEZjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkUE3WG442js.sizeLimitExecutorFn; exports.swcCliVersion = _chunkSZWM7COVjs.swcCliVersion; exports.swcCoreVersion = _chunkSZWM7COVjs.swcCoreVersion; exports.swcHelpersVersion = _chunkSZWM7COVjs.swcHelpersVersion; exports.swcNodeVersion = _chunkSZWM7COVjs.swcNodeVersion; exports.tsLibVersion = _chunkSZWM7COVjs.tsLibVersion; exports.tsdownExecutorFn = _chunkPR737KX2js.tsdownExecutorFn; exports.tsupVersion = _chunkSZWM7COVjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkBZMYB75Mjs.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 = _chunkEM5QCZFNjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkHNWDW45Qjs.unbuildExecutorFn; exports.verdaccioVersion = _chunkSZWM7COVjs.verdaccioVersion; exports.withNamedInputs = _chunk4AKDRRMLjs.withNamedInputs; exports.withRunExecutor = _chunkRO2CCHL3js.withRunExecutor; exports.withRunGenerator = _chunkFR2SIPZVjs.withRunGenerator;
package/dist/index.mjs CHANGED
@@ -74,7 +74,7 @@ import {
74
74
  import "./chunk-I4X5CIJM.mjs";
75
75
  import {
76
76
  napiExecutor
77
- } from "./chunk-27RUT62Q.mjs";
77
+ } from "./chunk-JRITKMJK.mjs";
78
78
  import {
79
79
  LARGE_BUFFER
80
80
  } from "./chunk-GVUEO74Y.mjs";
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkSYNZK5SYjs = require('../../../chunk-SYNZK5SY.js');
4
+ var _chunkMXCH7LWPjs = require('../../../chunk-MXCH7LWP.js');
5
5
  require('../../../chunk-D2PV33E5.js');
6
6
  require('../../../chunk-RO2CCHL3.js');
7
7
  require('../../../chunk-HXQRGLII.js');
@@ -12,4 +12,4 @@ require('../../../chunk-CQDBLKPF.js');
12
12
 
13
13
 
14
14
 
15
- exports.default = _chunkSYNZK5SYjs.executor_default; exports.napiExecutor = _chunkSYNZK5SYjs.napiExecutor;
15
+ exports.default = _chunkMXCH7LWPjs.executor_default; exports.napiExecutor = _chunkMXCH7LWPjs.napiExecutor;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  executor_default,
3
3
  napiExecutor
4
- } from "../../../chunk-27RUT62Q.mjs";
4
+ } from "../../../chunk-JRITKMJK.mjs";
5
5
  import "../../../chunk-ZTN2676G.mjs";
6
6
  import "../../../chunk-QOQ7ZZDR.mjs";
7
7
  import "../../../chunk-2QMGYIOO.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.295.53",
3
+ "version": "1.295.54",
4
4
  "description": "Tools for managing a Storm workspace, including various Nx generators and executors for common development tasks.",
5
5
  "keywords": [
6
6
  "monorepo",
@@ -272,5 +272,5 @@
272
272
  "publishConfig": { "access": "public" },
273
273
  "executors": "./executors.json",
274
274
  "generators": "./generators.json",
275
- "gitHead": "d25e09ad5d06260f5a506bf367b21d579fee1616"
275
+ "gitHead": "7369ee9b0807eea8d57a8c7f2a4d797c3cbd711c"
276
276
  }