@storm-software/workspace-tools 1.245.6 → 1.246.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,29 @@
1
+ ## 1.246.0 (2025-01-29)
2
+
3
+ ### Features
4
+
5
+ - **monorepo:** Improve workspace dependency packaging ([b8d03e26](https://github.com/storm-software/storm-ops/commit/b8d03e26))
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Regenerate README markdown files ([c2ecaaf8](https://github.com/storm-software/storm-ops/commit/c2ecaaf8))
10
+
11
+ ## 1.245.8 (2025-01-29)
12
+
13
+ ### Bug Fixes
14
+
15
+ - **workspace-tools:** Remove unused `deep-clone` dependency ([327413d4](https://github.com/storm-software/storm-ops/commit/327413d4))
16
+
17
+ ### Miscellaneous
18
+
19
+ - **monorepo:** Regenerate README markdown files ([c87535fb](https://github.com/storm-software/storm-ops/commit/c87535fb))
20
+
21
+ ## 1.245.7 (2025-01-29)
22
+
23
+ ### Miscellaneous
24
+
25
+ - **monorepo:** Regenerate README markdown files ([87f7b939](https://github.com/storm-software/storm-ops/commit/87f7b939))
26
+
1
27
  ## 1.245.6 (2025-01-28)
2
28
 
3
29
  ### 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.245.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.245.7-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 -->
@@ -26,7 +26,7 @@ async function unbuildExecutorFn(options, context, config) {
26
26
  throw new Error("The Build process failed because the project's source root is not valid. Please run this command from a workspace root directory.");
27
27
  }
28
28
  const jiti = createJiti(config.workspaceRoot, {
29
- fsCache: config.skipCache ? false : joinPaths(config.directories.cache || "node_modules/.cache/storm", "jiti"),
29
+ fsCache: config.skipCache ? false : joinPaths(config.workspaceRoot, config.directories.cache || "node_modules/.cache/storm", "jiti"),
30
30
  interopDefault: true
31
31
  });
32
32
  const stormUnbuild = await jiti.import(jiti.esmResolve("@storm-software/unbuild/build"));
@@ -39,7 +39,7 @@ async function unbuildExecutorFn(options, context, config) {
39
39
  }, {
40
40
  stubOptions: {
41
41
  jiti: {
42
- cache: "node_modules/.cache/storm"
42
+ fsCache: config.skipCache ? false : joinPaths(config.workspaceRoot, config.directories.cache || "node_modules/.cache/storm", "jiti")
43
43
  }
44
44
  },
45
45
  rollup: {
@@ -73,7 +73,6 @@ var executor_default = withRunExecutor("TypeScript Unbuild build", unbuildExecut
73
73
  options.entry ??= [
74
74
  "{sourceRoot}"
75
75
  ];
76
- options.outputPath ??= "dist/{projectRoot}";
77
76
  options.tsconfig ??= "{projectRoot}/tsconfig.json";
78
77
  return options;
79
78
  }, "applyDefaultOptions")
@@ -26,7 +26,7 @@ async function unbuildExecutorFn(options, context, config) {
26
26
  throw new Error("The Build process failed because the project's source root is not valid. Please run this command from a workspace root directory.");
27
27
  }
28
28
  const jiti = _jiti.createJiti.call(void 0, config.workspaceRoot, {
29
- fsCache: config.skipCache ? false : _chunkBUXJSVJGjs.joinPaths.call(void 0, config.directories.cache || "node_modules/.cache/storm", "jiti"),
29
+ fsCache: config.skipCache ? false : _chunkBUXJSVJGjs.joinPaths.call(void 0, config.workspaceRoot, config.directories.cache || "node_modules/.cache/storm", "jiti"),
30
30
  interopDefault: true
31
31
  });
32
32
  const stormUnbuild = await jiti.import(jiti.esmResolve("@storm-software/unbuild/build"));
@@ -39,7 +39,7 @@ async function unbuildExecutorFn(options, context, config) {
39
39
  }, {
40
40
  stubOptions: {
41
41
  jiti: {
42
- cache: "node_modules/.cache/storm"
42
+ fsCache: config.skipCache ? false : _chunkBUXJSVJGjs.joinPaths.call(void 0, config.workspaceRoot, config.directories.cache || "node_modules/.cache/storm", "jiti")
43
43
  }
44
44
  },
45
45
  rollup: {
@@ -73,7 +73,6 @@ var executor_default = _chunkIBHLVELVjs.withRunExecutor.call(void 0, "TypeScript
73
73
  options.entry ??= [
74
74
  "{sourceRoot}"
75
75
  ];
76
- options.outputPath ??= "dist/{projectRoot}";
77
76
  options.tsconfig ??= "{projectRoot}/tsconfig.json";
78
77
  return options;
79
78
  }, "applyDefaultOptions")
@@ -10,9 +10,10 @@ import {
10
10
  } from "./chunk-XUV4U54K.mjs";
11
11
 
12
12
  // src/executors/cargo-doc/executor.ts
13
- import deepClone from "deep-clone";
14
13
  async function cargoDocExecutor(options, context) {
15
- const opts = deepClone(options);
14
+ const opts = {
15
+ ...options
16
+ };
16
17
  opts["no-deps"] = opts.noDeps;
17
18
  delete opts.noDeps;
18
19
  const command = buildCargoCommand("doc", options, context);
@@ -1,4 +1,4 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
4
  var _chunkULBTYC2Bjs = require('./chunk-ULBTYC2B.js');
@@ -10,9 +10,10 @@ var _chunkIBHLVELVjs = require('./chunk-IBHLVELV.js');
10
10
  var _chunk3GQAWCBQjs = require('./chunk-3GQAWCBQ.js');
11
11
 
12
12
  // src/executors/cargo-doc/executor.ts
13
- var _deepclone = require('deep-clone'); var _deepclone2 = _interopRequireDefault(_deepclone);
14
13
  async function cargoDocExecutor(options, context) {
15
- const opts = _deepclone2.default.call(void 0, options);
14
+ const opts = {
15
+ ...options
16
+ };
16
17
  opts["no-deps"] = opts.noDeps;
17
18
  delete opts.noDeps;
18
19
  const command = _chunkULBTYC2Bjs.buildCargoCommand.call(void 0, "doc", options, context);
@@ -11,7 +11,6 @@ interface UnbuildExecutorSchema {
11
11
  *
12
12
  * The output path for the build
13
13
  *
14
- * @default "dist/{projectRoot}"
15
14
  *
16
15
  * @format path
17
16
  */
@@ -11,7 +11,6 @@ interface UnbuildExecutorSchema {
11
11
  *
12
12
  * The output path for the build
13
13
  *
14
- * @default "dist/{projectRoot}"
15
14
  *
16
15
  * @format path
17
16
  */
@@ -10,7 +10,7 @@ export { L as LARGE_BUFFER, N as NpmPublishExecutorSchema } from './executor-DTc
10
10
  export { S as SizeLimitExecutorSchema, s as sizeLimitExecutorFn } from './executor-CnnrgXKr.mjs';
11
11
  export { T as TSDownExecutorSchema, t as tsdownExecutorFn } from './executor-De29T5QB.mjs';
12
12
  export { T as TypiaExecutorSchema, t as typiaExecutorFn } from './executor-B2I8lRie.mjs';
13
- export { U as UnbuildExecutorSchema, u as unbuildExecutorFn } from './executor-D5C-erVR.mjs';
13
+ export { U as UnbuildExecutorSchema, u as unbuildExecutorFn } from './executor-9k0vy4BU.mjs';
14
14
  import '@nx/devkit';
15
15
  import './types-B5IG4iSJ.mjs';
16
16
  import 'zod';
@@ -10,7 +10,7 @@ export { L as LARGE_BUFFER, N as NpmPublishExecutorSchema } from './executor-DTc
10
10
  export { S as SizeLimitExecutorSchema, s as sizeLimitExecutorFn } from './executor-SU5oGftF.js';
11
11
  export { T as TSDownExecutorSchema, t as tsdownExecutorFn } from './executor-Dfot53CG.js';
12
12
  export { T as TypiaExecutorSchema, t as typiaExecutorFn } from './executor-DZ-0sX_w.js';
13
- export { U as UnbuildExecutorSchema, u as unbuildExecutorFn } from './executor-Ct74DTAr.js';
13
+ export { U as UnbuildExecutorSchema, u as unbuildExecutorFn } from './executor-D04WPR2V.js';
14
14
  import '@nx/devkit';
15
15
  import './types-B5IG4iSJ.js';
16
16
  import 'zod';
package/dist/executors.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-3J53KHVV.js');
2
2
 
3
3
 
4
- var _chunk7GKIVRFHjs = require('./chunk-7GKIVRFH.js');
4
+ var _chunkM7ZE5SMZjs = require('./chunk-M7ZE5SMZ.js');
5
5
 
6
6
 
7
7
  var _chunkMMMTLP2Wjs = require('./chunk-MMMTLP2W.js');
@@ -16,7 +16,7 @@ var _chunkFZUZUTKXjs = require('./chunk-FZUZUTKX.js');
16
16
  var _chunkIF2GIONQjs = require('./chunk-IF2GIONQ.js');
17
17
 
18
18
 
19
- var _chunkQSLN7UYGjs = require('./chunk-QSLN7UYG.js');
19
+ var _chunkYWKUJJ34js = require('./chunk-YWKUJJ34.js');
20
20
 
21
21
 
22
22
  var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
@@ -32,10 +32,10 @@ var _chunkYSYBVJGRjs = require('./chunk-YSYBVJGR.js');
32
32
  var _chunkHONSACRTjs = require('./chunk-HONSACRT.js');
33
33
 
34
34
 
35
- var _chunkYWKUJJ34js = require('./chunk-YWKUJJ34.js');
35
+ var _chunkQSLN7UYGjs = require('./chunk-QSLN7UYG.js');
36
36
 
37
37
 
38
- var _chunkK7QVZAWDjs = require('./chunk-K7QVZAWD.js');
38
+ var _chunkYFERQMWXjs = require('./chunk-YFERQMWX.js');
39
39
  require('./chunk-2GRVQNW3.js');
40
40
  require('./chunk-ULBTYC2B.js');
41
41
  require('./chunk-ZMFVKBRM.js');
@@ -58,4 +58,4 @@ require('./chunk-3GQAWCBQ.js');
58
58
 
59
59
 
60
60
 
61
- exports.LARGE_BUFFER = _chunkMMMTLP2Wjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkYSYBVJGRjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkHONSACRTjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkYWKUJJ34js.cargoClippyExecutor; exports.cargoDocExecutor = _chunkK7QVZAWDjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkQSLN7UYGjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkGDE7VBWWjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkGYGIXXALjs.sizeLimitExecutorFn; exports.tsdownExecutorFn = _chunkFZUZUTKXjs.tsdownExecutorFn; exports.typiaExecutorFn = _chunkIF2GIONQjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunk7GKIVRFHjs.unbuildExecutorFn;
61
+ exports.LARGE_BUFFER = _chunkMMMTLP2Wjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkYSYBVJGRjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkHONSACRTjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkYWKUJJ34js.cargoClippyExecutor; exports.cargoDocExecutor = _chunkYFERQMWXjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkQSLN7UYGjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkGDE7VBWWjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkGYGIXXALjs.sizeLimitExecutorFn; exports.tsdownExecutorFn = _chunkFZUZUTKXjs.tsdownExecutorFn; exports.typiaExecutorFn = _chunkIF2GIONQjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkM7ZE5SMZjs.unbuildExecutorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-V7YZ3666.mjs";
2
2
  import {
3
3
  unbuildExecutorFn
4
- } from "./chunk-T342MIBF.mjs";
4
+ } from "./chunk-INEO4WKL.mjs";
5
5
  import {
6
6
  LARGE_BUFFER
7
7
  } from "./chunk-7PLUDZNP.mjs";
@@ -15,8 +15,8 @@ import {
15
15
  typiaExecutorFn
16
16
  } from "./chunk-CFRPLVEU.mjs";
17
17
  import {
18
- cargoFormatExecutor
19
- } from "./chunk-HXU5ZXAJ.mjs";
18
+ cargoClippyExecutor
19
+ } from "./chunk-5XF4CY7D.mjs";
20
20
  import {
21
21
  getRegistryVersion
22
22
  } from "./chunk-6ZQ3QYXH.mjs";
@@ -31,11 +31,11 @@ import {
31
31
  cargoCheckExecutor
32
32
  } from "./chunk-UI3SQYV3.mjs";
33
33
  import {
34
- cargoClippyExecutor
35
- } from "./chunk-5XF4CY7D.mjs";
34
+ cargoFormatExecutor
35
+ } from "./chunk-HXU5ZXAJ.mjs";
36
36
  import {
37
37
  cargoDocExecutor
38
- } from "./chunk-ZERO7WV2.mjs";
38
+ } from "./chunk-PKBHUBDV.mjs";
39
39
  import "./chunk-XIOF32ZH.mjs";
40
40
  import "./chunk-QZHIWK5Z.mjs";
41
41
  import "./chunk-VYH45FO6.mjs";
package/dist/index.d.mts CHANGED
@@ -10,7 +10,7 @@ export { L as LARGE_BUFFER, N as NpmPublishExecutorSchema } from './executor-DTc
10
10
  export { S as SizeLimitExecutorSchema, s as sizeLimitExecutorFn } from './executor-CnnrgXKr.mjs';
11
11
  export { T as TSDownExecutorSchema, t as tsdownExecutorFn } from './executor-De29T5QB.mjs';
12
12
  export { T as TypiaExecutorSchema, t as typiaExecutorFn } from './executor-B2I8lRie.mjs';
13
- export { U as UnbuildExecutorSchema, u as unbuildExecutorFn } from './executor-D5C-erVR.mjs';
13
+ export { U as UnbuildExecutorSchema, u as unbuildExecutorFn } from './executor-9k0vy4BU.mjs';
14
14
  export { B as BrowserLibraryGeneratorSchema, b as browserLibraryGeneratorFn } from './generator-CrR9QK6B.mjs';
15
15
  export { C as ConfigSchemaGeneratorSchema, M as ModuleSchema, c as configSchemaGeneratorFn } from './generator-DATsTV1E.mjs';
16
16
  export { I as InitGeneratorSchema, i as initGenerator } from './init-6Nmtv8d5.mjs';
package/dist/index.d.ts CHANGED
@@ -10,7 +10,7 @@ export { L as LARGE_BUFFER, N as NpmPublishExecutorSchema } from './executor-DTc
10
10
  export { S as SizeLimitExecutorSchema, s as sizeLimitExecutorFn } from './executor-SU5oGftF.js';
11
11
  export { T as TSDownExecutorSchema, t as tsdownExecutorFn } from './executor-Dfot53CG.js';
12
12
  export { T as TypiaExecutorSchema, t as typiaExecutorFn } from './executor-DZ-0sX_w.js';
13
- export { U as UnbuildExecutorSchema, u as unbuildExecutorFn } from './executor-Ct74DTAr.js';
13
+ export { U as UnbuildExecutorSchema, u as unbuildExecutorFn } from './executor-D04WPR2V.js';
14
14
  export { B as BrowserLibraryGeneratorSchema, b as browserLibraryGeneratorFn } from './generator-F6EuzmJD.js';
15
15
  export { C as ConfigSchemaGeneratorSchema, M as ModuleSchema, c as configSchemaGeneratorFn } from './generator-rf62OraH.js';
16
16
  export { I as InitGeneratorSchema, i as initGenerator } from './init-6Nmtv8d5.js';
package/dist/index.js CHANGED
@@ -48,7 +48,7 @@ var _chunk5DAZ2WTIjs = require('./chunk-5DAZ2WTI.js');
48
48
  require('./chunk-3J53KHVV.js');
49
49
 
50
50
 
51
- var _chunk7GKIVRFHjs = require('./chunk-7GKIVRFH.js');
51
+ var _chunkM7ZE5SMZjs = require('./chunk-M7ZE5SMZ.js');
52
52
 
53
53
 
54
54
  var _chunkMMMTLP2Wjs = require('./chunk-MMMTLP2W.js');
@@ -63,7 +63,7 @@ var _chunkFZUZUTKXjs = require('./chunk-FZUZUTKX.js');
63
63
  var _chunkIF2GIONQjs = require('./chunk-IF2GIONQ.js');
64
64
 
65
65
 
66
- var _chunkQSLN7UYGjs = require('./chunk-QSLN7UYG.js');
66
+ var _chunkYWKUJJ34js = require('./chunk-YWKUJJ34.js');
67
67
 
68
68
 
69
69
  var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
@@ -79,10 +79,10 @@ var _chunkYSYBVJGRjs = require('./chunk-YSYBVJGR.js');
79
79
  var _chunkHONSACRTjs = require('./chunk-HONSACRT.js');
80
80
 
81
81
 
82
- var _chunkYWKUJJ34js = require('./chunk-YWKUJJ34.js');
82
+ var _chunkQSLN7UYGjs = require('./chunk-QSLN7UYG.js');
83
83
 
84
84
 
85
- var _chunkK7QVZAWDjs = require('./chunk-K7QVZAWD.js');
85
+ var _chunkYFERQMWXjs = require('./chunk-YFERQMWX.js');
86
86
 
87
87
 
88
88
  var _chunk2GRVQNW3js = require('./chunk-2GRVQNW3.js');
@@ -287,4 +287,4 @@ require('./chunk-3GQAWCBQ.js');
287
287
 
288
288
 
289
289
 
290
- exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkMMMTLP2Wjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkPK2SUBWIjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPK2SUBWIjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPK2SUBWIjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPK2SUBWIjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPK2SUBWIjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunk7AXFMX2Tjs.PackageManagerTypes; exports.ProjectTagConstants = _chunk7YRW5HNXjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk4NOLUAQNjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk4NOLUAQNjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk4NOLUAQNjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk4NOLUAQNjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk4NOLUAQNjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk4NOLUAQNjs.ProjectTagVariant; exports.YARN_LOCK_FILE = _chunkPK2SUBWIjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPK2SUBWIjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkRFO5NMSBjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkC3YSVZWOjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkYSYBVJGRjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkHONSACRTjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkYWKUJJ34js.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkK7QVZAWDjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkQSLN7UYGjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunk2HD75CLDjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRAVLTWJVjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkGDE7VBWWjs.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunk7YRW5HNXjs.formatProjectTag; exports.getLockFileDependencies = _chunkPK2SUBWIjs.getLockFileDependencies; exports.getLockFileName = _chunkPK2SUBWIjs.getLockFileName; exports.getLockFileNodes = _chunkPK2SUBWIjs.getLockFileNodes; exports.getOutputPath = _chunkRAVLTWJVjs.getOutputPath; exports.getPackageInfo = _chunk7AXFMX2Tjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkUF6KFXG5js.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkUF6KFXG5js.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunk5DAZ2WTIjs.getProjectConfiguration; exports.getProjectConfigurations = _chunk5DAZ2WTIjs.getProjectConfigurations; exports.getProjectPlatform = _chunkUF6KFXG5js.getProjectPlatform; exports.getProjectRoot = _chunkUF6KFXG5js.getProjectRoot; exports.getProjectTag = _chunk7YRW5HNXjs.getProjectTag; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.getTypiaTransform = _chunkXITP2BX2js.getTypiaTransform; exports.hasProjectTag = _chunk7YRW5HNXjs.hasProjectTag; exports.initGenerator = _chunk3IZ3O4OKjs.initGenerator; exports.isEqualProjectTag = _chunk7YRW5HNXjs.isEqualProjectTag; exports.isExternal = _chunkULBTYC2Bjs.isExternal; exports.lintStagedVersion = _chunkHI4G4OOGjs.lintStagedVersion; exports.lockFileExists = _chunkPK2SUBWIjs.lockFileExists; exports.modifyCargoNestedTable = _chunkZMFVKBRMjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkZMFVKBRMjs.modifyCargoTable; exports.neutralLibraryGeneratorFn = _chunkPCPEJBLOjs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunk6ZRK5I4Njs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkRAVLTWJVjs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.parseCargoToml = _chunkZMFVKBRMjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkZMFVKBRMjs.parseCargoTomlWithTree; exports.pnpmCatalogUpdate = _chunk2GRVQNW3js.pnpmCatalogUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkD2ECVPJFjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkRRWRVA7Fjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkGYGIXXALjs.sizeLimitExecutorFn; exports.stringifyCargoToml = _chunkZMFVKBRMjs.stringifyCargoToml; exports.swcCliVersion = _chunkHI4G4OOGjs.swcCliVersion; exports.swcCoreVersion = _chunkHI4G4OOGjs.swcCoreVersion; exports.swcHelpersVersion = _chunkHI4G4OOGjs.swcHelpersVersion; exports.swcNodeVersion = _chunkHI4G4OOGjs.swcNodeVersion; exports.tsLibVersion = _chunkHI4G4OOGjs.tsLibVersion; exports.tsdownExecutorFn = _chunkFZUZUTKXjs.tsdownExecutorFn; exports.tsupVersion = _chunkHI4G4OOGjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkRAVLTWJVjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkIWCQL3AQjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk7O34DHUGjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunkIF2GIONQjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunk7GKIVRFHjs.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunkIBHLVELVjs.withRunExecutor; exports.withRunGenerator = _chunkKLHTXAIUjs.withRunGenerator;
290
+ exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkMMMTLP2Wjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkPK2SUBWIjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPK2SUBWIjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPK2SUBWIjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPK2SUBWIjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPK2SUBWIjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunk7AXFMX2Tjs.PackageManagerTypes; exports.ProjectTagConstants = _chunk7YRW5HNXjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk4NOLUAQNjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk4NOLUAQNjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk4NOLUAQNjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk4NOLUAQNjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk4NOLUAQNjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk4NOLUAQNjs.ProjectTagVariant; exports.YARN_LOCK_FILE = _chunkPK2SUBWIjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPK2SUBWIjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkRFO5NMSBjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkC3YSVZWOjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkYSYBVJGRjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkHONSACRTjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkYWKUJJ34js.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkYFERQMWXjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkQSLN7UYGjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunk2HD75CLDjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRAVLTWJVjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkGDE7VBWWjs.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunk7YRW5HNXjs.formatProjectTag; exports.getLockFileDependencies = _chunkPK2SUBWIjs.getLockFileDependencies; exports.getLockFileName = _chunkPK2SUBWIjs.getLockFileName; exports.getLockFileNodes = _chunkPK2SUBWIjs.getLockFileNodes; exports.getOutputPath = _chunkRAVLTWJVjs.getOutputPath; exports.getPackageInfo = _chunk7AXFMX2Tjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkUF6KFXG5js.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkUF6KFXG5js.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunk5DAZ2WTIjs.getProjectConfiguration; exports.getProjectConfigurations = _chunk5DAZ2WTIjs.getProjectConfigurations; exports.getProjectPlatform = _chunkUF6KFXG5js.getProjectPlatform; exports.getProjectRoot = _chunkUF6KFXG5js.getProjectRoot; exports.getProjectTag = _chunk7YRW5HNXjs.getProjectTag; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.getTypiaTransform = _chunkXITP2BX2js.getTypiaTransform; exports.hasProjectTag = _chunk7YRW5HNXjs.hasProjectTag; exports.initGenerator = _chunk3IZ3O4OKjs.initGenerator; exports.isEqualProjectTag = _chunk7YRW5HNXjs.isEqualProjectTag; exports.isExternal = _chunkULBTYC2Bjs.isExternal; exports.lintStagedVersion = _chunkHI4G4OOGjs.lintStagedVersion; exports.lockFileExists = _chunkPK2SUBWIjs.lockFileExists; exports.modifyCargoNestedTable = _chunkZMFVKBRMjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkZMFVKBRMjs.modifyCargoTable; exports.neutralLibraryGeneratorFn = _chunkPCPEJBLOjs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunk6ZRK5I4Njs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkRAVLTWJVjs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.parseCargoToml = _chunkZMFVKBRMjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkZMFVKBRMjs.parseCargoTomlWithTree; exports.pnpmCatalogUpdate = _chunk2GRVQNW3js.pnpmCatalogUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkD2ECVPJFjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkRRWRVA7Fjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkGYGIXXALjs.sizeLimitExecutorFn; exports.stringifyCargoToml = _chunkZMFVKBRMjs.stringifyCargoToml; exports.swcCliVersion = _chunkHI4G4OOGjs.swcCliVersion; exports.swcCoreVersion = _chunkHI4G4OOGjs.swcCoreVersion; exports.swcHelpersVersion = _chunkHI4G4OOGjs.swcHelpersVersion; exports.swcNodeVersion = _chunkHI4G4OOGjs.swcNodeVersion; exports.tsLibVersion = _chunkHI4G4OOGjs.tsLibVersion; exports.tsdownExecutorFn = _chunkFZUZUTKXjs.tsdownExecutorFn; exports.tsupVersion = _chunkHI4G4OOGjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkRAVLTWJVjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkIWCQL3AQjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk7O34DHUGjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunkIF2GIONQjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkM7ZE5SMZjs.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunkIBHLVELVjs.withRunExecutor; exports.withRunGenerator = _chunkKLHTXAIUjs.withRunGenerator;
package/dist/index.mjs CHANGED
@@ -48,7 +48,7 @@ import {
48
48
  import "./chunk-V7YZ3666.mjs";
49
49
  import {
50
50
  unbuildExecutorFn
51
- } from "./chunk-T342MIBF.mjs";
51
+ } from "./chunk-INEO4WKL.mjs";
52
52
  import {
53
53
  LARGE_BUFFER
54
54
  } from "./chunk-7PLUDZNP.mjs";
@@ -62,8 +62,8 @@ import {
62
62
  typiaExecutorFn
63
63
  } from "./chunk-CFRPLVEU.mjs";
64
64
  import {
65
- cargoFormatExecutor
66
- } from "./chunk-HXU5ZXAJ.mjs";
65
+ cargoClippyExecutor
66
+ } from "./chunk-5XF4CY7D.mjs";
67
67
  import {
68
68
  getRegistryVersion
69
69
  } from "./chunk-6ZQ3QYXH.mjs";
@@ -78,11 +78,11 @@ import {
78
78
  cargoCheckExecutor
79
79
  } from "./chunk-UI3SQYV3.mjs";
80
80
  import {
81
- cargoClippyExecutor
82
- } from "./chunk-5XF4CY7D.mjs";
81
+ cargoFormatExecutor
82
+ } from "./chunk-HXU5ZXAJ.mjs";
83
83
  import {
84
84
  cargoDocExecutor
85
- } from "./chunk-ZERO7WV2.mjs";
85
+ } from "./chunk-PKBHUBDV.mjs";
86
86
  import {
87
87
  pnpmCatalogUpdate
88
88
  } from "./chunk-XIOF32ZH.mjs";
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkK7QVZAWDjs = require('../../../chunk-K7QVZAWD.js');
4
+ var _chunkYFERQMWXjs = require('../../../chunk-YFERQMWX.js');
5
5
  require('../../../chunk-ULBTYC2B.js');
6
6
  require('../../../chunk-IBHLVELV.js');
7
7
  require('../../../chunk-6QSFQS3X.js');
@@ -12,4 +12,4 @@ require('../../../chunk-3GQAWCBQ.js');
12
12
 
13
13
 
14
14
 
15
- exports.cargoDocExecutor = _chunkK7QVZAWDjs.cargoDocExecutor; exports.default = _chunkK7QVZAWDjs.executor_default;
15
+ exports.cargoDocExecutor = _chunkYFERQMWXjs.cargoDocExecutor; exports.default = _chunkYFERQMWXjs.executor_default;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  cargoDocExecutor,
3
3
  executor_default
4
- } from "../../../chunk-ZERO7WV2.mjs";
4
+ } from "../../../chunk-PKBHUBDV.mjs";
5
5
  import "../../../chunk-QZHIWK5Z.mjs";
6
6
  import "../../../chunk-GJ6DN3BR.mjs";
7
7
  import "../../../chunk-K62HB3IT.mjs";
@@ -1,4 +1,4 @@
1
1
  import '@nx/devkit';
2
2
  import '../../../types-B5IG4iSJ.mjs';
3
- export { _ as default, u as unbuildExecutorFn } from '../../../executor-D5C-erVR.mjs';
3
+ export { _ as default, u as unbuildExecutorFn } from '../../../executor-9k0vy4BU.mjs';
4
4
  import 'zod';
@@ -1,4 +1,4 @@
1
1
  import '@nx/devkit';
2
2
  import '../../../types-B5IG4iSJ.js';
3
- export { _ as default, u as unbuildExecutorFn } from '../../../executor-Ct74DTAr.js';
3
+ export { _ as default, u as unbuildExecutorFn } from '../../../executor-D04WPR2V.js';
4
4
  import 'zod';
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunk7GKIVRFHjs = require('../../../chunk-7GKIVRFH.js');
4
+ var _chunkM7ZE5SMZjs = require('../../../chunk-M7ZE5SMZ.js');
5
5
  require('../../../chunk-IBHLVELV.js');
6
6
  require('../../../chunk-6QSFQS3X.js');
7
7
  require('../../../chunk-B6PUPX6O.js');
@@ -11,4 +11,4 @@ require('../../../chunk-3GQAWCBQ.js');
11
11
 
12
12
 
13
13
 
14
- exports.default = _chunk7GKIVRFHjs.executor_default; exports.unbuildExecutorFn = _chunk7GKIVRFHjs.unbuildExecutorFn;
14
+ exports.default = _chunkM7ZE5SMZjs.executor_default; exports.unbuildExecutorFn = _chunkM7ZE5SMZjs.unbuildExecutorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  executor_default,
3
3
  unbuildExecutorFn
4
- } from "../../../chunk-T342MIBF.mjs";
4
+ } from "../../../chunk-INEO4WKL.mjs";
5
5
  import "../../../chunk-GJ6DN3BR.mjs";
6
6
  import "../../../chunk-K62HB3IT.mjs";
7
7
  import "../../../chunk-7Q66XSCS.mjs";
@@ -8,7 +8,6 @@ export interface UnbuildExecutorSchema {
8
8
  *
9
9
  * The output path for the build
10
10
  *
11
- * @default "dist/{projectRoot}"
12
11
  *
13
12
  * @format path
14
13
  */
@@ -12,8 +12,7 @@
12
12
  "type": "string",
13
13
  "format": "path",
14
14
  "description": "The output path for the build",
15
- "id": "#outputPath",
16
- "default": "dist/{projectRoot}"
15
+ "id": "#outputPath"
17
16
  },
18
17
  "entry": {
19
18
  "title": "Input Directory",
@@ -262,7 +261,6 @@
262
261
  },
263
262
  "type": "object",
264
263
  "default": {
265
- "outputPath": "dist/{projectRoot}",
266
264
  "entry": [
267
265
  "{sourceRoot}"
268
266
  ],
@@ -6,7 +6,6 @@
6
6
 
7
7
  ## `outputPath`
8
8
  - **Type**: `string`
9
- - **Default**: `"dist/{projectRoot}"`
10
9
 
11
10
  > Output Path
12
11
 
@@ -39,6 +39,14 @@ var untyped_default = _untyped.defineUntypedSchema.call(void 0, {
39
39
  "{sourceRoot}"
40
40
  ]
41
41
  },
42
+ outputPath: {
43
+ $schema: {
44
+ title: "Output Path",
45
+ type: "string",
46
+ format: "path",
47
+ description: "The output path for the build"
48
+ }
49
+ },
42
50
  treeShaking: {
43
51
  $schema: {
44
52
  title: "Tree Shaking",
@@ -39,6 +39,14 @@ var untyped_default = defineUntypedSchema({
39
39
  "{sourceRoot}"
40
40
  ]
41
41
  },
42
+ outputPath: {
43
+ $schema: {
44
+ title: "Output Path",
45
+ type: "string",
46
+ format: "path",
47
+ description: "The output path for the build"
48
+ }
49
+ },
42
50
  treeShaking: {
43
51
  $schema: {
44
52
  title: "Tree Shaking",
@@ -6,7 +6,6 @@
6
6
 
7
7
  ## `outputPath`
8
8
  - **Type**: `string`
9
- - **Default**: `"dist/{projectRoot}"`
10
9
 
11
10
  > Output Path
12
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.245.6",
3
+ "version": "1.246.0",
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",
@@ -144,6 +144,34 @@
144
144
  "default": "./dist/src/base/*.js"
145
145
  }
146
146
  },
147
+ "./executors/*/untyped": {
148
+ "import": {
149
+ "types": "./dist/src/executors/*/untyped.d.mts",
150
+ "default": "./dist/src/executors/*/untyped.mjs"
151
+ },
152
+ "require": {
153
+ "types": "./dist/src/executors/*/untyped.d.ts",
154
+ "default": "./dist/src/executors/*/untyped.js"
155
+ },
156
+ "default": {
157
+ "types": "./dist/src/executors/*/untyped.d.ts",
158
+ "default": "./dist/src/executors/*/untyped.js"
159
+ }
160
+ },
161
+ "./generators/*/untyped": {
162
+ "import": {
163
+ "types": "./dist/src/generators/*/untyped.d.mts",
164
+ "default": "./dist/src/generators/*/untyped.mjs"
165
+ },
166
+ "require": {
167
+ "types": "./dist/src/generators/*/untyped.d.ts",
168
+ "default": "./dist/src/generators/*/untyped.js"
169
+ },
170
+ "default": {
171
+ "types": "./dist/src/generators/*/untyped.d.ts",
172
+ "default": "./dist/src/generators/*/untyped.js"
173
+ }
174
+ },
147
175
  "./executors/*/executor.js": "./dist/src/executors/*/executor.js",
148
176
  "./generators/*/generator.js": "./dist/src/generators/*/generator.js",
149
177
  "./generators/*/init.js": "./dist/src/generators/*/init.js",
@@ -165,35 +193,30 @@
165
193
  "sullivanpj"
166
194
  ],
167
195
  "peerDependencies": {
168
- "@microsoft/api-extractor": "^7.48.1",
169
196
  "@nx/devkit": "^20.3.1",
170
- "@samchon/openapi": "^2.3.0",
171
197
  "@storm-software/esbuild": "workspace:*",
172
198
  "@storm-software/prettier": "workspace:*",
173
199
  "@storm-software/tsdown": "workspace:*",
174
200
  "@storm-software/unbuild": "workspace:*",
175
201
  "nx": "^20.3.1",
176
- "typescript": "^5.7.2",
177
- "typia": "^7.5.0"
202
+ "typescript": "^5.7.2"
178
203
  },
179
204
  "peerDependenciesMeta": {
180
- "@microsoft/api-extractor": { "optional": true },
181
205
  "@nx/devkit": { "optional": false },
182
- "@samchon/openapi": { "optional": true },
183
206
  "@storm-software/esbuild": { "optional": true },
184
207
  "@storm-software/prettier": { "optional": false },
185
208
  "@storm-software/tsdown": { "optional": true },
186
209
  "@storm-software/unbuild": { "optional": true },
187
210
  "nx": { "optional": false },
188
- "typescript": { "optional": false },
189
- "typia": { "optional": true }
211
+ "typescript": { "optional": false }
190
212
  },
191
213
  "dependencies": {
192
214
  "@ltd/j-toml": "1.38.0",
215
+ "@microsoft/api-extractor": "^7.48.1",
216
+ "@samchon/openapi": "^2.3.0",
193
217
  "@size-limit/esbuild": "11.1.4",
194
218
  "@size-limit/esbuild-why": "11.1.4",
195
219
  "@size-limit/file": "11.1.4",
196
- "deep-clone": "4.0.0",
197
220
  "defu": "6.1.4",
198
221
  "fs-extra": "11.2.0",
199
222
  "glob": "^11.0.1",
@@ -204,20 +227,19 @@
204
227
  "read-yaml-file": "2.1.0",
205
228
  "semver": "7.6.2",
206
229
  "size-limit": "11.1.4",
230
+ "typia": "^7.5.0",
231
+ "untyped": "^1.5.2",
207
232
  "zod": "^3.24.0",
208
233
  "zod-to-json-schema": "3.23.1"
209
234
  },
210
235
  "devDependencies": {
211
- "@microsoft/api-extractor": "^7.48.1",
212
236
  "@nx/devkit": "^20.3.1",
213
237
  "@types/micromatch": "4.0.9",
214
238
  "@types/node": "^22.10.2",
215
239
  "@types/semver": "7.5.8",
216
240
  "nx": "^20.3.1",
217
241
  "tsup": "8.3.5",
218
- "typescript": "^5.7.2",
219
- "typia": "^7.5.0",
220
- "untyped": "^1.5.2"
242
+ "typescript": "^5.7.2"
221
243
  },
222
244
  "publishConfig": { "access": "public" },
223
245
  "executors": "./executors.json",