@storm-software/workspace-tools 1.296.115 → 1.297.0

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.
Files changed (41) hide show
  1. package/dist/{chunk-RU4TNHFG.js → chunk-3AHXYCKA.js} +1 -2
  2. package/dist/chunk-52ZDVDIY.mjs +84 -0
  3. package/dist/{chunk-A3ELSD3U.js → chunk-HKZ7DBR7.js} +1 -2
  4. package/dist/chunk-KCQIASWP.js +84 -0
  5. package/dist/{chunk-6QGYUCID.mjs → chunk-N55FJ7J3.mjs} +0 -1
  6. package/dist/{chunk-K6UOPTIZ.mjs → chunk-QQ64FCAP.mjs} +1 -2
  7. package/dist/executors.d.mts +2 -1
  8. package/dist/executors.d.ts +2 -1
  9. package/dist/executors.js +9 -11
  10. package/dist/executors.mjs +9 -11
  11. package/dist/generators.js +3 -3
  12. package/dist/generators.mjs +3 -3
  13. package/dist/index.d.mts +3 -2
  14. package/dist/index.d.ts +3 -2
  15. package/dist/index.js +12 -14
  16. package/dist/index.mjs +12 -14
  17. package/dist/{executor-BF7_LjrR.d.mts → schema.d-Muf2toJ0.d.mts} +1 -8
  18. package/dist/{executor-BF7_LjrR.d.ts → schema.d-Muf2toJ0.d.ts} +1 -8
  19. package/dist/schema.d-vPuQzus3.d.mts +41 -0
  20. package/dist/schema.d-vPuQzus3.d.ts +41 -0
  21. package/dist/src/executors/cargo-publish/executor.js +2 -2
  22. package/dist/src/executors/cargo-publish/executor.mjs +1 -1
  23. package/dist/src/executors/command-publish/executor.d.mts +8 -0
  24. package/dist/src/executors/command-publish/executor.d.ts +8 -0
  25. package/dist/src/executors/command-publish/executor.js +7 -0
  26. package/dist/src/executors/command-publish/executor.mjs +8 -0
  27. package/dist/src/executors/command-publish/schema.d.ts +41 -0
  28. package/dist/src/executors/command-publish/schema.json +52 -0
  29. package/dist/src/executors/command-publish/untyped.d.mts +5 -0
  30. package/dist/src/executors/command-publish/untyped.d.ts +5 -0
  31. package/dist/src/executors/command-publish/untyped.js +46 -0
  32. package/dist/src/executors/command-publish/untyped.mjs +48 -0
  33. package/dist/src/executors/npm-publish/executor.d.mts +8 -2
  34. package/dist/src/executors/npm-publish/executor.d.ts +8 -2
  35. package/dist/src/executors/npm-publish/executor.js +2 -4
  36. package/dist/src/executors/npm-publish/executor.mjs +1 -3
  37. package/docs/api/executors/command-publish/schema.md +43 -0
  38. package/executors.json +5 -0
  39. package/package.json +12 -12
  40. /package/dist/{chunk-GHQJKIMQ.mjs → chunk-OYOYESMB.mjs} +0 -0
  41. /package/dist/{chunk-P6HSE7LH.js → chunk-TEX5JJNH.js} +0 -0
@@ -7,7 +7,6 @@ var _devkit = require('@nx/devkit');
7
7
  var _child_process = require('child_process');
8
8
  var _fs = require('fs');
9
9
  var _https = require('https'); var _https2 = _interopRequireDefault(_https);
10
- var LARGE_BUFFER = 1024 * 1e6;
11
10
  async function runExecutor(options, context) {
12
11
  const isDryRun = process.env.NX_DRY_RUN === "true" || options.dryRun || false;
13
12
  if (!context.projectName) {
@@ -56,7 +55,7 @@ async function runExecutor(options, context) {
56
55
  console.log(`Running "${cargoPublishCommand}"...`);
57
56
  console.log("");
58
57
  _child_process.execSync.call(void 0, cargoPublishCommand, {
59
- maxBuffer: LARGE_BUFFER,
58
+ maxBuffer: 1024 * 1e6,
60
59
  env: {
61
60
  ...process.env,
62
61
  FORCE_COLOR: "true"
@@ -0,0 +1,84 @@
1
+ import {
2
+ joinPaths
3
+ } from "./chunk-TBW5MCN6.mjs";
4
+
5
+ // src/executors/command-publish/executor.ts
6
+ import { execSync } from "node:child_process";
7
+ import { isAbsolute } from "node:path";
8
+ async function commandPublishExecutorFn(options, context) {
9
+ const isDryRun = process.env.NX_DRY_RUN === "true" || options.dryRun || false;
10
+ if (!context.projectName) {
11
+ throw new Error("The `command-publish` executor requires a `projectName`.");
12
+ }
13
+ const projectConfig = context.projectsConfigurations?.projects?.[context.projectName];
14
+ if (!projectConfig?.root) {
15
+ throw new Error(
16
+ `Could not find project configuration for \`${context.projectName}\``
17
+ );
18
+ }
19
+ const commands = resolveCommands(options);
20
+ if (commands.length === 0) {
21
+ throw new Error(
22
+ "The `command-publish` executor requires a `command` or `commands` option."
23
+ );
24
+ }
25
+ console.info(
26
+ `\u{1F680} Running Storm Command Publish executor on the ${context.projectName} project`
27
+ );
28
+ const cwd = resolveCwd(options.cwd, context.root, projectConfig.root);
29
+ for (const command of commands) {
30
+ if (isDryRun) {
31
+ console.info(
32
+ `Would run publish command "${command}" in current working directory: "${cwd}", but [dry-run] was set.`
33
+ );
34
+ continue;
35
+ }
36
+ try {
37
+ console.info(
38
+ `Running publish command "${command}" in current working directory: "${cwd}"`
39
+ );
40
+ const result = execSync(command, {
41
+ cwd,
42
+ env: {
43
+ ...process.env,
44
+ FORCE_COLOR: "true"
45
+ },
46
+ maxBuffer: 1024 * 1e6,
47
+ killSignal: "SIGTERM"
48
+ });
49
+ console.info(
50
+ `Published ${context.projectName} successfully.${result ? `
51
+
52
+ Execution response: ${result.toString()}` : ""}`
53
+ );
54
+ } catch (error) {
55
+ console.error(`Failed to publish ${context.projectName}`);
56
+ console.error(error);
57
+ console.log("");
58
+ return { success: false };
59
+ }
60
+ }
61
+ return { success: true };
62
+ }
63
+ function resolveCommands(options) {
64
+ if (options.commands?.length) {
65
+ return options.commands.map((command) => command.trim()).filter(Boolean);
66
+ }
67
+ if (options.command?.trim()) {
68
+ return [options.command.trim()];
69
+ }
70
+ return [];
71
+ }
72
+ function resolveCwd(cwdOption, workspaceRoot, projectRoot) {
73
+ if (!cwdOption) {
74
+ return joinPaths(workspaceRoot, projectRoot);
75
+ }
76
+ if (isAbsolute(cwdOption)) {
77
+ return cwdOption;
78
+ }
79
+ return joinPaths(workspaceRoot, cwdOption);
80
+ }
81
+
82
+ export {
83
+ commandPublishExecutorFn
84
+ };
@@ -325,5 +325,4 @@ Error: ${JSON.stringify(
325
325
 
326
326
 
327
327
 
328
-
329
- exports.LARGE_BUFFER = LARGE_BUFFER; exports.npmPublishExecutorFn = npmPublishExecutorFn;
328
+ exports.npmPublishExecutorFn = npmPublishExecutorFn;
@@ -0,0 +1,84 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
2
+
3
+ var _chunkCQDBLKPFjs = require('./chunk-CQDBLKPF.js');
4
+
5
+ // src/executors/command-publish/executor.ts
6
+ var _child_process = require('child_process');
7
+ var _path = require('path');
8
+ async function commandPublishExecutorFn(options, context) {
9
+ const isDryRun = process.env.NX_DRY_RUN === "true" || options.dryRun || false;
10
+ if (!context.projectName) {
11
+ throw new Error("The `command-publish` executor requires a `projectName`.");
12
+ }
13
+ const projectConfig = _optionalChain([context, 'access', _ => _.projectsConfigurations, 'optionalAccess', _2 => _2.projects, 'optionalAccess', _3 => _3[context.projectName]]);
14
+ if (!_optionalChain([projectConfig, 'optionalAccess', _4 => _4.root])) {
15
+ throw new Error(
16
+ `Could not find project configuration for \`${context.projectName}\``
17
+ );
18
+ }
19
+ const commands = resolveCommands(options);
20
+ if (commands.length === 0) {
21
+ throw new Error(
22
+ "The `command-publish` executor requires a `command` or `commands` option."
23
+ );
24
+ }
25
+ console.info(
26
+ `\u{1F680} Running Storm Command Publish executor on the ${context.projectName} project`
27
+ );
28
+ const cwd = resolveCwd(options.cwd, context.root, projectConfig.root);
29
+ for (const command of commands) {
30
+ if (isDryRun) {
31
+ console.info(
32
+ `Would run publish command "${command}" in current working directory: "${cwd}", but [dry-run] was set.`
33
+ );
34
+ continue;
35
+ }
36
+ try {
37
+ console.info(
38
+ `Running publish command "${command}" in current working directory: "${cwd}"`
39
+ );
40
+ const result = _child_process.execSync.call(void 0, command, {
41
+ cwd,
42
+ env: {
43
+ ...process.env,
44
+ FORCE_COLOR: "true"
45
+ },
46
+ maxBuffer: 1024 * 1e6,
47
+ killSignal: "SIGTERM"
48
+ });
49
+ console.info(
50
+ `Published ${context.projectName} successfully.${result ? `
51
+
52
+ Execution response: ${result.toString()}` : ""}`
53
+ );
54
+ } catch (error) {
55
+ console.error(`Failed to publish ${context.projectName}`);
56
+ console.error(error);
57
+ console.log("");
58
+ return { success: false };
59
+ }
60
+ }
61
+ return { success: true };
62
+ }
63
+ function resolveCommands(options) {
64
+ if (_optionalChain([options, 'access', _5 => _5.commands, 'optionalAccess', _6 => _6.length])) {
65
+ return options.commands.map((command) => command.trim()).filter(Boolean);
66
+ }
67
+ if (_optionalChain([options, 'access', _7 => _7.command, 'optionalAccess', _8 => _8.trim, 'call', _9 => _9()])) {
68
+ return [options.command.trim()];
69
+ }
70
+ return [];
71
+ }
72
+ function resolveCwd(cwdOption, workspaceRoot, projectRoot) {
73
+ if (!cwdOption) {
74
+ return _chunkCQDBLKPFjs.joinPaths.call(void 0, workspaceRoot, projectRoot);
75
+ }
76
+ if (_path.isAbsolute.call(void 0, cwdOption)) {
77
+ return cwdOption;
78
+ }
79
+ return _chunkCQDBLKPFjs.joinPaths.call(void 0, workspaceRoot, cwdOption);
80
+ }
81
+
82
+
83
+
84
+ exports.commandPublishExecutorFn = commandPublishExecutorFn;
@@ -324,6 +324,5 @@ Error: ${JSON.stringify(
324
324
  }
325
325
 
326
326
  export {
327
- LARGE_BUFFER,
328
327
  npmPublishExecutorFn
329
328
  };
@@ -7,7 +7,6 @@ import { joinPathFragments } from "@nx/devkit";
7
7
  import { execSync } from "node:child_process";
8
8
  import { readFileSync } from "node:fs";
9
9
  import https from "node:https";
10
- var LARGE_BUFFER = 1024 * 1e6;
11
10
  async function runExecutor(options, context) {
12
11
  const isDryRun = process.env.NX_DRY_RUN === "true" || options.dryRun || false;
13
12
  if (!context.projectName) {
@@ -56,7 +55,7 @@ async function runExecutor(options, context) {
56
55
  console.log(`Running "${cargoPublishCommand}"...`);
57
56
  console.log("");
58
57
  execSync(cargoPublishCommand, {
59
- maxBuffer: LARGE_BUFFER,
58
+ maxBuffer: 1024 * 1e6,
60
59
  env: {
61
60
  ...process.env,
62
61
  FORCE_COLOR: "true"
@@ -4,10 +4,11 @@ export { C as CargoClippyExecutorSchema, c as cargoClippyExecutor } from './exec
4
4
  export { C as CargoDocExecutorSchema, c as cargoDocExecutor } from './executor-DpEbHA1f.mjs';
5
5
  export { C as CargoFormatExecutorSchema, c as cargoFormatExecutor } from './executor-CVgzIGPj.mjs';
6
6
  export { C as CargoPublishExecutorSchema, g as getRegistryVersion } from './executor-jYQ7uQ13.mjs';
7
+ export { C as CommandPublishExecutorSchema } from './schema.d-vPuQzus3.mjs';
7
8
  export { C as CleanPackageExecutorSchema } from './schema.d-B9y7rRms.mjs';
8
9
  export { E as ESBuildExecutorSchema, e as esbuildExecutorFn } from './executor-Bvhe30H9.mjs';
9
10
  export { N as NapiExecutorSchema, n as napiExecutor } from './executor-DGBYJ2e9.mjs';
10
- export { L as LARGE_BUFFER, N as NpmPublishExecutorSchema } from './executor-BF7_LjrR.mjs';
11
+ export { N as NpmPublishExecutorSchema } from './schema.d-Muf2toJ0.mjs';
11
12
  export { S as SizeLimitExecutorSchema, s as sizeLimitExecutorFn } from './executor-gZ6drqad.mjs';
12
13
  export { T as TSDownExecutorSchema, t as tsdownExecutorFn } from './executor-CfRFawOI.mjs';
13
14
  export { T as TypiaExecutorSchema, t as typiaExecutorFn } from './executor-ByqK10v5.mjs';
@@ -4,10 +4,11 @@ export { C as CargoClippyExecutorSchema, c as cargoClippyExecutor } from './exec
4
4
  export { C as CargoDocExecutorSchema, c as cargoDocExecutor } from './executor-DpEbHA1f.js';
5
5
  export { C as CargoFormatExecutorSchema, c as cargoFormatExecutor } from './executor-CVgzIGPj.js';
6
6
  export { C as CargoPublishExecutorSchema, g as getRegistryVersion } from './executor-jYQ7uQ13.js';
7
+ export { C as CommandPublishExecutorSchema } from './schema.d-vPuQzus3.js';
7
8
  export { C as CleanPackageExecutorSchema } from './schema.d-B9y7rRms.js';
8
9
  export { E as ESBuildExecutorSchema, e as esbuildExecutorFn } from './executor-Bvhe30H9.js';
9
10
  export { N as NapiExecutorSchema, n as napiExecutor } from './executor-DGBYJ2e9.js';
10
- export { L as LARGE_BUFFER, N as NpmPublishExecutorSchema } from './executor-BF7_LjrR.js';
11
+ export { N as NpmPublishExecutorSchema } from './schema.d-Muf2toJ0.js';
11
12
  export { S as SizeLimitExecutorSchema, s as sizeLimitExecutorFn } from './executor-gZ6drqad.js';
12
13
  export { T as TSDownExecutorSchema, t as tsdownExecutorFn } from './executor-CfRFawOI.js';
13
14
  export { T as TypiaExecutorSchema, t as typiaExecutorFn } from './executor-ByqK10v5.js';
package/dist/executors.js CHANGED
@@ -1,10 +1,14 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-P6HSE7LH.js');
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-TEX5JJNH.js');
2
+
3
+
4
+ var _chunkUEDAT7SJjs = require('./chunk-UEDAT7SJ.js');
2
5
 
3
6
 
4
7
  var _chunkZWUGCEBZjs = require('./chunk-ZWUGCEBZ.js');
5
8
 
6
9
 
7
- var _chunkA3ELSD3Ujs = require('./chunk-A3ELSD3U.js');
10
+ var _chunkVKLLVYQ5js = require('./chunk-VKLLVYQ5.js');
11
+ require('./chunk-HKZ7DBR7.js');
8
12
 
9
13
 
10
14
  var _chunk65C6CGV3js = require('./chunk-65C6CGV3.js');
@@ -13,18 +17,13 @@ var _chunk65C6CGV3js = require('./chunk-65C6CGV3.js');
13
17
  var _chunkULONYXYFjs = require('./chunk-ULONYXYF.js');
14
18
 
15
19
 
16
- var _chunkUEDAT7SJjs = require('./chunk-UEDAT7SJ.js');
17
-
18
-
19
- var _chunkRU4TNHFGjs = require('./chunk-RU4TNHFG.js');
20
+ var _chunk3AHXYCKAjs = require('./chunk-3AHXYCKA.js');
21
+ require('./chunk-KCQIASWP.js');
20
22
 
21
23
 
22
24
  var _chunkN5LZIOWWjs = require('./chunk-N5LZIOWW.js');
23
25
 
24
26
 
25
- var _chunkVKLLVYQ5js = require('./chunk-VKLLVYQ5.js');
26
-
27
-
28
27
  var _chunkIV2QQRXOjs = require('./chunk-IV2QQRXO.js');
29
28
 
30
29
 
@@ -63,5 +62,4 @@ require('./chunk-CQDBLKPF.js');
63
62
 
64
63
 
65
64
 
66
-
67
- exports.LARGE_BUFFER = _chunkA3ELSD3Ujs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkWKCSKEFYjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkIV2QQRXOjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkKDZH66U5js.cargoClippyExecutor; exports.cargoDocExecutor = _chunk6W7UEKUNjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkXXCBFZB6js.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkN5LZIOWWjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkRU4TNHFGjs.getRegistryVersion; exports.napiExecutor = _chunkVKLLVYQ5js.napiExecutor; exports.sizeLimitExecutorFn = _chunk65C6CGV3js.sizeLimitExecutorFn; exports.tsdownExecutorFn = _chunkULONYXYFjs.tsdownExecutorFn; exports.typiaExecutorFn = _chunkUEDAT7SJjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkZWUGCEBZjs.unbuildExecutorFn;
65
+ exports.cargoBuildExecutor = _chunkWKCSKEFYjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkIV2QQRXOjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkKDZH66U5js.cargoClippyExecutor; exports.cargoDocExecutor = _chunk6W7UEKUNjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkXXCBFZB6js.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkN5LZIOWWjs.esbuildExecutorFn; exports.getRegistryVersion = _chunk3AHXYCKAjs.getRegistryVersion; exports.napiExecutor = _chunkVKLLVYQ5js.napiExecutor; exports.sizeLimitExecutorFn = _chunk65C6CGV3js.sizeLimitExecutorFn; exports.tsdownExecutorFn = _chunkULONYXYFjs.tsdownExecutorFn; exports.typiaExecutorFn = _chunkUEDAT7SJjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkZWUGCEBZjs.unbuildExecutorFn;
@@ -1,28 +1,27 @@
1
- import "./chunk-GHQJKIMQ.mjs";
1
+ import "./chunk-OYOYESMB.mjs";
2
+ import {
3
+ typiaExecutorFn
4
+ } from "./chunk-B2MF67R6.mjs";
2
5
  import {
3
6
  unbuildExecutorFn
4
7
  } from "./chunk-N2PEIA6H.mjs";
5
8
  import {
6
- LARGE_BUFFER
7
- } from "./chunk-6QGYUCID.mjs";
9
+ napiExecutor
10
+ } from "./chunk-U6J67ZUE.mjs";
11
+ import "./chunk-N55FJ7J3.mjs";
8
12
  import {
9
13
  sizeLimitExecutorFn
10
14
  } from "./chunk-I7RM7R7C.mjs";
11
15
  import {
12
16
  tsdownExecutorFn
13
17
  } from "./chunk-MOIGXVIF.mjs";
14
- import {
15
- typiaExecutorFn
16
- } from "./chunk-B2MF67R6.mjs";
17
18
  import {
18
19
  getRegistryVersion
19
- } from "./chunk-K6UOPTIZ.mjs";
20
+ } from "./chunk-QQ64FCAP.mjs";
21
+ import "./chunk-52ZDVDIY.mjs";
20
22
  import {
21
23
  esbuildExecutorFn
22
24
  } from "./chunk-XLOJK63P.mjs";
23
- import {
24
- napiExecutor
25
- } from "./chunk-U6J67ZUE.mjs";
26
25
  import {
27
26
  cargoCheckExecutor
28
27
  } from "./chunk-36N55IVK.mjs";
@@ -52,7 +51,6 @@ import "./chunk-JUJWJXED.mjs";
52
51
  import "./chunk-TBW5MCN6.mjs";
53
52
  import "./chunk-63OCFWY4.mjs";
54
53
  export {
55
- LARGE_BUFFER,
56
54
  cargoBuildExecutor,
57
55
  cargoCheckExecutor,
58
56
  cargoClippyExecutor,
@@ -1,6 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-C3TC7AUW.js');
2
2
 
3
3
 
4
+ var _chunkOKSECMVKjs = require('./chunk-OKSECMVK.js');
5
+
6
+
4
7
  var _chunkW4JSEGT2js = require('./chunk-W4JSEGT2.js');
5
8
 
6
9
 
@@ -14,9 +17,6 @@ var _chunkXV4FCARJjs = require('./chunk-XV4FCARJ.js');
14
17
 
15
18
 
16
19
  var _chunk32MOOPKKjs = require('./chunk-32MOOPKK.js');
17
-
18
-
19
- var _chunkOKSECMVKjs = require('./chunk-OKSECMVK.js');
20
20
  require('./chunk-HN5UXNLM.js');
21
21
  require('./chunk-ILSI74FW.js');
22
22
  require('./chunk-3G7PNDZ5.js');
@@ -1,4 +1,7 @@
1
1
  import "./chunk-SAIDGUHG.mjs";
2
+ import {
3
+ initGenerator
4
+ } from "./chunk-437WGH2M.mjs";
2
5
  import {
3
6
  neutralLibraryGeneratorFn
4
7
  } from "./chunk-5IB3CZCB.mjs";
@@ -14,9 +17,6 @@ import {
14
17
  import {
15
18
  configSchemaGeneratorFn
16
19
  } from "./chunk-EYIUJSGD.mjs";
17
- import {
18
- initGenerator
19
- } from "./chunk-437WGH2M.mjs";
20
20
  import "./chunk-VQYZG5YE.mjs";
21
21
  import "./chunk-XSHN3XHD.mjs";
22
22
  import "./chunk-DEHA5C77.mjs";
package/dist/index.d.mts CHANGED
@@ -4,10 +4,12 @@ export { C as CargoClippyExecutorSchema, c as cargoClippyExecutor } from './exec
4
4
  export { C as CargoDocExecutorSchema, c as cargoDocExecutor } from './executor-DpEbHA1f.mjs';
5
5
  export { C as CargoFormatExecutorSchema, c as cargoFormatExecutor } from './executor-CVgzIGPj.mjs';
6
6
  export { C as CargoPublishExecutorSchema, g as getRegistryVersion } from './executor-jYQ7uQ13.mjs';
7
+ export { PackageManager } from '@nx/devkit';
8
+ export { C as CommandPublishExecutorSchema } from './schema.d-vPuQzus3.mjs';
7
9
  export { C as CleanPackageExecutorSchema } from './schema.d-B9y7rRms.mjs';
8
10
  export { E as ESBuildExecutorSchema, e as esbuildExecutorFn } from './executor-Bvhe30H9.mjs';
9
11
  export { N as NapiExecutorSchema, n as napiExecutor } from './executor-DGBYJ2e9.mjs';
10
- export { L as LARGE_BUFFER, N as NpmPublishExecutorSchema } from './executor-BF7_LjrR.mjs';
12
+ export { N as NpmPublishExecutorSchema } from './schema.d-Muf2toJ0.mjs';
11
13
  export { S as SizeLimitExecutorSchema, s as sizeLimitExecutorFn } from './executor-gZ6drqad.mjs';
12
14
  export { T as TSDownExecutorSchema, t as tsdownExecutorFn } from './executor-CfRFawOI.mjs';
13
15
  export { T as TypiaExecutorSchema, t as typiaExecutorFn } from './executor-ByqK10v5.mjs';
@@ -44,7 +46,6 @@ export { getTypiaTransform } from './src/utils/typia-transform.mjs';
44
46
  export { bunVersion, eslintVersion, lintStagedVersion, nodeVersion, npmVersion, nxVersion, packageManagerVersions, pnpmVersion, prettierPackageJsonVersion, prettierPrismaVersion, prettierVersion, semanticReleaseVersion, swcCliVersion, swcCoreVersion, swcHelpersVersion, swcNodeVersion, tsLibVersion, tsupVersion, typesNodeVersion, typescriptVersion, verdaccioVersion, yarnVersion } from './src/utils/versions.mjs';
45
47
  export * from '@storm-software/package-constants/tags';
46
48
  export * from '@storm-software/package-constants/types';
47
- export { PackageManager } from '@nx/devkit';
48
49
  import '@storm-software/config';
49
50
  import '@storm-software/config/types';
50
51
  import 'zod';
package/dist/index.d.ts CHANGED
@@ -4,10 +4,12 @@ export { C as CargoClippyExecutorSchema, c as cargoClippyExecutor } from './exec
4
4
  export { C as CargoDocExecutorSchema, c as cargoDocExecutor } from './executor-DpEbHA1f.js';
5
5
  export { C as CargoFormatExecutorSchema, c as cargoFormatExecutor } from './executor-CVgzIGPj.js';
6
6
  export { C as CargoPublishExecutorSchema, g as getRegistryVersion } from './executor-jYQ7uQ13.js';
7
+ export { PackageManager } from '@nx/devkit';
8
+ export { C as CommandPublishExecutorSchema } from './schema.d-vPuQzus3.js';
7
9
  export { C as CleanPackageExecutorSchema } from './schema.d-B9y7rRms.js';
8
10
  export { E as ESBuildExecutorSchema, e as esbuildExecutorFn } from './executor-Bvhe30H9.js';
9
11
  export { N as NapiExecutorSchema, n as napiExecutor } from './executor-DGBYJ2e9.js';
10
- export { L as LARGE_BUFFER, N as NpmPublishExecutorSchema } from './executor-BF7_LjrR.js';
12
+ export { N as NpmPublishExecutorSchema } from './schema.d-Muf2toJ0.js';
11
13
  export { S as SizeLimitExecutorSchema, s as sizeLimitExecutorFn } from './executor-gZ6drqad.js';
12
14
  export { T as TSDownExecutorSchema, t as tsdownExecutorFn } from './executor-CfRFawOI.js';
13
15
  export { T as TypiaExecutorSchema, t as typiaExecutorFn } from './executor-ByqK10v5.js';
@@ -44,7 +46,6 @@ export { getTypiaTransform } from './src/utils/typia-transform.js';
44
46
  export { bunVersion, eslintVersion, lintStagedVersion, nodeVersion, npmVersion, nxVersion, packageManagerVersions, pnpmVersion, prettierPackageJsonVersion, prettierPrismaVersion, prettierVersion, semanticReleaseVersion, swcCliVersion, swcCoreVersion, swcHelpersVersion, swcNodeVersion, tsLibVersion, tsupVersion, typesNodeVersion, typescriptVersion, verdaccioVersion, yarnVersion } from './src/utils/versions.js';
45
47
  export * from '@storm-software/package-constants/tags';
46
48
  export * from '@storm-software/package-constants/types';
47
- export { PackageManager } from '@nx/devkit';
48
49
  import '@storm-software/config';
49
50
  import '@storm-software/config/types';
50
51
  import 'zod';
package/dist/index.js CHANGED
@@ -42,13 +42,17 @@ require('./chunk-ANHKV7HZ.js');
42
42
 
43
43
 
44
44
  var _chunkDIIMX7QFjs = require('./chunk-DIIMX7QF.js');
45
- require('./chunk-P6HSE7LH.js');
45
+ require('./chunk-TEX5JJNH.js');
46
+
47
+
48
+ var _chunkUEDAT7SJjs = require('./chunk-UEDAT7SJ.js');
46
49
 
47
50
 
48
51
  var _chunkZWUGCEBZjs = require('./chunk-ZWUGCEBZ.js');
49
52
 
50
53
 
51
- var _chunkA3ELSD3Ujs = require('./chunk-A3ELSD3U.js');
54
+ var _chunkVKLLVYQ5js = require('./chunk-VKLLVYQ5.js');
55
+ require('./chunk-HKZ7DBR7.js');
52
56
 
53
57
 
54
58
  var _chunk65C6CGV3js = require('./chunk-65C6CGV3.js');
@@ -57,18 +61,13 @@ var _chunk65C6CGV3js = require('./chunk-65C6CGV3.js');
57
61
  var _chunkULONYXYFjs = require('./chunk-ULONYXYF.js');
58
62
 
59
63
 
60
- var _chunkUEDAT7SJjs = require('./chunk-UEDAT7SJ.js');
61
-
62
-
63
- var _chunkRU4TNHFGjs = require('./chunk-RU4TNHFG.js');
64
+ var _chunk3AHXYCKAjs = require('./chunk-3AHXYCKA.js');
65
+ require('./chunk-KCQIASWP.js');
64
66
 
65
67
 
66
68
  var _chunkN5LZIOWWjs = require('./chunk-N5LZIOWW.js');
67
69
 
68
70
 
69
- var _chunkVKLLVYQ5js = require('./chunk-VKLLVYQ5.js');
70
-
71
-
72
71
  var _chunkIV2QQRXOjs = require('./chunk-IV2QQRXO.js');
73
72
 
74
73
 
@@ -111,6 +110,9 @@ require('./chunk-N2365RCI.js');
111
110
  require('./chunk-C3TC7AUW.js');
112
111
 
113
112
 
113
+ var _chunkOKSECMVKjs = require('./chunk-OKSECMVK.js');
114
+
115
+
114
116
  var _chunkW4JSEGT2js = require('./chunk-W4JSEGT2.js');
115
117
 
116
118
 
@@ -126,9 +128,6 @@ var _chunkXV4FCARJjs = require('./chunk-XV4FCARJ.js');
126
128
  var _chunk32MOOPKKjs = require('./chunk-32MOOPKK.js');
127
129
 
128
130
 
129
- var _chunkOKSECMVKjs = require('./chunk-OKSECMVK.js');
130
-
131
-
132
131
 
133
132
 
134
133
 
@@ -326,5 +325,4 @@ var _chunk7CJRMBX3js = require('./chunk-7CJRMBX3.js');
326
325
 
327
326
 
328
327
 
329
-
330
- exports.BUN_LOCK_FILE = _chunkHN5UXNLMjs.BUN_LOCK_FILE; exports.BUN_LOCK_PATH = _chunkHN5UXNLMjs.BUN_LOCK_PATH; exports.INVALID_CARGO_ARGS = _chunkHYK7OVZ3js.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkA3ELSD3Ujs.LARGE_BUFFER; exports.LOCK_FILES = _chunkHN5UXNLMjs.LOCK_FILES; exports.LOCK_FILE_BY_PACKAGE_MANAGER = _chunkHN5UXNLMjs.LOCK_FILE_BY_PACKAGE_MANAGER; exports.NAMED_INPUTS = _chunk5KAJDSTQjs.NAMED_INPUTS; exports.NPM_LOCK_FILE = _chunkHN5UXNLMjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkHN5UXNLMjs.NPM_LOCK_PATH; exports.OTHER_LOCK_FILES = _chunkHN5UXNLMjs.OTHER_LOCK_FILES; exports.PNPM_LOCK_FILE = _chunkHN5UXNLMjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkHN5UXNLMjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunkVXOPWQTJjs.PackageManagerTypes; exports.ProjectTagConstants = _chunkTAP26ZJQjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunkX3HC3R2Ijs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunkX3HC3R2Ijs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunkX3HC3R2Ijs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunkX3HC3R2Ijs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunkX3HC3R2Ijs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunkX3HC3R2Ijs.ProjectTagVariant; exports.RELEASE = _chunk5KAJDSTQjs.RELEASE; exports.StormJsVersionActions = _chunkGCYJYDE3js.StormJsVersionActions; exports.StormRustVersionActions = _chunkEFJ2PGGVjs.StormRustVersionActions; exports.TypescriptProjectLinkingType = _chunkX3HC3R2Ijs.TypescriptProjectLinkingType; exports.YARN_LOCK_FILE = _chunkHN5UXNLMjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkHN5UXNLMjs.YARN_LOCK_PATH; exports.addPackageJsonGitHead = _chunkVXOPWQTJjs.addPackageJsonGitHead; exports.addPluginProjectTag = _chunkTAP26ZJQjs.addPluginProjectTag; exports.addProjectTag = _chunkTAP26ZJQjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkDIIMX7QFjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunk7JRL2LE3js.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkXV4FCARJjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkHYK7OVZ3js.buildCargoCommand; exports.bunVersion = _chunk3G7PNDZ5js.bunVersion; exports.cargoBaseExecutorSchema = _chunkLQHVZMFVjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkWKCSKEFYjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkIV2QQRXOjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkKDZH66U5js.cargoClippyExecutor; exports.cargoCommand = _chunkHYK7OVZ3js.cargoCommand; exports.cargoCommandSync = _chunkHYK7OVZ3js.cargoCommandSync; exports.cargoDocExecutor = _chunk6W7UEKUNjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkXXCBFZB6js.cargoFormatExecutor; exports.cargoMetadata = _chunkHYK7OVZ3js.cargoMetadata; exports.cargoRunCommand = _chunkHYK7OVZ3js.cargoRunCommand; exports.childProcess = _chunkHYK7OVZ3js.childProcess; exports.configSchemaGeneratorFn = _chunk32MOOPKKjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkQVYCDINGjs.createCliOptions; exports.createProjectTsConfigJson = _chunkILSI74FWjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkN5LZIOWWjs.esbuildExecutorFn; exports.eslintVersion = _chunk3G7PNDZ5js.eslintVersion; exports.formatProjectTag = _chunkTAP26ZJQjs.formatProjectTag; exports.getGitHubTools = _chunkP5OQBBN3js.getGitHubTools; exports.getInstallCommand = _chunk3MXZ2RJFjs.getInstallCommand; exports.getLockFileDependencies = _chunkHN5UXNLMjs.getLockFileDependencies; exports.getLockFileName = _chunkHN5UXNLMjs.getLockFileName; exports.getLockFileNodes = _chunkHN5UXNLMjs.getLockFileNodes; exports.getOtherLockFileNames = _chunkHN5UXNLMjs.getOtherLockFileNames; exports.getOutputPath = _chunkILSI74FWjs.getOutputPath; exports.getPackageInfo = _chunkVXOPWQTJjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkBAPFD3TOjs.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkBAPFD3TOjs.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkUAK3EVR2js.getProjectConfiguration; exports.getProjectConfigurations = _chunkUAK3EVR2js.getProjectConfigurations; exports.getProjectPlatform = _chunkBAPFD3TOjs.getProjectPlatform; exports.getProjectRoot = _chunkBAPFD3TOjs.getProjectRoot; exports.getProjectTag = _chunkTAP26ZJQjs.getProjectTag; exports.getRegistryVersion = _chunkRU4TNHFGjs.getRegistryVersion; exports.getRoot = _chunkBAPFD3TOjs.getRoot; exports.getTypiaTransform = _chunk6EMYX25Vjs.getTypiaTransform; exports.getWorkspacePackageManager = _chunk3MXZ2RJFjs.getWorkspacePackageManager; exports.getWorkspacePackageManagerCommand = _chunk3MXZ2RJFjs.getWorkspacePackageManagerCommand; exports.hasProjectTag = _chunkTAP26ZJQjs.hasProjectTag; exports.initGenerator = _chunkOKSECMVKjs.initGenerator; exports.isEqualProjectTag = _chunkTAP26ZJQjs.isEqualProjectTag; exports.isExternal = _chunkHYK7OVZ3js.isExternal; exports.lintStagedVersion = _chunk3G7PNDZ5js.lintStagedVersion; exports.lockFileExists = _chunkHN5UXNLMjs.lockFileExists; exports.napiExecutor = _chunkVKLLVYQ5js.napiExecutor; exports.neutralLibraryGeneratorFn = _chunkW4JSEGT2js.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkAETRB5I7js.nodeLibraryGeneratorFn; exports.nodeVersion = _chunk3G7PNDZ5js.nodeVersion; exports.normalizeOptions = _chunkILSI74FWjs.normalizeOptions; exports.npmVersion = _chunk3G7PNDZ5js.npmVersion; exports.nxVersion = _chunk3G7PNDZ5js.nxVersion; exports.packageManagerVersions = _chunk3G7PNDZ5js.packageManagerVersions; exports.pnpmVersion = _chunk3G7PNDZ5js.pnpmVersion; exports.presetGeneratorFn = _chunkHNSYCP2Yjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunk3G7PNDZ5js.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunk3G7PNDZ5js.prettierPrismaVersion; exports.prettierVersion = _chunk3G7PNDZ5js.prettierVersion; exports.runProcess = _chunkHYK7OVZ3js.runProcess; exports.semanticReleaseVersion = _chunk3G7PNDZ5js.semanticReleaseVersion; exports.setDefaultProjectTags = _chunkTAP26ZJQjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunk65C6CGV3js.sizeLimitExecutorFn; exports.stripPrivateWorkspaceDeps = _chunkVXOPWQTJjs.stripPrivateWorkspaceDeps; exports.swcCliVersion = _chunk3G7PNDZ5js.swcCliVersion; exports.swcCoreVersion = _chunk3G7PNDZ5js.swcCoreVersion; exports.swcHelpersVersion = _chunk3G7PNDZ5js.swcHelpersVersion; exports.swcNodeVersion = _chunk3G7PNDZ5js.swcNodeVersion; exports.tsLibVersion = _chunk3G7PNDZ5js.tsLibVersion; exports.tsdownExecutorFn = _chunkULONYXYFjs.tsdownExecutorFn; exports.tsupVersion = _chunk3G7PNDZ5js.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkILSI74FWjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunk3G7PNDZ5js.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkPMPKOMMDjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk2AVWFUXPjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunk3G7PNDZ5js.typescriptVersion; exports.typiaExecutorFn = _chunkUEDAT7SJjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkZWUGCEBZjs.unbuildExecutorFn; exports.verdaccioVersion = _chunk3G7PNDZ5js.verdaccioVersion; exports.withNamedInputs = _chunk5KAJDSTQjs.withNamedInputs; exports.withRunExecutor = _chunk2VQ55YPWjs.withRunExecutor; exports.withRunGenerator = _chunkIZLEVS44js.withRunGenerator; exports.yarnVersion = _chunk3G7PNDZ5js.yarnVersion;
328
+ exports.BUN_LOCK_FILE = _chunkHN5UXNLMjs.BUN_LOCK_FILE; exports.BUN_LOCK_PATH = _chunkHN5UXNLMjs.BUN_LOCK_PATH; exports.INVALID_CARGO_ARGS = _chunkHYK7OVZ3js.INVALID_CARGO_ARGS; exports.LOCK_FILES = _chunkHN5UXNLMjs.LOCK_FILES; exports.LOCK_FILE_BY_PACKAGE_MANAGER = _chunkHN5UXNLMjs.LOCK_FILE_BY_PACKAGE_MANAGER; exports.NAMED_INPUTS = _chunk5KAJDSTQjs.NAMED_INPUTS; exports.NPM_LOCK_FILE = _chunkHN5UXNLMjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkHN5UXNLMjs.NPM_LOCK_PATH; exports.OTHER_LOCK_FILES = _chunkHN5UXNLMjs.OTHER_LOCK_FILES; exports.PNPM_LOCK_FILE = _chunkHN5UXNLMjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkHN5UXNLMjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunkVXOPWQTJjs.PackageManagerTypes; exports.ProjectTagConstants = _chunkTAP26ZJQjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunkX3HC3R2Ijs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunkX3HC3R2Ijs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunkX3HC3R2Ijs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunkX3HC3R2Ijs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunkX3HC3R2Ijs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunkX3HC3R2Ijs.ProjectTagVariant; exports.RELEASE = _chunk5KAJDSTQjs.RELEASE; exports.StormJsVersionActions = _chunkGCYJYDE3js.StormJsVersionActions; exports.StormRustVersionActions = _chunkEFJ2PGGVjs.StormRustVersionActions; exports.TypescriptProjectLinkingType = _chunkX3HC3R2Ijs.TypescriptProjectLinkingType; exports.YARN_LOCK_FILE = _chunkHN5UXNLMjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkHN5UXNLMjs.YARN_LOCK_PATH; exports.addPackageJsonGitHead = _chunkVXOPWQTJjs.addPackageJsonGitHead; exports.addPluginProjectTag = _chunkTAP26ZJQjs.addPluginProjectTag; exports.addProjectTag = _chunkTAP26ZJQjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkDIIMX7QFjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunk7JRL2LE3js.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkXV4FCARJjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkHYK7OVZ3js.buildCargoCommand; exports.bunVersion = _chunk3G7PNDZ5js.bunVersion; exports.cargoBaseExecutorSchema = _chunkLQHVZMFVjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkWKCSKEFYjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkIV2QQRXOjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkKDZH66U5js.cargoClippyExecutor; exports.cargoCommand = _chunkHYK7OVZ3js.cargoCommand; exports.cargoCommandSync = _chunkHYK7OVZ3js.cargoCommandSync; exports.cargoDocExecutor = _chunk6W7UEKUNjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkXXCBFZB6js.cargoFormatExecutor; exports.cargoMetadata = _chunkHYK7OVZ3js.cargoMetadata; exports.cargoRunCommand = _chunkHYK7OVZ3js.cargoRunCommand; exports.childProcess = _chunkHYK7OVZ3js.childProcess; exports.configSchemaGeneratorFn = _chunk32MOOPKKjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkQVYCDINGjs.createCliOptions; exports.createProjectTsConfigJson = _chunkILSI74FWjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkN5LZIOWWjs.esbuildExecutorFn; exports.eslintVersion = _chunk3G7PNDZ5js.eslintVersion; exports.formatProjectTag = _chunkTAP26ZJQjs.formatProjectTag; exports.getGitHubTools = _chunkP5OQBBN3js.getGitHubTools; exports.getInstallCommand = _chunk3MXZ2RJFjs.getInstallCommand; exports.getLockFileDependencies = _chunkHN5UXNLMjs.getLockFileDependencies; exports.getLockFileName = _chunkHN5UXNLMjs.getLockFileName; exports.getLockFileNodes = _chunkHN5UXNLMjs.getLockFileNodes; exports.getOtherLockFileNames = _chunkHN5UXNLMjs.getOtherLockFileNames; exports.getOutputPath = _chunkILSI74FWjs.getOutputPath; exports.getPackageInfo = _chunkVXOPWQTJjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkBAPFD3TOjs.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkBAPFD3TOjs.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkUAK3EVR2js.getProjectConfiguration; exports.getProjectConfigurations = _chunkUAK3EVR2js.getProjectConfigurations; exports.getProjectPlatform = _chunkBAPFD3TOjs.getProjectPlatform; exports.getProjectRoot = _chunkBAPFD3TOjs.getProjectRoot; exports.getProjectTag = _chunkTAP26ZJQjs.getProjectTag; exports.getRegistryVersion = _chunk3AHXYCKAjs.getRegistryVersion; exports.getRoot = _chunkBAPFD3TOjs.getRoot; exports.getTypiaTransform = _chunk6EMYX25Vjs.getTypiaTransform; exports.getWorkspacePackageManager = _chunk3MXZ2RJFjs.getWorkspacePackageManager; exports.getWorkspacePackageManagerCommand = _chunk3MXZ2RJFjs.getWorkspacePackageManagerCommand; exports.hasProjectTag = _chunkTAP26ZJQjs.hasProjectTag; exports.initGenerator = _chunkOKSECMVKjs.initGenerator; exports.isEqualProjectTag = _chunkTAP26ZJQjs.isEqualProjectTag; exports.isExternal = _chunkHYK7OVZ3js.isExternal; exports.lintStagedVersion = _chunk3G7PNDZ5js.lintStagedVersion; exports.lockFileExists = _chunkHN5UXNLMjs.lockFileExists; exports.napiExecutor = _chunkVKLLVYQ5js.napiExecutor; exports.neutralLibraryGeneratorFn = _chunkW4JSEGT2js.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkAETRB5I7js.nodeLibraryGeneratorFn; exports.nodeVersion = _chunk3G7PNDZ5js.nodeVersion; exports.normalizeOptions = _chunkILSI74FWjs.normalizeOptions; exports.npmVersion = _chunk3G7PNDZ5js.npmVersion; exports.nxVersion = _chunk3G7PNDZ5js.nxVersion; exports.packageManagerVersions = _chunk3G7PNDZ5js.packageManagerVersions; exports.pnpmVersion = _chunk3G7PNDZ5js.pnpmVersion; exports.presetGeneratorFn = _chunkHNSYCP2Yjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunk3G7PNDZ5js.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunk3G7PNDZ5js.prettierPrismaVersion; exports.prettierVersion = _chunk3G7PNDZ5js.prettierVersion; exports.runProcess = _chunkHYK7OVZ3js.runProcess; exports.semanticReleaseVersion = _chunk3G7PNDZ5js.semanticReleaseVersion; exports.setDefaultProjectTags = _chunkTAP26ZJQjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunk65C6CGV3js.sizeLimitExecutorFn; exports.stripPrivateWorkspaceDeps = _chunkVXOPWQTJjs.stripPrivateWorkspaceDeps; exports.swcCliVersion = _chunk3G7PNDZ5js.swcCliVersion; exports.swcCoreVersion = _chunk3G7PNDZ5js.swcCoreVersion; exports.swcHelpersVersion = _chunk3G7PNDZ5js.swcHelpersVersion; exports.swcNodeVersion = _chunk3G7PNDZ5js.swcNodeVersion; exports.tsLibVersion = _chunk3G7PNDZ5js.tsLibVersion; exports.tsdownExecutorFn = _chunkULONYXYFjs.tsdownExecutorFn; exports.tsupVersion = _chunk3G7PNDZ5js.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkILSI74FWjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunk3G7PNDZ5js.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkPMPKOMMDjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk2AVWFUXPjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunk3G7PNDZ5js.typescriptVersion; exports.typiaExecutorFn = _chunkUEDAT7SJjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkZWUGCEBZjs.unbuildExecutorFn; exports.verdaccioVersion = _chunk3G7PNDZ5js.verdaccioVersion; exports.withNamedInputs = _chunk5KAJDSTQjs.withNamedInputs; exports.withRunExecutor = _chunk2VQ55YPWjs.withRunExecutor; exports.withRunGenerator = _chunkIZLEVS44js.withRunGenerator; exports.yarnVersion = _chunk3G7PNDZ5js.yarnVersion;
package/dist/index.mjs CHANGED
@@ -42,31 +42,30 @@ import "./chunk-EGI64HQ2.mjs";
42
42
  import {
43
43
  applyWorkspaceExecutorTokens
44
44
  } from "./chunk-EDROFLKN.mjs";
45
- import "./chunk-GHQJKIMQ.mjs";
45
+ import "./chunk-OYOYESMB.mjs";
46
+ import {
47
+ typiaExecutorFn
48
+ } from "./chunk-B2MF67R6.mjs";
46
49
  import {
47
50
  unbuildExecutorFn
48
51
  } from "./chunk-N2PEIA6H.mjs";
49
52
  import {
50
- LARGE_BUFFER
51
- } from "./chunk-6QGYUCID.mjs";
53
+ napiExecutor
54
+ } from "./chunk-U6J67ZUE.mjs";
55
+ import "./chunk-N55FJ7J3.mjs";
52
56
  import {
53
57
  sizeLimitExecutorFn
54
58
  } from "./chunk-I7RM7R7C.mjs";
55
59
  import {
56
60
  tsdownExecutorFn
57
61
  } from "./chunk-MOIGXVIF.mjs";
58
- import {
59
- typiaExecutorFn
60
- } from "./chunk-B2MF67R6.mjs";
61
62
  import {
62
63
  getRegistryVersion
63
- } from "./chunk-K6UOPTIZ.mjs";
64
+ } from "./chunk-QQ64FCAP.mjs";
65
+ import "./chunk-52ZDVDIY.mjs";
64
66
  import {
65
67
  esbuildExecutorFn
66
68
  } from "./chunk-XLOJK63P.mjs";
67
- import {
68
- napiExecutor
69
- } from "./chunk-U6J67ZUE.mjs";
70
69
  import {
71
70
  cargoCheckExecutor
72
71
  } from "./chunk-36N55IVK.mjs";
@@ -109,6 +108,9 @@ import {
109
108
  } from "./chunk-G4DPDEL3.mjs";
110
109
  import "./chunk-UA33NH5O.mjs";
111
110
  import "./chunk-SAIDGUHG.mjs";
111
+ import {
112
+ initGenerator
113
+ } from "./chunk-437WGH2M.mjs";
112
114
  import {
113
115
  neutralLibraryGeneratorFn
114
116
  } from "./chunk-5IB3CZCB.mjs";
@@ -124,9 +126,6 @@ import {
124
126
  import {
125
127
  configSchemaGeneratorFn
126
128
  } from "./chunk-EYIUJSGD.mjs";
127
- import {
128
- initGenerator
129
- } from "./chunk-437WGH2M.mjs";
130
129
  import {
131
130
  BUN_LOCK_FILE,
132
131
  BUN_LOCK_PATH,
@@ -216,7 +215,6 @@ export {
216
215
  BUN_LOCK_FILE,
217
216
  BUN_LOCK_PATH,
218
217
  INVALID_CARGO_ARGS,
219
- LARGE_BUFFER,
220
218
  LOCK_FILES,
221
219
  LOCK_FILE_BY_PACKAGE_MANAGER,
222
220
  NAMED_INPUTS,
@@ -1,5 +1,3 @@
1
- import { ExecutorContext } from '@nx/devkit';
2
-
3
1
  // Generated by @storm-software/untyped
4
2
  // Do not edit this file directly
5
3
 
@@ -67,9 +65,4 @@ interface NpmPublishExecutorSchema {
67
65
  firstRelease?: boolean,
68
66
  }
69
67
 
70
- declare const LARGE_BUFFER: number;
71
- declare function npmPublishExecutorFn(options: NpmPublishExecutorSchema, context: ExecutorContext): Promise<{
72
- success: boolean;
73
- }>;
74
-
75
- export { LARGE_BUFFER as L, type NpmPublishExecutorSchema as N, npmPublishExecutorFn as n };
68
+ export type { NpmPublishExecutorSchema as N };
@@ -1,5 +1,3 @@
1
- import { ExecutorContext } from '@nx/devkit';
2
-
3
1
  // Generated by @storm-software/untyped
4
2
  // Do not edit this file directly
5
3
 
@@ -67,9 +65,4 @@ interface NpmPublishExecutorSchema {
67
65
  firstRelease?: boolean,
68
66
  }
69
67
 
70
- declare const LARGE_BUFFER: number;
71
- declare function npmPublishExecutorFn(options: NpmPublishExecutorSchema, context: ExecutorContext): Promise<{
72
- success: boolean;
73
- }>;
74
-
75
- export { LARGE_BUFFER as L, type NpmPublishExecutorSchema as N, npmPublishExecutorFn as n };
68
+ export type { NpmPublishExecutorSchema as N };
@@ -0,0 +1,41 @@
1
+ // Generated by @storm-software/untyped
2
+ // Do not edit this file directly
3
+
4
+ interface CommandPublishExecutorSchema {
5
+ /**
6
+ * Command
7
+ *
8
+ * The shell command to run to publish the package
9
+ *
10
+ */
11
+ command?: string,
12
+
13
+ /**
14
+ * Commands
15
+ *
16
+ * Shell commands to run to publish the package
17
+ *
18
+ */
19
+ commands?: Array<string>,
20
+
21
+ /**
22
+ * Working Directory
23
+ *
24
+ * The working directory to run the publish command in. Defaults to the project root.
25
+ *
26
+ *
27
+ * @format path
28
+ */
29
+ cwd?: string,
30
+
31
+ /**
32
+ * Dry Run
33
+ *
34
+ * When true, log the commands that would be run without executing them
35
+ *
36
+ * @default false
37
+ */
38
+ dryRun?: boolean,
39
+ }
40
+
41
+ export type { CommandPublishExecutorSchema as C };
@@ -0,0 +1,41 @@
1
+ // Generated by @storm-software/untyped
2
+ // Do not edit this file directly
3
+
4
+ interface CommandPublishExecutorSchema {
5
+ /**
6
+ * Command
7
+ *
8
+ * The shell command to run to publish the package
9
+ *
10
+ */
11
+ command?: string,
12
+
13
+ /**
14
+ * Commands
15
+ *
16
+ * Shell commands to run to publish the package
17
+ *
18
+ */
19
+ commands?: Array<string>,
20
+
21
+ /**
22
+ * Working Directory
23
+ *
24
+ * The working directory to run the publish command in. Defaults to the project root.
25
+ *
26
+ *
27
+ * @format path
28
+ */
29
+ cwd?: string,
30
+
31
+ /**
32
+ * Dry Run
33
+ *
34
+ * When true, log the commands that would be run without executing them
35
+ *
36
+ * @default false
37
+ */
38
+ dryRun?: boolean,
39
+ }
40
+
41
+ export type { CommandPublishExecutorSchema as C };
@@ -1,10 +1,10 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkRU4TNHFGjs = require('../../../chunk-RU4TNHFG.js');
4
+ var _chunk3AHXYCKAjs = require('../../../chunk-3AHXYCKA.js');
5
5
  require('../../../chunk-N2365RCI.js');
6
6
  require('../../../chunk-CLKU7UMG.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkRU4TNHFGjs.runExecutor; exports.getRegistryVersion = _chunkRU4TNHFGjs.getRegistryVersion;
10
+ exports.default = _chunk3AHXYCKAjs.runExecutor; exports.getRegistryVersion = _chunk3AHXYCKAjs.getRegistryVersion;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  getRegistryVersion,
3
3
  runExecutor
4
- } from "../../../chunk-K6UOPTIZ.mjs";
4
+ } from "../../../chunk-QQ64FCAP.mjs";
5
5
  import "../../../chunk-UA33NH5O.mjs";
6
6
  import "../../../chunk-45CW7OJB.mjs";
7
7
  import "../../../chunk-63OCFWY4.mjs";
@@ -0,0 +1,8 @@
1
+ import { ExecutorContext } from '@nx/devkit';
2
+ import { C as CommandPublishExecutorSchema } from '../../../schema.d-vPuQzus3.mjs';
3
+
4
+ declare function commandPublishExecutorFn(options: CommandPublishExecutorSchema, context: ExecutorContext): Promise<{
5
+ success: boolean;
6
+ }>;
7
+
8
+ export { commandPublishExecutorFn as default };
@@ -0,0 +1,8 @@
1
+ import { ExecutorContext } from '@nx/devkit';
2
+ import { C as CommandPublishExecutorSchema } from '../../../schema.d-vPuQzus3.js';
3
+
4
+ declare function commandPublishExecutorFn(options: CommandPublishExecutorSchema, context: ExecutorContext): Promise<{
5
+ success: boolean;
6
+ }>;
7
+
8
+ export { commandPublishExecutorFn as default };
@@ -0,0 +1,7 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
+
3
+ var _chunkKCQIASWPjs = require('../../../chunk-KCQIASWP.js');
4
+ require('../../../chunk-CQDBLKPF.js');
5
+
6
+
7
+ exports.default = _chunkKCQIASWPjs.commandPublishExecutorFn;
@@ -0,0 +1,8 @@
1
+ import {
2
+ commandPublishExecutorFn
3
+ } from "../../../chunk-52ZDVDIY.mjs";
4
+ import "../../../chunk-TBW5MCN6.mjs";
5
+ import "../../../chunk-63OCFWY4.mjs";
6
+ export {
7
+ commandPublishExecutorFn as default
8
+ };
@@ -0,0 +1,41 @@
1
+
2
+ // Generated by @storm-software/untyped
3
+ // Do not edit this file directly
4
+
5
+ export interface CommandPublishExecutorSchema {
6
+ /**
7
+ * Command
8
+ *
9
+ * The shell command to run to publish the package
10
+ *
11
+ */
12
+ command?: string,
13
+
14
+ /**
15
+ * Commands
16
+ *
17
+ * Shell commands to run to publish the package
18
+ *
19
+ */
20
+ commands?: Array<string>,
21
+
22
+ /**
23
+ * Working Directory
24
+ *
25
+ * The working directory to run the publish command in. Defaults to the project root.
26
+ *
27
+ *
28
+ * @format path
29
+ */
30
+ cwd?: string,
31
+
32
+ /**
33
+ * Dry Run
34
+ *
35
+ * When true, log the commands that would be run without executing them
36
+ *
37
+ * @default false
38
+ */
39
+ dryRun?: boolean,
40
+ }
41
+
@@ -0,0 +1,52 @@
1
+ {
2
+ "id": "#",
3
+ "title": "Command Publish Executor",
4
+ "description": "A type definition for a Command Publish executor schema that runs a user-provided publish command",
5
+ "oneOf": [
6
+ {
7
+ "required": [
8
+ "commands"
9
+ ]
10
+ },
11
+ {
12
+ "required": [
13
+ "command"
14
+ ]
15
+ }
16
+ ],
17
+ "properties": {
18
+ "command": {
19
+ "title": "Command",
20
+ "type": "string",
21
+ "description": "The shell command to run to publish the package",
22
+ "id": "#command"
23
+ },
24
+ "commands": {
25
+ "title": "Commands",
26
+ "type": "array",
27
+ "description": "Shell commands to run to publish the package",
28
+ "items": {
29
+ "type": "string"
30
+ },
31
+ "id": "#commands"
32
+ },
33
+ "cwd": {
34
+ "title": "Working Directory",
35
+ "type": "string",
36
+ "format": "path",
37
+ "description": "The working directory to run the publish command in. Defaults to the project root.",
38
+ "id": "#cwd"
39
+ },
40
+ "dryRun": {
41
+ "title": "Dry Run",
42
+ "type": "boolean",
43
+ "description": "When true, log the commands that would be run without executing them",
44
+ "id": "#dryRun",
45
+ "default": false
46
+ }
47
+ },
48
+ "type": "object",
49
+ "default": {
50
+ "dryRun": false
51
+ }
52
+ }
@@ -0,0 +1,5 @@
1
+ import * as untyped from 'untyped';
2
+
3
+ declare const _default: untyped.SchemaDefinition;
4
+
5
+ export { _default as default };
@@ -0,0 +1,5 @@
1
+ import * as untyped from 'untyped';
2
+
3
+ declare const _default: untyped.SchemaDefinition;
4
+
5
+ export { _default as default };
@@ -0,0 +1,46 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/executors/command-publish/untyped.ts
2
+ var _untyped = require('untyped');
3
+ var untyped_default = _untyped.defineUntypedSchema.call(void 0, {
4
+ $schema: {
5
+ id: "CommandPublishExecutorSchema",
6
+ title: "Command Publish Executor",
7
+ description: "A type definition for a Command Publish executor schema that runs a user-provided publish command",
8
+ oneOf: [{ required: ["commands"] }, { required: ["command"] }]
9
+ },
10
+ command: {
11
+ $schema: {
12
+ title: "Command",
13
+ type: "string",
14
+ description: "The shell command to run to publish the package"
15
+ }
16
+ },
17
+ commands: {
18
+ $schema: {
19
+ title: "Commands",
20
+ type: "array",
21
+ description: "Shell commands to run to publish the package",
22
+ items: {
23
+ type: "string"
24
+ }
25
+ }
26
+ },
27
+ cwd: {
28
+ $schema: {
29
+ title: "Working Directory",
30
+ type: "string",
31
+ format: "path",
32
+ description: "The working directory to run the publish command in. Defaults to the project root."
33
+ }
34
+ },
35
+ dryRun: {
36
+ $schema: {
37
+ title: "Dry Run",
38
+ type: "boolean",
39
+ description: "When true, log the commands that would be run without executing them"
40
+ },
41
+ $default: false
42
+ }
43
+ });
44
+
45
+
46
+ exports.default = untyped_default;
@@ -0,0 +1,48 @@
1
+ import "../../../chunk-63OCFWY4.mjs";
2
+
3
+ // src/executors/command-publish/untyped.ts
4
+ import { defineUntypedSchema } from "untyped";
5
+ var untyped_default = defineUntypedSchema({
6
+ $schema: {
7
+ id: "CommandPublishExecutorSchema",
8
+ title: "Command Publish Executor",
9
+ description: "A type definition for a Command Publish executor schema that runs a user-provided publish command",
10
+ oneOf: [{ required: ["commands"] }, { required: ["command"] }]
11
+ },
12
+ command: {
13
+ $schema: {
14
+ title: "Command",
15
+ type: "string",
16
+ description: "The shell command to run to publish the package"
17
+ }
18
+ },
19
+ commands: {
20
+ $schema: {
21
+ title: "Commands",
22
+ type: "array",
23
+ description: "Shell commands to run to publish the package",
24
+ items: {
25
+ type: "string"
26
+ }
27
+ }
28
+ },
29
+ cwd: {
30
+ $schema: {
31
+ title: "Working Directory",
32
+ type: "string",
33
+ format: "path",
34
+ description: "The working directory to run the publish command in. Defaults to the project root."
35
+ }
36
+ },
37
+ dryRun: {
38
+ $schema: {
39
+ title: "Dry Run",
40
+ type: "boolean",
41
+ description: "When true, log the commands that would be run without executing them"
42
+ },
43
+ $default: false
44
+ }
45
+ });
46
+ export {
47
+ untyped_default as default
48
+ };
@@ -1,2 +1,8 @@
1
- import '@nx/devkit';
2
- export { L as LARGE_BUFFER, n as default } from '../../../executor-BF7_LjrR.mjs';
1
+ import { ExecutorContext } from '@nx/devkit';
2
+ import { N as NpmPublishExecutorSchema } from '../../../schema.d-Muf2toJ0.mjs';
3
+
4
+ declare function npmPublishExecutorFn(options: NpmPublishExecutorSchema, context: ExecutorContext): Promise<{
5
+ success: boolean;
6
+ }>;
7
+
8
+ export { npmPublishExecutorFn as default };
@@ -1,2 +1,8 @@
1
- import '@nx/devkit';
2
- export { L as LARGE_BUFFER, n as default } from '../../../executor-BF7_LjrR.js';
1
+ import { ExecutorContext } from '@nx/devkit';
2
+ import { N as NpmPublishExecutorSchema } from '../../../schema.d-Muf2toJ0.js';
3
+
4
+ declare function npmPublishExecutorFn(options: NpmPublishExecutorSchema, context: ExecutorContext): Promise<{
5
+ success: boolean;
6
+ }>;
7
+
8
+ export { npmPublishExecutorFn as default };
@@ -1,7 +1,6 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
-
4
- var _chunkA3ELSD3Ujs = require('../../../chunk-A3ELSD3U.js');
3
+ var _chunkHKZ7DBR7js = require('../../../chunk-HKZ7DBR7.js');
5
4
  require('../../../chunk-3MXZ2RJF.js');
6
5
  require('../../../chunk-P5OQBBN3.js');
7
6
  require('../../../chunk-VXOPWQTJ.js');
@@ -13,5 +12,4 @@ require('../../../chunk-GUI4USIO.js');
13
12
  require('../../../chunk-CQDBLKPF.js');
14
13
 
15
14
 
16
-
17
- exports.LARGE_BUFFER = _chunkA3ELSD3Ujs.LARGE_BUFFER; exports.default = _chunkA3ELSD3Ujs.npmPublishExecutorFn;
15
+ exports.default = _chunkHKZ7DBR7js.npmPublishExecutorFn;
@@ -1,7 +1,6 @@
1
1
  import {
2
- LARGE_BUFFER,
3
2
  npmPublishExecutorFn
4
- } from "../../../chunk-6QGYUCID.mjs";
3
+ } from "../../../chunk-N55FJ7J3.mjs";
5
4
  import "../../../chunk-EXRSULNO.mjs";
6
5
  import "../../../chunk-SHJC4UVH.mjs";
7
6
  import "../../../chunk-G4DPDEL3.mjs";
@@ -13,6 +12,5 @@ import "../../../chunk-JUJWJXED.mjs";
13
12
  import "../../../chunk-TBW5MCN6.mjs";
14
13
  import "../../../chunk-63OCFWY4.mjs";
15
14
  export {
16
- LARGE_BUFFER,
17
15
  npmPublishExecutorFn as default
18
16
  };
@@ -0,0 +1,43 @@
1
+
2
+ <!-- Generated by @storm-software/untyped -->
3
+ <!-- Do not edit this file directly -->
4
+
5
+ # Command Publish Executor
6
+
7
+ ## `command`
8
+ - **Type**: `string`
9
+
10
+ > Command
11
+
12
+
13
+ The shell command to run to publish the package
14
+
15
+
16
+ ## `commands`
17
+ - **Type**: `array`
18
+
19
+ > Commands
20
+
21
+
22
+ Shell commands to run to publish the package
23
+
24
+
25
+ ## `cwd`
26
+ - **Type**: `string`
27
+
28
+ > Working Directory
29
+
30
+
31
+ The working directory to run the publish command in. Defaults to the project root.
32
+
33
+
34
+ ## `dryRun`
35
+ - **Type**: `boolean`
36
+ - **Default**: `false`
37
+
38
+ > Dry Run
39
+
40
+
41
+ When true, log the commands that would be run without executing them
42
+
43
+
package/executors.json CHANGED
@@ -35,6 +35,11 @@
35
35
  "schema": "./dist/src/executors/cargo-publish/schema.json",
36
36
  "description": "Publish a Rust crate to the crates.io registry"
37
37
  },
38
+ "command-publish": {
39
+ "implementation": "./dist/src/executors/command-publish/executor",
40
+ "schema": "./dist/src/executors/command-publish/schema.json",
41
+ "description": "Publish a package by running a user-provided shell command"
42
+ },
38
43
  "cargo-build": {
39
44
  "implementation": "./dist/src/executors/cargo-build/executor",
40
45
  "schema": "./dist/src/executors/cargo-build/schema.json",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.296.115",
3
+ "version": "1.297.0",
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",
@@ -238,11 +238,11 @@
238
238
  "@size-limit/esbuild": "^11.2.0",
239
239
  "@size-limit/esbuild-why": "^11.2.0",
240
240
  "@size-limit/file": "^11.2.0",
241
- "@storm-software/config": "^1.138.66",
242
- "@storm-software/config-tools": "^1.190.130",
243
- "@storm-software/npm-tools": "0.6.250",
244
- "@storm-software/prettier": "^0.59.183",
245
- "@storm-software/tsdown": "^0.45.291",
241
+ "@storm-software/config": "^1.138.67",
242
+ "@storm-software/config-tools": "^1.190.131",
243
+ "@storm-software/npm-tools": "^0.6.251",
244
+ "@storm-software/prettier": "^0.59.184",
245
+ "@storm-software/tsdown": "^0.45.292",
246
246
  "defu": "^6.1.7",
247
247
  "esbuild": "^0.25.12",
248
248
  "fs-extra": "^11.4.0",
@@ -261,11 +261,11 @@
261
261
  },
262
262
  "devDependencies": {
263
263
  "@napi-rs/cli": "^3.8.2",
264
- "@storm-software/bun-tools": "0.0.43",
265
- "@storm-software/esbuild": "^0.53.291",
266
- "@storm-software/package-constants": "^0.1.142",
267
- "@storm-software/pnpm-tools": "0.7.144",
268
- "@storm-software/unbuild": "^0.57.291",
264
+ "@storm-software/bun-tools": "^0.0.44",
265
+ "@storm-software/esbuild": "^0.53.292",
266
+ "@storm-software/package-constants": "^0.1.143",
267
+ "@storm-software/pnpm-tools": "^0.7.145",
268
+ "@storm-software/unbuild": "^0.57.292",
269
269
  "@types/micromatch": "^4.0.10",
270
270
  "@types/node": "^25.9.5",
271
271
  "@types/semver": "^7.8.0",
@@ -294,5 +294,5 @@
294
294
  "publishConfig": { "access": "public" },
295
295
  "executors": "./executors.json",
296
296
  "generators": "./generators.json",
297
- "gitHead": "1b908c5fafeed5854dfe041ceba3132560477445"
297
+ "gitHead": "1bb5e5064631770d695317f7f5445e1622e9571a"
298
298
  }
File without changes
File without changes