@storm-software/workspace-tools 1.229.0 → 1.230.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 (55) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/config/nx-default.json +4 -4
  3. package/dist/{chunk-RKOOM5R5.js → chunk-DB7BVAE7.js} +19 -12
  4. package/dist/{chunk-HAT7PSQD.mjs → chunk-JMWQGXHM.mjs} +20 -13
  5. package/dist/chunk-KBJ7IEXI.js +1 -0
  6. package/dist/chunk-P5P43FOZ.mjs +0 -0
  7. package/dist/executors.js +9 -9
  8. package/dist/executors.mjs +10 -10
  9. package/dist/{generator-CgdrKFcO.d.mts → generator-BLYdn00o.d.mts} +1 -1
  10. package/dist/{generator-CNiN6sul.d.mts → generator-BqzpDHpv.d.mts} +1 -1
  11. package/dist/{generator-Dc6RWp26.d.ts → generator-BufhnJev.d.ts} +1 -1
  12. package/dist/{generator-DmJcSdfk.d.mts → generator-CC8n6BWL.d.mts} +1 -1
  13. package/dist/{generator-WuasfjoA.d.ts → generator-CtpgcwxE.d.ts} +1 -1
  14. package/dist/{generator-VyYYXMy4.d.mts → generator-DeKyhxAj.d.mts} +1 -1
  15. package/dist/{generator-BOj8XBVt.d.mts → generator-Dyq3mgZU.d.mts} +1 -1
  16. package/dist/{generator-C392qNd1.d.ts → generator-OLytwpdD.d.ts} +1 -1
  17. package/dist/{generator-DX0frURz.d.ts → generator-T2p5gT0C.d.ts} +1 -1
  18. package/dist/{generator-CtMFNmXP.d.ts → generator-noL-xIjx.d.ts} +1 -1
  19. package/dist/generators.d.mts +6 -6
  20. package/dist/generators.d.ts +6 -6
  21. package/dist/generators.js +3 -3
  22. package/dist/generators.mjs +3 -3
  23. package/dist/index.d.mts +16 -332
  24. package/dist/index.d.ts +16 -332
  25. package/dist/index.js +33 -12
  26. package/dist/index.mjs +34 -13
  27. package/dist/src/base/base-executor.d.mts +1 -1
  28. package/dist/src/base/base-executor.d.ts +1 -1
  29. package/dist/src/base/base-generator.d.mts +1 -1
  30. package/dist/src/base/base-generator.d.ts +1 -1
  31. package/dist/src/base/index.d.mts +337 -0
  32. package/dist/src/base/index.d.ts +337 -0
  33. package/dist/src/base/index.js +49 -0
  34. package/dist/src/base/index.mjs +49 -0
  35. package/dist/src/executors/unbuild/executor.js +2 -2
  36. package/dist/src/executors/unbuild/executor.mjs +1 -1
  37. package/dist/src/generators/browser-library/generator.d.mts +2 -2
  38. package/dist/src/generators/browser-library/generator.d.ts +2 -2
  39. package/dist/src/generators/config-schema/generator.d.mts +2 -2
  40. package/dist/src/generators/config-schema/generator.d.ts +2 -2
  41. package/dist/src/generators/neutral-library/generator.d.mts +2 -2
  42. package/dist/src/generators/neutral-library/generator.d.ts +2 -2
  43. package/dist/src/generators/node-library/generator.d.mts +2 -2
  44. package/dist/src/generators/node-library/generator.d.ts +2 -2
  45. package/dist/src/generators/preset/generator.d.mts +2 -2
  46. package/dist/src/generators/preset/generator.d.ts +2 -2
  47. package/dist/src/types.d.mts +1 -1
  48. package/dist/src/types.d.ts +1 -1
  49. package/dist/src/utils/index.d.mts +1 -1
  50. package/dist/src/utils/index.d.ts +1 -1
  51. package/dist/src/utils/project-tags.d.mts +1 -1
  52. package/dist/src/utils/project-tags.d.ts +1 -1
  53. package/dist/{types-Dbr7XMO3.d.ts → types-BmsLBqaq.d.ts} +1 -1
  54. package/dist/{types-CMFSY9ut.d.mts → types-CQzaS20Q.d.mts} +1 -1
  55. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## 1.230.0 (2025-01-20)
2
+
3
+ ### Features
4
+
5
+ - **workspace-tools:** Added additional entry points to the package ([0322ac48](https://github.com/storm-software/storm-ops/commit/0322ac48))
6
+
7
+ ## 1.229.1 (2025-01-20)
8
+
9
+ ### Bug Fixes
10
+
11
+ - **workspace-tools:** Resolve cross-platform build issue in `copyfiles` script ([331a723f](https://github.com/storm-software/storm-ops/commit/331a723f))
12
+
1
13
  ## 1.229.0 (2025-01-20)
2
14
 
3
15
  ### Features
@@ -72,7 +72,6 @@
72
72
  "!{projectRoot}/typedoc.json",
73
73
  "!{projectRoot}/.eslint-doc-generatorrc.js",
74
74
  "!{projectRoot}/.eslint-doc-generatorrc.json",
75
- "!{projectRoot}/contentlayer.config.ts",
76
75
  "!{projectRoot}/.storybook/**/*",
77
76
  "!{projectRoot}/tsconfig.storybook.json",
78
77
  "!{projectRoot}/jest.config.ts",
@@ -268,7 +267,7 @@
268
267
  "{projectRoot}/README.md",
269
268
  "{projectRoot}/CHANGELOG.md",
270
269
  "{projectRoot}/.env",
271
- "{projectRoot}/.env.local",
270
+ "{projectRoot}/.env.*",
272
271
  "{projectRoot}/README.md",
273
272
  "{projectRoot}/docs/**/*",
274
273
  "{projectRoot}/**/*.stories.@(js|jsx|ts|tsx|mdx)",
@@ -293,8 +292,9 @@
293
292
  "{projectRoot}/src/**/*.toml",
294
293
  "{projectRoot}/src/**/*.md",
295
294
  "{projectRoot}/src/**/*.mdx",
296
- "{projectRoot}/build.*.ts",
297
- "{projectRoot}/tsup.*.ts",
295
+ "{projectRoot}/build.*.[jt]s?(x)",
296
+ "{projectRoot}/tsup.*.[jt]s?(x)",
297
+ "{projectRoot}/contentlayer.*.[jt]s?(x)",
298
298
  "{projectRoot}/bin/**/*",
299
299
  "{projectRoot}/tools/**/*",
300
300
  "{projectRoot}/helpers/**/*",
@@ -28,11 +28,12 @@ var _chunkXCSSYTCUjs = require('./chunk-XCSSYTCU.js');
28
28
  var _chunk3GQAWCBQjs = require('./chunk-3GQAWCBQ.js');
29
29
 
30
30
  // ../unbuild/src/build.ts
31
- var _node = require('@humanfs/node');
32
31
  var _devkit = require('@nx/devkit');
33
32
  var _js = require('@nx/js');
34
33
  var _buildablelibsutils = require('@nx/js/src/utils/buildable-libs-utils');
35
34
  var _defu = require('defu'); var _defu2 = _interopRequireDefault(_defu);
35
+ var _fs = require('fs');
36
+ var _promises = require('fs/promises');
36
37
  var _path = require('path');
37
38
  var _findworkspaceroot = require('nx/src/utils/find-workspace-root');
38
39
  var _unbuild = require('unbuild');
@@ -42,7 +43,10 @@ var _unbuild = require('unbuild');
42
43
  async function clean(name = "Unbuild", directory, config) {
43
44
  _chunk36FMHXUDjs.writeDebug.call(void 0, ` \u{1F9F9} Cleaning ${name} output path: ${directory}`, config);
44
45
  const stopwatch = _chunk36FMHXUDjs.getStopwatch.call(void 0, `${name} output clean`);
45
- await _node.hfs.deleteAll(directory);
46
+ await _promises.rm.call(void 0, directory, {
47
+ recursive: true,
48
+ force: true
49
+ });
46
50
  stopwatch();
47
51
  }
48
52
  _chunk3GQAWCBQjs.__name.call(void 0, clean, "clean");
@@ -227,28 +231,30 @@ async function resolveOptions(options) {
227
231
  exitOnError: true
228
232
  });
229
233
  const projectJsonPath = _chunkXCSSYTCUjs.joinPaths.call(void 0, config.workspaceRoot, projectRoot, "project.json");
230
- if (!await _node.hfs.isFile(projectJsonPath)) {
234
+ if (!_fs.existsSync.call(void 0, projectJsonPath)) {
231
235
  throw new Error("Cannot find project.json configuration");
232
236
  }
233
- const projectJson = await _node.hfs.json(projectJsonPath);
237
+ const projectJsonContent = await _promises.readFile.call(void 0, projectJsonPath, "utf8");
238
+ const projectJson = JSON.parse(projectJsonContent);
234
239
  const projectName = projectJson.name;
235
240
  const packageJsonPath = _chunkXCSSYTCUjs.joinPaths.call(void 0, workspaceRoot.dir, projectRoot, "package.json");
236
- if (!await _node.hfs.isFile(packageJsonPath)) {
241
+ if (!_fs.existsSync.call(void 0, packageJsonPath)) {
237
242
  throw new Error("Cannot find package.json configuration");
238
243
  }
239
- const packageJson = await _node.hfs.json(packageJsonPath);
244
+ const packageJsonContent = await _promises.readFile.call(void 0, packageJsonPath, "utf8");
245
+ const packageJson = JSON.parse(packageJsonContent);
240
246
  let tsconfig = options.tsconfig;
241
247
  if (!tsconfig) {
242
248
  tsconfig = _chunkXCSSYTCUjs.joinPaths.call(void 0, workspaceRoot.dir, projectRoot, "tsconfig.json");
243
249
  }
244
- if (!await _node.hfs.isFile(tsconfig)) {
250
+ if (!_fs.existsSync.call(void 0, tsconfig)) {
245
251
  throw new Error("Cannot find tsconfig.json configuration");
246
252
  }
247
253
  let sourceRoot = projectJson.sourceRoot;
248
254
  if (!sourceRoot) {
249
255
  sourceRoot = _chunkXCSSYTCUjs.joinPaths.call(void 0, projectRoot, "src");
250
256
  }
251
- if (!await _node.hfs.isDirectory(sourceRoot)) {
257
+ if (!_fs.existsSync.call(void 0, sourceRoot)) {
252
258
  throw new Error("Cannot find sourceRoot directory");
253
259
  }
254
260
  const projectConfigurations = _devkit.readProjectsConfigurationFromProjectGraph.call(void 0, projectGraph);
@@ -375,17 +381,18 @@ async function resolveOptions(options) {
375
381
  }
376
382
  _chunk3GQAWCBQjs.__name.call(void 0, resolveOptions, "resolveOptions");
377
383
  async function generatePackageJson(options) {
378
- if (options.generatePackageJson !== false && await _node.hfs.isFile(_chunkXCSSYTCUjs.joinPaths.call(void 0, options.projectRoot, "package.json"))) {
384
+ if (options.generatePackageJson !== false && _fs.existsSync.call(void 0, _chunkXCSSYTCUjs.joinPaths.call(void 0, options.projectRoot, "package.json"))) {
379
385
  _chunk36FMHXUDjs.writeDebug.call(void 0, " \u270D\uFE0F Writing package.json file", options.config);
380
386
  const stopwatch = _chunk36FMHXUDjs.getStopwatch.call(void 0, "Write package.json file");
381
387
  const packageJsonPath = _chunkXCSSYTCUjs.joinPaths.call(void 0, options.projectRoot, "project.json");
382
- if (!await _node.hfs.isFile(packageJsonPath)) {
388
+ if (!_fs.existsSync.call(void 0, packageJsonPath)) {
383
389
  throw new Error("Cannot find package.json configuration");
384
390
  }
385
- let packageJson = await _node.hfs.json(_chunkXCSSYTCUjs.joinPaths.call(void 0, options.config.workspaceRoot, options.projectRoot, "package.json"));
386
- if (!packageJson) {
391
+ let packageJsonContent = await _promises.readFile.call(void 0, _chunkXCSSYTCUjs.joinPaths.call(void 0, options.config.workspaceRoot, options.projectRoot, "package.json"), "utf8");
392
+ if (!packageJsonContent) {
387
393
  throw new Error("Cannot find package.json configuration file");
388
394
  }
395
+ let packageJson = JSON.parse(packageJsonContent);
389
396
  packageJson = await _chunkCT7IVPJYjs.addPackageDependencies.call(void 0, options.config.workspaceRoot, options.projectRoot, options.projectName, packageJson);
390
397
  packageJson = await _chunkCT7IVPJYjs.addWorkspacePackageJsonFields.call(void 0, options.config, options.projectRoot, options.sourceRoot, options.projectName, false, packageJson);
391
398
  packageJson = await _chunkCT7IVPJYjs.addPackageJsonExports.call(void 0, options.sourceRoot, packageJson);
@@ -28,21 +28,25 @@ import {
28
28
  } from "./chunk-XUV4U54K.mjs";
29
29
 
30
30
  // ../unbuild/src/build.ts
31
- import { hfs as hfs2 } from "@humanfs/node";
32
31
  import { createProjectGraphAsync as createProjectGraphAsync2, readProjectsConfigurationFromProjectGraph, writeJsonFile } from "@nx/devkit";
33
32
  import { getHelperDependency as getHelperDependency2, HelperDependency as HelperDependency2 } from "@nx/js";
34
33
  import { calculateProjectBuildableDependencies as calculateProjectBuildableDependencies2 } from "@nx/js/src/utils/buildable-libs-utils";
35
34
  import defu from "defu";
35
+ import { existsSync } from "node:fs";
36
+ import { readFile } from "node:fs/promises";
36
37
  import { relative as relative2 } from "node:path";
37
38
  import { findWorkspaceRoot } from "nx/src/utils/find-workspace-root";
38
39
  import { build as unbuild } from "unbuild";
39
40
 
40
41
  // ../unbuild/src/clean.ts
41
- import { hfs } from "@humanfs/node";
42
+ import { rm } from "node:fs/promises";
42
43
  async function clean(name = "Unbuild", directory, config) {
43
44
  writeDebug(` \u{1F9F9} Cleaning ${name} output path: ${directory}`, config);
44
45
  const stopwatch = getStopwatch(`${name} output clean`);
45
- await hfs.deleteAll(directory);
46
+ await rm(directory, {
47
+ recursive: true,
48
+ force: true
49
+ });
46
50
  stopwatch();
47
51
  }
48
52
  __name(clean, "clean");
@@ -227,28 +231,30 @@ async function resolveOptions(options) {
227
231
  exitOnError: true
228
232
  });
229
233
  const projectJsonPath = joinPaths(config.workspaceRoot, projectRoot, "project.json");
230
- if (!await hfs2.isFile(projectJsonPath)) {
234
+ if (!existsSync(projectJsonPath)) {
231
235
  throw new Error("Cannot find project.json configuration");
232
236
  }
233
- const projectJson = await hfs2.json(projectJsonPath);
237
+ const projectJsonContent = await readFile(projectJsonPath, "utf8");
238
+ const projectJson = JSON.parse(projectJsonContent);
234
239
  const projectName = projectJson.name;
235
240
  const packageJsonPath = joinPaths(workspaceRoot.dir, projectRoot, "package.json");
236
- if (!await hfs2.isFile(packageJsonPath)) {
241
+ if (!existsSync(packageJsonPath)) {
237
242
  throw new Error("Cannot find package.json configuration");
238
243
  }
239
- const packageJson = await hfs2.json(packageJsonPath);
244
+ const packageJsonContent = await readFile(packageJsonPath, "utf8");
245
+ const packageJson = JSON.parse(packageJsonContent);
240
246
  let tsconfig = options.tsconfig;
241
247
  if (!tsconfig) {
242
248
  tsconfig = joinPaths(workspaceRoot.dir, projectRoot, "tsconfig.json");
243
249
  }
244
- if (!await hfs2.isFile(tsconfig)) {
250
+ if (!existsSync(tsconfig)) {
245
251
  throw new Error("Cannot find tsconfig.json configuration");
246
252
  }
247
253
  let sourceRoot = projectJson.sourceRoot;
248
254
  if (!sourceRoot) {
249
255
  sourceRoot = joinPaths(projectRoot, "src");
250
256
  }
251
- if (!await hfs2.isDirectory(sourceRoot)) {
257
+ if (!existsSync(sourceRoot)) {
252
258
  throw new Error("Cannot find sourceRoot directory");
253
259
  }
254
260
  const projectConfigurations = readProjectsConfigurationFromProjectGraph(projectGraph);
@@ -375,17 +381,18 @@ async function resolveOptions(options) {
375
381
  }
376
382
  __name(resolveOptions, "resolveOptions");
377
383
  async function generatePackageJson(options) {
378
- if (options.generatePackageJson !== false && await hfs2.isFile(joinPaths(options.projectRoot, "package.json"))) {
384
+ if (options.generatePackageJson !== false && existsSync(joinPaths(options.projectRoot, "package.json"))) {
379
385
  writeDebug(" \u270D\uFE0F Writing package.json file", options.config);
380
386
  const stopwatch = getStopwatch("Write package.json file");
381
387
  const packageJsonPath = joinPaths(options.projectRoot, "project.json");
382
- if (!await hfs2.isFile(packageJsonPath)) {
388
+ if (!existsSync(packageJsonPath)) {
383
389
  throw new Error("Cannot find package.json configuration");
384
390
  }
385
- let packageJson = await hfs2.json(joinPaths(options.config.workspaceRoot, options.projectRoot, "package.json"));
386
- if (!packageJson) {
391
+ let packageJsonContent = await readFile(joinPaths(options.config.workspaceRoot, options.projectRoot, "package.json"), "utf8");
392
+ if (!packageJsonContent) {
387
393
  throw new Error("Cannot find package.json configuration file");
388
394
  }
395
+ let packageJson = JSON.parse(packageJsonContent);
389
396
  packageJson = await addPackageDependencies(options.config.workspaceRoot, options.projectRoot, options.projectName, packageJson);
390
397
  packageJson = await addWorkspacePackageJsonFields(options.config, options.projectRoot, options.sourceRoot, options.projectName, false, packageJson);
391
398
  packageJson = await addPackageJsonExports(options.sourceRoot, packageJson);
@@ -0,0 +1 @@
1
+ "use strict";
File without changes
package/dist/executors.js CHANGED
@@ -1,6 +1,12 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-3J53KHVV.js');
2
2
 
3
3
 
4
+ var _chunkDB7BVAE7js = require('./chunk-DB7BVAE7.js');
5
+
6
+
7
+ var _chunk45GU4HW2js = require('./chunk-45GU4HW2.js');
8
+
9
+
4
10
  var _chunkTILR7372js = require('./chunk-TILR7372.js');
5
11
 
6
12
 
@@ -10,7 +16,7 @@ var _chunkOJ3R7YBKjs = require('./chunk-OJ3R7YBK.js');
10
16
  var _chunkB7LWGAUIjs = require('./chunk-B7LWGAUI.js');
11
17
 
12
18
 
13
- var _chunkRKOOM5R5js = require('./chunk-RKOOM5R5.js');
19
+ var _chunkZCZVVZBXjs = require('./chunk-ZCZVVZBX.js');
14
20
 
15
21
 
16
22
  var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
@@ -20,7 +26,7 @@ var _chunkDIODSFGHjs = require('./chunk-DIODSFGH.js');
20
26
  require('./chunk-CT7IVPJY.js');
21
27
 
22
28
 
23
- var _chunk45GU4HW2js = require('./chunk-45GU4HW2.js');
29
+ var _chunkZXT33DDBjs = require('./chunk-ZXT33DDB.js');
24
30
 
25
31
 
26
32
  var _chunk6B6IVIMQjs = require('./chunk-6B6IVIMQ.js');
@@ -30,12 +36,6 @@ var _chunkFP4PPOO6js = require('./chunk-FP4PPOO6.js');
30
36
 
31
37
 
32
38
  var _chunkF5WI7VDMjs = require('./chunk-F5WI7VDM.js');
33
-
34
-
35
- var _chunkZCZVVZBXjs = require('./chunk-ZCZVVZBX.js');
36
-
37
-
38
- var _chunkZXT33DDBjs = require('./chunk-ZXT33DDB.js');
39
39
  require('./chunk-INAG73GE.js');
40
40
  require('./chunk-ULBTYC2B.js');
41
41
  require('./chunk-ZMFVKBRM.js');
@@ -59,4 +59,4 @@ require('./chunk-3GQAWCBQ.js');
59
59
 
60
60
 
61
61
 
62
- exports.LARGE_BUFFER = _chunk45GU4HW2js.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkZXT33DDBjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunk6B6IVIMQjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkFP4PPOO6js.cargoClippyExecutor; exports.cargoDocExecutor = _chunkF5WI7VDMjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkZCZVVZBXjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkDIODSFGHjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkTILR7372js.sizeLimitExecutorFn; exports.tsdownExecutorFn = _chunkOJ3R7YBKjs.tsdownExecutorFn; exports.typiaExecutorFn = _chunkB7LWGAUIjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkRKOOM5R5js.unbuildExecutorFn;
62
+ exports.LARGE_BUFFER = _chunk45GU4HW2js.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkZXT33DDBjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunk6B6IVIMQjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkFP4PPOO6js.cargoClippyExecutor; exports.cargoDocExecutor = _chunkF5WI7VDMjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkZCZVVZBXjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkDIODSFGHjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkTILR7372js.sizeLimitExecutorFn; exports.tsdownExecutorFn = _chunkOJ3R7YBKjs.tsdownExecutorFn; exports.typiaExecutorFn = _chunkB7LWGAUIjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkDB7BVAE7js.unbuildExecutorFn;
@@ -1,4 +1,10 @@
1
1
  import "./chunk-V7YZ3666.mjs";
2
+ import {
3
+ unbuildExecutorFn
4
+ } from "./chunk-JMWQGXHM.mjs";
5
+ import {
6
+ LARGE_BUFFER
7
+ } from "./chunk-PS2NPPRM.mjs";
2
8
  import {
3
9
  sizeLimitExecutorFn
4
10
  } from "./chunk-WTHELTBU.mjs";
@@ -9,8 +15,8 @@ import {
9
15
  typiaExecutorFn
10
16
  } from "./chunk-35B5C22H.mjs";
11
17
  import {
12
- unbuildExecutorFn
13
- } from "./chunk-HAT7PSQD.mjs";
18
+ cargoFormatExecutor
19
+ } from "./chunk-GV44QHV3.mjs";
14
20
  import {
15
21
  getRegistryVersion
16
22
  } from "./chunk-6ZQ3QYXH.mjs";
@@ -19,8 +25,8 @@ import {
19
25
  } from "./chunk-DLO5NZQI.mjs";
20
26
  import "./chunk-UDAQKEJS.mjs";
21
27
  import {
22
- LARGE_BUFFER
23
- } from "./chunk-PS2NPPRM.mjs";
28
+ cargoBuildExecutor
29
+ } from "./chunk-SFT3A33D.mjs";
24
30
  import {
25
31
  cargoCheckExecutor
26
32
  } from "./chunk-OESA3G7F.mjs";
@@ -30,12 +36,6 @@ import {
30
36
  import {
31
37
  cargoDocExecutor
32
38
  } from "./chunk-XSCTGWRG.mjs";
33
- import {
34
- cargoFormatExecutor
35
- } from "./chunk-GV44QHV3.mjs";
36
- import {
37
- cargoBuildExecutor
38
- } from "./chunk-SFT3A33D.mjs";
39
39
  import "./chunk-DLQLZTCZ.mjs";
40
40
  import "./chunk-QZHIWK5Z.mjs";
41
41
  import "./chunk-VYH45FO6.mjs";
@@ -1,4 +1,4 @@
1
- import { d as BaseGeneratorResult } from './types-CMFSY9ut.mjs';
1
+ import { e as BaseGeneratorResult } from './types-CQzaS20Q.mjs';
2
2
  import * as _nx_devkit from '@nx/devkit';
3
3
  import { Tree } from '@nx/devkit';
4
4
 
@@ -1,4 +1,4 @@
1
- import { d as BaseGeneratorResult } from './types-CMFSY9ut.mjs';
1
+ import { e as BaseGeneratorResult } from './types-CQzaS20Q.mjs';
2
2
  import * as _nx_devkit from '@nx/devkit';
3
3
  import { Tree } from '@nx/devkit';
4
4
  import { S as StormConfig } from './types-D9vU63tt.mjs';
@@ -1,4 +1,4 @@
1
- import { d as BaseGeneratorResult } from './types-Dbr7XMO3.js';
1
+ import { e as BaseGeneratorResult } from './types-BmsLBqaq.js';
2
2
  import * as _nx_devkit from '@nx/devkit';
3
3
  import { Tree } from '@nx/devkit';
4
4
  import { S as StormConfig } from './types-D9vU63tt.js';
@@ -1,4 +1,4 @@
1
- import { d as BaseGeneratorResult } from './types-CMFSY9ut.mjs';
1
+ import { e as BaseGeneratorResult } from './types-CQzaS20Q.mjs';
2
2
  import * as _nx_devkit from '@nx/devkit';
3
3
  import { Tree } from '@nx/devkit';
4
4
  import { S as StormConfig } from './types-D9vU63tt.mjs';
@@ -1,4 +1,4 @@
1
- import { d as BaseGeneratorResult } from './types-Dbr7XMO3.js';
1
+ import { e as BaseGeneratorResult } from './types-BmsLBqaq.js';
2
2
  import * as _nx_devkit from '@nx/devkit';
3
3
  import { Tree } from '@nx/devkit';
4
4
  import { S as StormConfig } from './types-D9vU63tt.js';
@@ -1,4 +1,4 @@
1
- import { d as BaseGeneratorResult } from './types-CMFSY9ut.mjs';
1
+ import { e as BaseGeneratorResult } from './types-CQzaS20Q.mjs';
2
2
  import * as _nx_devkit from '@nx/devkit';
3
3
  import { Tree } from '@nx/devkit';
4
4
  import { S as StormConfig } from './types-D9vU63tt.mjs';
@@ -1,4 +1,4 @@
1
- import { d as BaseGeneratorResult } from './types-CMFSY9ut.mjs';
1
+ import { e as BaseGeneratorResult } from './types-CQzaS20Q.mjs';
2
2
  import * as _nx_devkit from '@nx/devkit';
3
3
  import { Tree } from '@nx/devkit';
4
4
  import { S as StormConfig } from './types-D9vU63tt.mjs';
@@ -1,4 +1,4 @@
1
- import { d as BaseGeneratorResult } from './types-Dbr7XMO3.js';
1
+ import { e as BaseGeneratorResult } from './types-BmsLBqaq.js';
2
2
  import * as _nx_devkit from '@nx/devkit';
3
3
  import { Tree } from '@nx/devkit';
4
4
  import { S as StormConfig } from './types-D9vU63tt.js';
@@ -1,4 +1,4 @@
1
- import { d as BaseGeneratorResult } from './types-Dbr7XMO3.js';
1
+ import { e as BaseGeneratorResult } from './types-BmsLBqaq.js';
2
2
  import * as _nx_devkit from '@nx/devkit';
3
3
  import { Tree } from '@nx/devkit';
4
4
  import { S as StormConfig } from './types-D9vU63tt.js';
@@ -1,4 +1,4 @@
1
- import { d as BaseGeneratorResult } from './types-Dbr7XMO3.js';
1
+ import { e as BaseGeneratorResult } from './types-BmsLBqaq.js';
2
2
  import * as _nx_devkit from '@nx/devkit';
3
3
  import { Tree } from '@nx/devkit';
4
4
 
@@ -1,11 +1,11 @@
1
- export { B as BrowserLibraryGeneratorSchema, b as browserLibraryGeneratorFn } from './generator-CNiN6sul.mjs';
2
- export { C as ConfigSchemaGeneratorSchema, M as ModuleSchema, c as configSchemaGeneratorFn } from './generator-DmJcSdfk.mjs';
1
+ export { B as BrowserLibraryGeneratorSchema, b as browserLibraryGeneratorFn } from './generator-BqzpDHpv.mjs';
2
+ export { C as ConfigSchemaGeneratorSchema, M as ModuleSchema, c as configSchemaGeneratorFn } from './generator-CC8n6BWL.mjs';
3
3
  export { I as InitGeneratorSchema, i as initGenerator } from './init-6Nmtv8d5.mjs';
4
- export { N as NeutralLibraryGeneratorSchema, n as neutralLibraryGeneratorFn } from './generator-BOj8XBVt.mjs';
5
- export { N as NodeLibraryGeneratorSchema, n as nodeLibraryGeneratorFn } from './generator-VyYYXMy4.mjs';
6
- export { P as PresetGeneratorSchema, p as presetGeneratorFn } from './generator-CgdrKFcO.mjs';
4
+ export { N as NeutralLibraryGeneratorSchema, n as neutralLibraryGeneratorFn } from './generator-Dyq3mgZU.mjs';
5
+ export { N as NodeLibraryGeneratorSchema, n as nodeLibraryGeneratorFn } from './generator-DeKyhxAj.mjs';
6
+ export { P as PresetGeneratorSchema, p as presetGeneratorFn } from './generator-BLYdn00o.mjs';
7
7
  export { R as ReleaseVersionGeneratorSchema, r as releaseVersionGeneratorFn } from './generator-48_WHnGL.mjs';
8
- import './types-CMFSY9ut.mjs';
8
+ import './types-CQzaS20Q.mjs';
9
9
  import './types-D9vU63tt.mjs';
10
10
  import 'zod';
11
11
  import 'tsup';
@@ -1,11 +1,11 @@
1
- export { B as BrowserLibraryGeneratorSchema, b as browserLibraryGeneratorFn } from './generator-C392qNd1.js';
2
- export { C as ConfigSchemaGeneratorSchema, M as ModuleSchema, c as configSchemaGeneratorFn } from './generator-WuasfjoA.js';
1
+ export { B as BrowserLibraryGeneratorSchema, b as browserLibraryGeneratorFn } from './generator-OLytwpdD.js';
2
+ export { C as ConfigSchemaGeneratorSchema, M as ModuleSchema, c as configSchemaGeneratorFn } from './generator-CtpgcwxE.js';
3
3
  export { I as InitGeneratorSchema, i as initGenerator } from './init-6Nmtv8d5.js';
4
- export { N as NeutralLibraryGeneratorSchema, n as neutralLibraryGeneratorFn } from './generator-DX0frURz.js';
5
- export { N as NodeLibraryGeneratorSchema, n as nodeLibraryGeneratorFn } from './generator-Dc6RWp26.js';
6
- export { P as PresetGeneratorSchema, p as presetGeneratorFn } from './generator-CtMFNmXP.js';
4
+ export { N as NeutralLibraryGeneratorSchema, n as neutralLibraryGeneratorFn } from './generator-T2p5gT0C.js';
5
+ export { N as NodeLibraryGeneratorSchema, n as nodeLibraryGeneratorFn } from './generator-BufhnJev.js';
6
+ export { P as PresetGeneratorSchema, p as presetGeneratorFn } from './generator-noL-xIjx.js';
7
7
  export { R as ReleaseVersionGeneratorSchema, r as releaseVersionGeneratorFn } from './generator-DeNfAL1R.js';
8
- import './types-Dbr7XMO3.js';
8
+ import './types-BmsLBqaq.js';
9
9
  import './types-D9vU63tt.js';
10
10
  import 'zod';
11
11
  import 'tsup';
@@ -1,6 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-INERRJ6Q.js');
2
2
 
3
3
 
4
+ var _chunkKLEKFCL2js = require('./chunk-KLEKFCL2.js');
5
+
6
+
4
7
  var _chunkI7OZOKTHjs = require('./chunk-I7OZOKTH.js');
5
8
 
6
9
 
@@ -17,9 +20,6 @@ var _chunkJEV3GSS7js = require('./chunk-JEV3GSS7.js');
17
20
 
18
21
 
19
22
  var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
20
-
21
-
22
- var _chunkKLEKFCL2js = require('./chunk-KLEKFCL2.js');
23
23
  require('./chunk-FBLF4KJF.js');
24
24
  require('./chunk-7YRW5HNX.js');
25
25
  require('./chunk-HI4G4OOG.js');
@@ -1,4 +1,7 @@
1
1
  import "./chunk-RLIZVCIN.mjs";
2
+ import {
3
+ neutralLibraryGeneratorFn
4
+ } from "./chunk-PS55UN6T.mjs";
2
5
  import {
3
6
  nodeLibraryGeneratorFn
4
7
  } from "./chunk-OA7KWN7D.mjs";
@@ -17,9 +20,6 @@ import {
17
20
  import {
18
21
  initGenerator
19
22
  } from "./chunk-J5SXKBBU.mjs";
20
- import {
21
- neutralLibraryGeneratorFn
22
- } from "./chunk-PS55UN6T.mjs";
23
23
  import "./chunk-XSRDTQ5C.mjs";
24
24
  import "./chunk-66TYTM73.mjs";
25
25
  import "./chunk-EK75QNMS.mjs";