@storm-software/workspace-tools 1.230.1 → 1.232.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,20 @@
1
+ ## 1.232.0 (2025-01-20)
2
+
3
+ ### Features
4
+
5
+ - **build-tools:** Update helpers to use cached project graph ([ae202661](https://github.com/storm-software/storm-ops/commit/ae202661))
6
+
7
+ ### 🧱 Updated Dependencies
8
+
9
+ - Updated unbuild to 0.22.0
10
+ - Updated unbuild to 0.22.0
11
+
12
+ ## 1.231.0 (2025-01-20)
13
+
14
+ ### Features
15
+
16
+ - **unbuild:** Update build process to use cached project graph ([610c94aa](https://github.com/storm-software/storm-ops/commit/610c94aa))
17
+
1
18
  ## 1.230.1 (2025-01-20)
2
19
 
3
20
  ### Bug Fixes
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.230.0-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.231.0-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 -->
@@ -27,12 +27,13 @@ var DEFAULT_TARGET = "esnext";
27
27
  var DEFAULT_ORGANIZATION = "storm-software";
28
28
 
29
29
  // ../build-tools/src/utilities/copy-assets.ts
30
- var _node = require('@humanfs/node');
31
30
  var _devkit = require('@nx/devkit');
32
31
  var _js = require('@nx/js');
33
32
  var _glob = require('glob');
33
+ var _promises = require('fs/promises');
34
34
 
35
35
  // ../build-tools/src/utilities/read-nx-config.ts
36
+ var _fs = require('fs'); var _fs2 = _interopRequireDefault(_fs);
36
37
 
37
38
  var readNxConfig = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (workspaceRoot) => {
38
39
  let rootDir = workspaceRoot;
@@ -41,10 +42,11 @@ var readNxConfig = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (w
41
42
  rootDir = config.workspaceRoot;
42
43
  }
43
44
  const nxJsonPath = _chunkXCSSYTCUjs.joinPaths.call(void 0, rootDir, "nx.json");
44
- if (!await _node.hfs.isFile(nxJsonPath)) {
45
+ if (!_fs.existsSync.call(void 0, nxJsonPath)) {
45
46
  throw new Error("Cannot find project.json configuration");
46
47
  }
47
- return _node.hfs.json(nxJsonPath);
48
+ const configContent = await _promises.readFile.call(void 0, nxJsonPath, "utf8");
49
+ return JSON.parse(configContent);
48
50
  }, "readNxConfig");
49
51
 
50
52
  // ../build-tools/src/utilities/copy-assets.ts
@@ -79,14 +81,12 @@ var copyAssets = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (con
79
81
  });
80
82
  }
81
83
  const nxJson = readNxConfig(config.workspaceRoot);
82
- const projectGraph = await _devkit.createProjectGraphAsync.call(void 0, {
83
- exitOnError: true
84
- });
84
+ const projectGraph = _devkit.readCachedProjectGraph.call(void 0, );
85
85
  const projectsConfigurations = _devkit.readProjectsConfigurationFromProjectGraph.call(void 0, projectGraph);
86
86
  if (!_optionalChain([projectsConfigurations, 'optionalAccess', _7 => _7.projects, 'optionalAccess', _8 => _8[projectName]])) {
87
87
  throw new Error("The Build process failed because the project does not have a valid configuration in the project.json file. Check if the file exists in the root of the project.");
88
88
  }
89
- const buildTarget = _optionalChain([projectsConfigurations, 'access', _9 => _9.projects, 'access', _10 => _10[projectName], 'optionalAccess', _11 => _11.targets, 'optionalAccess', _12 => _12.build]);
89
+ const buildTarget = _optionalChain([projectsConfigurations, 'access', _9 => _9.projects, 'access', _10 => _10[projectName], 'access', _11 => _11.targets, 'optionalAccess', _12 => _12.build]);
90
90
  if (!buildTarget) {
91
91
  throw new Error(`The Build process failed because the project does not have a valid build target in the project.json file. Check if the file exists in the root of the project at ${_chunkXCSSYTCUjs.joinPaths.call(void 0, projectRoot, "project.json")}`);
92
92
  }
@@ -116,42 +116,30 @@ var copyAssets = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (con
116
116
  _chunkXCSSYTCUjs.joinPaths.call(void 0, config.workspaceRoot, outputPath, "src/**/*.js"),
117
117
  _chunkXCSSYTCUjs.joinPaths.call(void 0, config.workspaceRoot, outputPath, "src/**/*.jsx")
118
118
  ]);
119
- await Promise.allSettled(files.map(async (file) => _node.hfs.write(file, `${banner && typeof banner === "string" ? banner.startsWith("//") ? banner : `// ${banner}` : ""}
119
+ await Promise.allSettled(files.map(async (file) => _promises.writeFile.call(void 0, file, `${banner && typeof banner === "string" ? banner.startsWith("//") ? banner : `// ${banner}` : ""}
120
120
 
121
- ${await _node.hfs.text(file)}
121
+ ${await _promises.readFile.call(void 0, file, "utf8")}
122
122
 
123
123
  ${footer && typeof footer === "string" ? footer.startsWith("//") ? footer : `// ${footer}` : ""}`)));
124
124
  }
125
125
  }, "copyAssets");
126
126
 
127
127
  // ../build-tools/src/utilities/generate-package-json.ts
128
-
129
128
  var _buildablelibsutils = require('@nx/js/src/utils/buildable-libs-utils');
130
129
 
130
+
131
+
131
132
  var _projectgraph = require('nx/src/project-graph/project-graph');
132
133
  var addPackageDependencies = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (workspaceRoot, projectRoot, projectName, packageJson) => {
133
- const projectGraph = await _projectgraph.createProjectGraphAsync.call(void 0, {
134
- exitOnError: true
135
- });
136
- const projectConfigurations = _projectgraph.readProjectsConfigurationFromProjectGraph.call(void 0, projectGraph);
137
- if (!_optionalChain([projectConfigurations, 'optionalAccess', _13 => _13.projects, 'optionalAccess', _14 => _14[projectName]])) {
138
- throw new Error("The Build process failed because the project does not have a valid configuration in the project.json file. Check if the file exists in the root of the project.");
139
- }
140
- const projectJsonPath = _chunkXCSSYTCUjs.joinPaths.call(void 0, workspaceRoot, projectRoot, "project.json");
141
- if (!await _node.hfs.isFile(projectJsonPath)) {
142
- throw new Error("Cannot find project.json configuration");
143
- }
144
- if (!_optionalChain([projectConfigurations, 'optionalAccess', _15 => _15.projects, 'optionalAccess', _16 => _16[projectName]])) {
145
- throw new Error("The Build process failed because the project does not have a valid configuration in the project.json file. Check if the file exists in the root of the project.");
146
- }
147
- const projectDependencies = _buildablelibsutils.calculateProjectBuildableDependencies.call(void 0, void 0, projectGraph, workspaceRoot, projectName, process.env.NX_TASK_TARGET_TARGET || "build", process.env.NX_TASK_TARGET_CONFIGURATION || "production", true);
134
+ const projectDependencies = _buildablelibsutils.calculateProjectBuildableDependencies.call(void 0, void 0, _projectgraph.readCachedProjectGraph.call(void 0, ), workspaceRoot, projectName, process.env.NX_TASK_TARGET_TARGET || "build", process.env.NX_TASK_TARGET_CONFIGURATION || "production", true);
148
135
  const localPackages = [];
149
136
  for (const project of projectDependencies.dependencies.filter((dep) => dep.node.type === "lib" && dep.node.data.root !== projectRoot && dep.node.data.root !== workspaceRoot)) {
150
137
  const projectNode = project.node;
151
138
  if (projectNode.data.root) {
152
139
  const projectPackageJsonPath = _chunkXCSSYTCUjs.joinPaths.call(void 0, workspaceRoot, projectNode.data.root, "package.json");
153
- if (await _node.hfs.isFile(projectPackageJsonPath)) {
154
- const projectPackageJson = await _node.hfs.json(projectPackageJsonPath);
140
+ if (_fs.existsSync.call(void 0, projectPackageJsonPath)) {
141
+ const projectPackageJsonContent = await _promises.readFile.call(void 0, projectPackageJsonPath, "utf8");
142
+ const projectPackageJson = JSON.parse(projectPackageJsonContent);
155
143
  if (projectPackageJson.private !== false) {
156
144
  localPackages.push(projectPackageJson);
157
145
  }
@@ -187,7 +175,8 @@ var addPackageDependencies = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0
187
175
  }, "addPackageDependencies");
188
176
  var addWorkspacePackageJsonFields = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (config, projectRoot, sourceRoot, projectName, includeSrc = false, packageJson) => {
189
177
  const workspaceRoot = config.workspaceRoot ? config.workspaceRoot : _chunk5MKQX2FEjs.findWorkspaceRoot.call(void 0, );
190
- const workspacePackageJson = await _node.hfs.json(_chunkXCSSYTCUjs.joinPaths.call(void 0, workspaceRoot, "package.json"));
178
+ const workspacePackageJsonContent = await _promises.readFile.call(void 0, _chunkXCSSYTCUjs.joinPaths.call(void 0, workspaceRoot, "package.json"), "utf8");
179
+ const workspacePackageJson = JSON.parse(workspacePackageJsonContent);
191
180
  packageJson.type ??= "module";
192
181
  packageJson.sideEffects ??= false;
193
182
  if (includeSrc === true) {
@@ -336,7 +325,7 @@ var getEnv = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (builder, opti
336
325
  var _core = require('@swc/core');
337
326
 
338
327
  // ../build-tools/src/plugins/ts-resolve.ts
339
- var _fs = require('fs'); var _fs2 = _interopRequireDefault(_fs);
328
+
340
329
  var _module = require('module');
341
330
  var _path = require('path'); var _path2 = _interopRequireDefault(_path);
342
331
  var _resolve2 = require('resolve'); var _resolve3 = _interopRequireDefault(_resolve2);
@@ -27,13 +27,14 @@ var DEFAULT_TARGET = "esnext";
27
27
  var DEFAULT_ORGANIZATION = "storm-software";
28
28
 
29
29
  // ../build-tools/src/utilities/copy-assets.ts
30
- import { hfs as hfs2 } from "@humanfs/node";
31
- import { createProjectGraphAsync, readProjectsConfigurationFromProjectGraph } from "@nx/devkit";
30
+ import { readCachedProjectGraph, readProjectsConfigurationFromProjectGraph } from "@nx/devkit";
32
31
  import { copyAssets as copyAssetsBase } from "@nx/js";
33
32
  import { glob } from "glob";
33
+ import { readFile as readFile2, writeFile } from "node:fs/promises";
34
34
 
35
35
  // ../build-tools/src/utilities/read-nx-config.ts
36
- import { hfs } from "@humanfs/node";
36
+ import { existsSync } from "node:fs";
37
+ import { readFile } from "node:fs/promises";
37
38
  var readNxConfig = /* @__PURE__ */ __name(async (workspaceRoot) => {
38
39
  let rootDir = workspaceRoot;
39
40
  if (!rootDir) {
@@ -41,10 +42,11 @@ var readNxConfig = /* @__PURE__ */ __name(async (workspaceRoot) => {
41
42
  rootDir = config.workspaceRoot;
42
43
  }
43
44
  const nxJsonPath = joinPaths(rootDir, "nx.json");
44
- if (!await hfs.isFile(nxJsonPath)) {
45
+ if (!existsSync(nxJsonPath)) {
45
46
  throw new Error("Cannot find project.json configuration");
46
47
  }
47
- return hfs.json(nxJsonPath);
48
+ const configContent = await readFile(nxJsonPath, "utf8");
49
+ return JSON.parse(configContent);
48
50
  }, "readNxConfig");
49
51
 
50
52
  // ../build-tools/src/utilities/copy-assets.ts
@@ -79,14 +81,12 @@ var copyAssets = /* @__PURE__ */ __name(async (config, assets, outputPath, proje
79
81
  });
80
82
  }
81
83
  const nxJson = readNxConfig(config.workspaceRoot);
82
- const projectGraph = await createProjectGraphAsync({
83
- exitOnError: true
84
- });
84
+ const projectGraph = readCachedProjectGraph();
85
85
  const projectsConfigurations = readProjectsConfigurationFromProjectGraph(projectGraph);
86
86
  if (!projectsConfigurations?.projects?.[projectName]) {
87
87
  throw new Error("The Build process failed because the project does not have a valid configuration in the project.json file. Check if the file exists in the root of the project.");
88
88
  }
89
- const buildTarget = projectsConfigurations.projects[projectName]?.targets?.build;
89
+ const buildTarget = projectsConfigurations.projects[projectName].targets?.build;
90
90
  if (!buildTarget) {
91
91
  throw new Error(`The Build process failed because the project does not have a valid build target in the project.json file. Check if the file exists in the root of the project at ${joinPaths(projectRoot, "project.json")}`);
92
92
  }
@@ -116,42 +116,30 @@ var copyAssets = /* @__PURE__ */ __name(async (config, assets, outputPath, proje
116
116
  joinPaths(config.workspaceRoot, outputPath, "src/**/*.js"),
117
117
  joinPaths(config.workspaceRoot, outputPath, "src/**/*.jsx")
118
118
  ]);
119
- await Promise.allSettled(files.map(async (file) => hfs2.write(file, `${banner && typeof banner === "string" ? banner.startsWith("//") ? banner : `// ${banner}` : ""}
119
+ await Promise.allSettled(files.map(async (file) => writeFile(file, `${banner && typeof banner === "string" ? banner.startsWith("//") ? banner : `// ${banner}` : ""}
120
120
 
121
- ${await hfs2.text(file)}
121
+ ${await readFile2(file, "utf8")}
122
122
 
123
123
  ${footer && typeof footer === "string" ? footer.startsWith("//") ? footer : `// ${footer}` : ""}`)));
124
124
  }
125
125
  }, "copyAssets");
126
126
 
127
127
  // ../build-tools/src/utilities/generate-package-json.ts
128
- import { hfs as hfs3 } from "@humanfs/node";
129
128
  import { calculateProjectBuildableDependencies } from "@nx/js/src/utils/buildable-libs-utils";
130
129
  import { Glob } from "glob";
131
- import { createProjectGraphAsync as createProjectGraphAsync2, readProjectsConfigurationFromProjectGraph as readProjectsConfigurationFromProjectGraph2 } from "nx/src/project-graph/project-graph";
130
+ import { existsSync as existsSync2 } from "node:fs";
131
+ import { readFile as readFile3 } from "node:fs/promises";
132
+ import { readCachedProjectGraph as readCachedProjectGraph2 } from "nx/src/project-graph/project-graph";
132
133
  var addPackageDependencies = /* @__PURE__ */ __name(async (workspaceRoot, projectRoot, projectName, packageJson) => {
133
- const projectGraph = await createProjectGraphAsync2({
134
- exitOnError: true
135
- });
136
- const projectConfigurations = readProjectsConfigurationFromProjectGraph2(projectGraph);
137
- if (!projectConfigurations?.projects?.[projectName]) {
138
- throw new Error("The Build process failed because the project does not have a valid configuration in the project.json file. Check if the file exists in the root of the project.");
139
- }
140
- const projectJsonPath = joinPaths(workspaceRoot, projectRoot, "project.json");
141
- if (!await hfs3.isFile(projectJsonPath)) {
142
- throw new Error("Cannot find project.json configuration");
143
- }
144
- if (!projectConfigurations?.projects?.[projectName]) {
145
- throw new Error("The Build process failed because the project does not have a valid configuration in the project.json file. Check if the file exists in the root of the project.");
146
- }
147
- const projectDependencies = calculateProjectBuildableDependencies(void 0, projectGraph, workspaceRoot, projectName, process.env.NX_TASK_TARGET_TARGET || "build", process.env.NX_TASK_TARGET_CONFIGURATION || "production", true);
134
+ const projectDependencies = calculateProjectBuildableDependencies(void 0, readCachedProjectGraph2(), workspaceRoot, projectName, process.env.NX_TASK_TARGET_TARGET || "build", process.env.NX_TASK_TARGET_CONFIGURATION || "production", true);
148
135
  const localPackages = [];
149
136
  for (const project of projectDependencies.dependencies.filter((dep) => dep.node.type === "lib" && dep.node.data.root !== projectRoot && dep.node.data.root !== workspaceRoot)) {
150
137
  const projectNode = project.node;
151
138
  if (projectNode.data.root) {
152
139
  const projectPackageJsonPath = joinPaths(workspaceRoot, projectNode.data.root, "package.json");
153
- if (await hfs3.isFile(projectPackageJsonPath)) {
154
- const projectPackageJson = await hfs3.json(projectPackageJsonPath);
140
+ if (existsSync2(projectPackageJsonPath)) {
141
+ const projectPackageJsonContent = await readFile3(projectPackageJsonPath, "utf8");
142
+ const projectPackageJson = JSON.parse(projectPackageJsonContent);
155
143
  if (projectPackageJson.private !== false) {
156
144
  localPackages.push(projectPackageJson);
157
145
  }
@@ -187,7 +175,8 @@ var addPackageDependencies = /* @__PURE__ */ __name(async (workspaceRoot, projec
187
175
  }, "addPackageDependencies");
188
176
  var addWorkspacePackageJsonFields = /* @__PURE__ */ __name(async (config, projectRoot, sourceRoot, projectName, includeSrc = false, packageJson) => {
189
177
  const workspaceRoot = config.workspaceRoot ? config.workspaceRoot : findWorkspaceRoot();
190
- const workspacePackageJson = await hfs3.json(joinPaths(workspaceRoot, "package.json"));
178
+ const workspacePackageJsonContent = await readFile3(joinPaths(workspaceRoot, "package.json"), "utf8");
179
+ const workspacePackageJson = JSON.parse(workspacePackageJsonContent);
191
180
  packageJson.type ??= "module";
192
181
  packageJson.sideEffects ??= false;
193
182
  if (includeSrc === true) {
@@ -6,7 +6,7 @@ import {
6
6
  copyAssets,
7
7
  getEntryPoints,
8
8
  getEnv
9
- } from "./chunk-55PB3HGB.mjs";
9
+ } from "./chunk-GFOMWTSR.mjs";
10
10
  import {
11
11
  withRunExecutor
12
12
  } from "./chunk-J4POXWGW.mjs";
@@ -3,7 +3,7 @@
3
3
 
4
4
 
5
5
 
6
- var _chunk3SXUH27Jjs = require('./chunk-3SXUH27J.js');
6
+ var _chunk22DNWOG2js = require('./chunk-22DNWOG2.js');
7
7
 
8
8
 
9
9
  var _chunk72H4B5NBjs = require('./chunk-72H4B5NB.js');
@@ -366,9 +366,9 @@ async function generatePackageJson(options) {
366
366
  throw new Error("Cannot find package.json configuration file");
367
367
  }
368
368
  let packageJson = JSON.parse(packageJsonContent);
369
- packageJson = await _chunk3SXUH27Jjs.addPackageDependencies.call(void 0, options.config.workspaceRoot, options.projectRoot, options.projectName, packageJson);
370
- packageJson = await _chunk3SXUH27Jjs.addWorkspacePackageJsonFields.call(void 0, options.config, options.projectRoot, options.sourceRoot, options.projectName, false, packageJson);
371
- await _devkit.writeJsonFile.call(void 0, _chunkXCSSYTCUjs.joinPaths.call(void 0, options.outDir, "package.json"), await _chunk3SXUH27Jjs.addPackageJsonExports.call(void 0, options.sourceRoot, packageJson));
369
+ packageJson = await _chunk22DNWOG2js.addPackageDependencies.call(void 0, options.config.workspaceRoot, options.projectRoot, options.projectName, packageJson);
370
+ packageJson = await _chunk22DNWOG2js.addWorkspacePackageJsonFields.call(void 0, options.config, options.projectRoot, options.sourceRoot, options.projectName, false, packageJson);
371
+ await _devkit.writeJsonFile.call(void 0, _chunkXCSSYTCUjs.joinPaths.call(void 0, options.outDir, "package.json"), await _chunk22DNWOG2js.addPackageJsonExports.call(void 0, options.sourceRoot, packageJson));
372
372
  stopwatch();
373
373
  }
374
374
  return options;
@@ -391,7 +391,7 @@ _chunk3GQAWCBQjs.__name.call(void 0, executeUnbuild, "executeUnbuild");
391
391
  async function copyBuildAssets(options) {
392
392
  _chunkIX2EZD3Fjs.writeDebug.call(void 0, ` \u{1F4CB} Copying asset files to output directory: ${options.outDir}`, options.config);
393
393
  const stopwatch = _chunkIX2EZD3Fjs.getStopwatch.call(void 0, `${options.name} asset copy`);
394
- await _chunk3SXUH27Jjs.copyAssets.call(void 0, options.config, _nullishCoalesce(options.assets, () => ( [])), options.outDir, options.projectRoot, options.projectName, options.sourceRoot, options.generatePackageJson, options.includeSrc);
394
+ await _chunk22DNWOG2js.copyAssets.call(void 0, options.config, _nullishCoalesce(options.assets, () => ( [])), options.outDir, options.projectRoot, options.projectName, options.sourceRoot, options.generatePackageJson, options.includeSrc);
395
395
  stopwatch();
396
396
  return options;
397
397
  }
@@ -3,7 +3,7 @@ import {
3
3
  addPackageJsonExports,
4
4
  addWorkspacePackageJsonFields,
5
5
  copyAssets
6
- } from "./chunk-55PB3HGB.mjs";
6
+ } from "./chunk-GFOMWTSR.mjs";
7
7
  import {
8
8
  withRunExecutor
9
9
  } from "./chunk-J4POXWGW.mjs";
@@ -8,7 +8,7 @@
8
8
 
9
9
 
10
10
 
11
- var _chunk3SXUH27Jjs = require('./chunk-3SXUH27J.js');
11
+ var _chunk22DNWOG2js = require('./chunk-22DNWOG2.js');
12
12
 
13
13
 
14
14
  var _chunk72H4B5NBjs = require('./chunk-72H4B5NB.js');
@@ -487,7 +487,7 @@ _chunk3GQAWCBQjs.__name.call(void 0, getTypeDependencyPackageName, "getTypeDepen
487
487
 
488
488
  // ../esbuild/src/config.ts
489
489
  var getOutputExtensionMap = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (options, pkgType) => {
490
- return options.outExtension ? options.outExtension(options.format, pkgType) : _chunk3SXUH27Jjs.getOutExtension.call(void 0, options.format, pkgType);
490
+ return options.outExtension ? options.outExtension(options.format, pkgType) : _chunk22DNWOG2js.getOutExtension.call(void 0, options.format, pkgType);
491
491
  }, "getOutputExtensionMap");
492
492
  var getDefaultBuildPlugins = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (options, resolvedOptions) => [
493
493
  nodeProtocolPlugin(options, resolvedOptions),
@@ -535,7 +535,7 @@ var DEFAULT_BUILD_OPTIONS = {
535
535
  ".woff": "file",
536
536
  ".woff2": "file"
537
537
  },
538
- banner: _chunk3SXUH27Jjs.DEFAULT_COMPILED_BANNER
538
+ banner: _chunk22DNWOG2js.DEFAULT_COMPILED_BANNER
539
539
  };
540
540
 
541
541
  // ../esbuild/src/plugins/deps-check.ts
@@ -730,14 +730,14 @@ var resolveOptions = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
730
730
  }
731
731
  const options = _defu2.default.call(void 0, userOptions, DEFAULT_BUILD_OPTIONS);
732
732
  options.name ??= `${projectName}-${options.format}`;
733
- options.target ??= _chunk3SXUH27Jjs.DEFAULT_TARGET;
733
+ options.target ??= _chunk22DNWOG2js.DEFAULT_TARGET;
734
734
  const packageJsonPath = _chunkXCSSYTCUjs.joinPaths.call(void 0, workspaceRoot.dir, options.projectRoot, "package.json");
735
735
  if (!await _node.hfs.isFile(packageJsonPath)) {
736
736
  throw new Error("Cannot find package.json configuration");
737
737
  }
738
738
  const packageJson = await _node.hfs.json(packageJsonPath);
739
739
  const outExtension = getOutputExtensionMap(options, packageJson.type);
740
- const env = _chunk3SXUH27Jjs.getEnv.call(void 0, "esbuild", options);
740
+ const env = _chunk22DNWOG2js.getEnv.call(void 0, "esbuild", options);
741
741
  const result = {
742
742
  ...options,
743
743
  config,
@@ -757,7 +757,7 @@ var resolveOptions = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
757
757
  ...userOptions,
758
758
  tsconfig: _chunkXCSSYTCUjs.joinPaths.call(void 0, projectRoot, userOptions.tsconfig ? userOptions.tsconfig.replace(projectRoot, "") : "tsconfig.json"),
759
759
  format: options.format || "cjs",
760
- entryPoints: await _chunk3SXUH27Jjs.getEntryPoints.call(void 0, config, projectRoot, projectJson.sourceRoot, userOptions.entry || [
760
+ entryPoints: await _chunk22DNWOG2js.getEntryPoints.call(void 0, config, projectRoot, projectJson.sourceRoot, userOptions.entry || [
761
761
  "./src/index.ts"
762
762
  ], userOptions.emitOnAll),
763
763
  outdir: userOptions.outputPath || _chunkXCSSYTCUjs.joinPaths.call(void 0, "dist", projectRoot),
@@ -782,8 +782,8 @@ var resolveOptions = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
782
782
  outExtension,
783
783
  footer: userOptions.footer,
784
784
  banner: {
785
- js: options.banner || _chunk3SXUH27Jjs.DEFAULT_COMPILED_BANNER,
786
- css: options.banner || _chunk3SXUH27Jjs.DEFAULT_COMPILED_BANNER
785
+ js: options.banner || _chunk22DNWOG2js.DEFAULT_COMPILED_BANNER,
786
+ css: options.banner || _chunk22DNWOG2js.DEFAULT_COMPILED_BANNER
787
787
  },
788
788
  splitting: options.format === "iife" ? false : typeof options.splitting === "boolean" ? options.splitting : options.format === "esm",
789
789
  treeShaking: options.format === "esm",
@@ -825,11 +825,11 @@ async function generatePackageJson(context2) {
825
825
  if (!packageJson) {
826
826
  throw new Error("Cannot find package.json configuration file");
827
827
  }
828
- packageJson = await _chunk3SXUH27Jjs.addPackageDependencies.call(void 0, context2.options.config.workspaceRoot, context2.options.projectRoot, context2.options.projectName, packageJson);
829
- packageJson = await _chunk3SXUH27Jjs.addWorkspacePackageJsonFields.call(void 0, context2.options.config, context2.options.projectRoot, context2.options.sourceRoot, context2.options.projectName, false, packageJson);
828
+ packageJson = await _chunk22DNWOG2js.addPackageDependencies.call(void 0, context2.options.config.workspaceRoot, context2.options.projectRoot, context2.options.projectName, packageJson);
829
+ packageJson = await _chunk22DNWOG2js.addWorkspacePackageJsonFields.call(void 0, context2.options.config, context2.options.projectRoot, context2.options.sourceRoot, context2.options.projectName, false, packageJson);
830
830
  packageJson.exports ??= {};
831
831
  packageJson.exports["./package.json"] ??= "./package.json";
832
- packageJson.exports["."] ??= _chunk3SXUH27Jjs.addPackageJsonExport.call(void 0, "index", packageJson.type, context2.options.sourceRoot);
832
+ packageJson.exports["."] ??= _chunk22DNWOG2js.addPackageJsonExport.call(void 0, "index", packageJson.type, context2.options.sourceRoot);
833
833
  let entryPoints = [
834
834
  {
835
835
  in: "./src/index.ts",
@@ -847,7 +847,7 @@ async function generatePackageJson(context2) {
847
847
  const split = entryPoint.out.split(".");
848
848
  split.pop();
849
849
  const entry = split.join(".").replaceAll("\\", "/");
850
- packageJson.exports[`./${entry}`] ??= _chunk3SXUH27Jjs.addPackageJsonExport.call(void 0, entry, packageJson.type, context2.options.sourceRoot);
850
+ packageJson.exports[`./${entry}`] ??= _chunk22DNWOG2js.addPackageJsonExport.call(void 0, entry, packageJson.type, context2.options.sourceRoot);
851
851
  }
852
852
  }
853
853
  packageJson.main = packageJson.type === "commonjs" ? "./dist/index.js" : "./dist/index.cjs";
@@ -904,7 +904,7 @@ async function copyBuildAssets(context2) {
904
904
  if (_optionalChain([context2, 'access', _26 => _26.result, 'optionalAccess', _27 => _27.errors, 'access', _28 => _28.length]) === 0) {
905
905
  _chunkIX2EZD3Fjs.writeDebug.call(void 0, ` \u{1F4CB} Copying asset files to output directory: ${context2.options.outdir}`, context2.options.config);
906
906
  const stopwatch = _chunkIX2EZD3Fjs.getStopwatch.call(void 0, `${context2.options.name} asset copy`);
907
- await _chunk3SXUH27Jjs.copyAssets.call(void 0, context2.options.config, _nullishCoalesce(context2.options.assets, () => ( [])), context2.options.outdir, context2.options.projectRoot, context2.options.projectName, context2.options.sourceRoot, true, false);
907
+ await _chunk22DNWOG2js.copyAssets.call(void 0, context2.options.config, _nullishCoalesce(context2.options.assets, () => ( [])), context2.options.outdir, context2.options.projectRoot, context2.options.projectName, context2.options.sourceRoot, true, false);
908
908
  stopwatch();
909
909
  }
910
910
  return context2;
@@ -6,7 +6,7 @@
6
6
 
7
7
 
8
8
 
9
- var _chunk3SXUH27Jjs = require('./chunk-3SXUH27J.js');
9
+ var _chunk22DNWOG2js = require('./chunk-22DNWOG2.js');
10
10
 
11
11
 
12
12
  var _chunk72H4B5NBjs = require('./chunk-72H4B5NB.js');
@@ -91,19 +91,19 @@ var resolveOptions = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
91
91
  }
92
92
  const options = _defu2.default.call(void 0, userOptions, DEFAULT_BUILD_OPTIONS);
93
93
  options.name ??= `${projectName}-${options.format}`;
94
- options.target ??= _chunk3SXUH27Jjs.DEFAULT_TARGET;
94
+ options.target ??= _chunk22DNWOG2js.DEFAULT_TARGET;
95
95
  const packageJsonPath = _chunkXCSSYTCUjs.joinPaths.call(void 0, workspaceRoot.dir, options.projectRoot, "package.json");
96
96
  if (!await _node.hfs.isFile(packageJsonPath)) {
97
97
  throw new Error("Cannot find package.json configuration");
98
98
  }
99
- const env = _chunk3SXUH27Jjs.getEnv.call(void 0, "tsdown", options);
99
+ const env = _chunk22DNWOG2js.getEnv.call(void 0, "tsdown", options);
100
100
  const result = {
101
101
  ...options,
102
102
  config,
103
103
  ...userOptions,
104
104
  tsconfig: _chunkXCSSYTCUjs.joinPaths.call(void 0, projectRoot, userOptions.tsconfig ? userOptions.tsconfig.replace(projectRoot, "") : "tsconfig.json"),
105
105
  format: options.format || "cjs",
106
- entryPoints: await _chunk3SXUH27Jjs.getEntryPoints.call(void 0, config, projectRoot, projectJson.sourceRoot, userOptions.entry || [
106
+ entryPoints: await _chunk22DNWOG2js.getEntryPoints.call(void 0, config, projectRoot, projectJson.sourceRoot, userOptions.entry || [
107
107
  "./src/index.ts"
108
108
  ], userOptions.emitOnAll),
109
109
  outdir: userOptions.outputPath || _chunkXCSSYTCUjs.joinPaths.call(void 0, "dist", projectRoot),
@@ -159,11 +159,11 @@ async function generatePackageJson(options) {
159
159
  if (!packageJson) {
160
160
  throw new Error("Cannot find package.json configuration file");
161
161
  }
162
- packageJson = await _chunk3SXUH27Jjs.addPackageDependencies.call(void 0, options.config.workspaceRoot, options.projectRoot, options.projectName, packageJson);
163
- packageJson = await _chunk3SXUH27Jjs.addWorkspacePackageJsonFields.call(void 0, options.config, options.projectRoot, options.sourceRoot, options.projectName, false, packageJson);
162
+ packageJson = await _chunk22DNWOG2js.addPackageDependencies.call(void 0, options.config.workspaceRoot, options.projectRoot, options.projectName, packageJson);
163
+ packageJson = await _chunk22DNWOG2js.addWorkspacePackageJsonFields.call(void 0, options.config, options.projectRoot, options.sourceRoot, options.projectName, false, packageJson);
164
164
  packageJson.exports ??= {};
165
165
  packageJson.exports["./package.json"] ??= "./package.json";
166
- packageJson.exports["."] ??= _chunk3SXUH27Jjs.addPackageJsonExport.call(void 0, "index", packageJson.type, options.sourceRoot);
166
+ packageJson.exports["."] ??= _chunk22DNWOG2js.addPackageJsonExport.call(void 0, "index", packageJson.type, options.sourceRoot);
167
167
  let entryPoints = [
168
168
  {
169
169
  in: "./src/index.ts",
@@ -181,7 +181,7 @@ async function generatePackageJson(options) {
181
181
  const split = entryPoint.out.split(".");
182
182
  split.pop();
183
183
  const entry = split.join(".").replaceAll("\\", "/");
184
- packageJson.exports[`./${entry}`] ??= _chunk3SXUH27Jjs.addPackageJsonExport.call(void 0, entry, packageJson.type, options.sourceRoot);
184
+ packageJson.exports[`./${entry}`] ??= _chunk22DNWOG2js.addPackageJsonExport.call(void 0, entry, packageJson.type, options.sourceRoot);
185
185
  }
186
186
  }
187
187
  packageJson.main = packageJson.type === "commonjs" ? "./dist/index.js" : "./dist/index.cjs";
@@ -215,7 +215,7 @@ _chunk3GQAWCBQjs.__name.call(void 0, executeTSDown, "executeTSDown");
215
215
  async function copyBuildAssets(options) {
216
216
  _chunkIX2EZD3Fjs.writeDebug.call(void 0, ` \u{1F4CB} Copying asset files to output directory: ${options.outdir}`, options.config);
217
217
  const stopwatch = _chunkIX2EZD3Fjs.getStopwatch.call(void 0, `${options.name} asset copy`);
218
- await _chunk3SXUH27Jjs.copyAssets.call(void 0, options.config, _nullishCoalesce(options.assets, () => ( [])), options.outdir, options.projectRoot, options.projectName, options.sourceRoot, true, false);
218
+ await _chunk22DNWOG2js.copyAssets.call(void 0, options.config, _nullishCoalesce(options.assets, () => ( [])), options.outdir, options.projectRoot, options.projectName, options.sourceRoot, true, false);
219
219
  stopwatch();
220
220
  return options;
221
221
  }
@@ -8,7 +8,7 @@ import {
8
8
  getEntryPoints,
9
9
  getEnv,
10
10
  getOutExtension
11
- } from "./chunk-55PB3HGB.mjs";
11
+ } from "./chunk-GFOMWTSR.mjs";
12
12
  import {
13
13
  withRunExecutor
14
14
  } from "./chunk-J4POXWGW.mjs";
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 _chunk6NIVQXVHjs = require('./chunk-6NIVQXVH.js');
4
+ var _chunkLD5QCANEjs = require('./chunk-LD5QCANE.js');
5
5
 
6
6
 
7
7
  var _chunk45GU4HW2js = require('./chunk-45GU4HW2.js');
@@ -10,7 +10,7 @@ var _chunk45GU4HW2js = require('./chunk-45GU4HW2.js');
10
10
  var _chunk3O66TDXLjs = require('./chunk-3O66TDXL.js');
11
11
 
12
12
 
13
- var _chunkZHQOK3NFjs = require('./chunk-ZHQOK3NF.js');
13
+ var _chunkWKSXKBPTjs = require('./chunk-WKSXKBPT.js');
14
14
 
15
15
 
16
16
  var _chunkAP62YOGHjs = require('./chunk-AP62YOGH.js');
@@ -22,8 +22,8 @@ var _chunkYCJU7YTLjs = require('./chunk-YCJU7YTL.js');
22
22
  var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
23
23
 
24
24
 
25
- var _chunkXW4IO5F6js = require('./chunk-XW4IO5F6.js');
26
- require('./chunk-3SXUH27J.js');
25
+ var _chunkRQVECOZCjs = require('./chunk-RQVECOZC.js');
26
+ require('./chunk-22DNWOG2.js');
27
27
 
28
28
 
29
29
  var _chunkIR6D2ZXAjs = require('./chunk-IR6D2ZXA.js');
@@ -59,4 +59,4 @@ require('./chunk-3GQAWCBQ.js');
59
59
 
60
60
 
61
61
 
62
- exports.LARGE_BUFFER = _chunk45GU4HW2js.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkIR6D2ZXAjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkCZJZJQ6Djs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkMBCXSLG7js.cargoClippyExecutor; exports.cargoDocExecutor = _chunkK7MNWUOYjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkYCJU7YTLjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkXW4IO5F6js.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunk3O66TDXLjs.sizeLimitExecutorFn; exports.tsdownExecutorFn = _chunkZHQOK3NFjs.tsdownExecutorFn; exports.typiaExecutorFn = _chunkAP62YOGHjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunk6NIVQXVHjs.unbuildExecutorFn;
62
+ exports.LARGE_BUFFER = _chunk45GU4HW2js.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkIR6D2ZXAjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkCZJZJQ6Djs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkMBCXSLG7js.cargoClippyExecutor; exports.cargoDocExecutor = _chunkK7MNWUOYjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkYCJU7YTLjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkRQVECOZCjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunk3O66TDXLjs.sizeLimitExecutorFn; exports.tsdownExecutorFn = _chunkWKSXKBPTjs.tsdownExecutorFn; exports.typiaExecutorFn = _chunkAP62YOGHjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkLD5QCANEjs.unbuildExecutorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-V7YZ3666.mjs";
2
2
  import {
3
3
  unbuildExecutorFn
4
- } from "./chunk-JAWTCSKA.mjs";
4
+ } from "./chunk-MYOY5MK7.mjs";
5
5
  import {
6
6
  LARGE_BUFFER
7
7
  } from "./chunk-PS2NPPRM.mjs";
@@ -10,7 +10,7 @@ import {
10
10
  } from "./chunk-MPOEEZVK.mjs";
11
11
  import {
12
12
  tsdownExecutorFn
13
- } from "./chunk-RMRYTZQJ.mjs";
13
+ } from "./chunk-IAW5BNS4.mjs";
14
14
  import {
15
15
  typiaExecutorFn
16
16
  } from "./chunk-H3UJL3I6.mjs";
@@ -22,8 +22,8 @@ import {
22
22
  } from "./chunk-6ZQ3QYXH.mjs";
23
23
  import {
24
24
  esbuildExecutorFn
25
- } from "./chunk-HLPAP24L.mjs";
26
- import "./chunk-55PB3HGB.mjs";
25
+ } from "./chunk-XKR7HI4E.mjs";
26
+ import "./chunk-GFOMWTSR.mjs";
27
27
  import {
28
28
  cargoBuildExecutor
29
29
  } from "./chunk-BCM66MXI.mjs";
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-INERRJ6Q.js');
2
2
 
3
3
 
4
- var _chunkLPWSHG6Ojs = require('./chunk-LPWSHG6O.js');
4
+ var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
5
5
 
6
6
 
7
7
  var _chunkAXC2MN2Tjs = require('./chunk-AXC2MN2T.js');
@@ -19,7 +19,7 @@ var _chunkDIPIPI7Hjs = require('./chunk-DIPIPI7H.js');
19
19
  var _chunkEI3PUSCCjs = require('./chunk-EI3PUSCC.js');
20
20
 
21
21
 
22
- var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
22
+ var _chunkLPWSHG6Ojs = require('./chunk-LPWSHG6O.js');
23
23
  require('./chunk-FBLF4KJF.js');
24
24
  require('./chunk-7YRW5HNX.js');
25
25
  require('./chunk-HI4G4OOG.js');
@@ -1,7 +1,7 @@
1
1
  import "./chunk-RLIZVCIN.mjs";
2
2
  import {
3
- neutralLibraryGeneratorFn
4
- } from "./chunk-PE2DD2SV.mjs";
3
+ initGenerator
4
+ } from "./chunk-J5SXKBBU.mjs";
5
5
  import {
6
6
  nodeLibraryGeneratorFn
7
7
  } from "./chunk-A5H74FJO.mjs";
@@ -18,8 +18,8 @@ import {
18
18
  configSchemaGeneratorFn
19
19
  } from "./chunk-357OS575.mjs";
20
20
  import {
21
- initGenerator
22
- } from "./chunk-J5SXKBBU.mjs";
21
+ neutralLibraryGeneratorFn
22
+ } from "./chunk-PE2DD2SV.mjs";
23
23
  import "./chunk-XSRDTQ5C.mjs";
24
24
  import "./chunk-66TYTM73.mjs";
25
25
  import "./chunk-EK75QNMS.mjs";
package/dist/index.js CHANGED
@@ -39,7 +39,7 @@ var _chunkZPWY4RXHjs = require('./chunk-ZPWY4RXH.js');
39
39
  require('./chunk-3J53KHVV.js');
40
40
 
41
41
 
42
- var _chunk6NIVQXVHjs = require('./chunk-6NIVQXVH.js');
42
+ var _chunkLD5QCANEjs = require('./chunk-LD5QCANE.js');
43
43
 
44
44
 
45
45
  var _chunk45GU4HW2js = require('./chunk-45GU4HW2.js');
@@ -48,7 +48,7 @@ var _chunk45GU4HW2js = require('./chunk-45GU4HW2.js');
48
48
  var _chunk3O66TDXLjs = require('./chunk-3O66TDXL.js');
49
49
 
50
50
 
51
- var _chunkZHQOK3NFjs = require('./chunk-ZHQOK3NF.js');
51
+ var _chunkWKSXKBPTjs = require('./chunk-WKSXKBPT.js');
52
52
 
53
53
 
54
54
  var _chunkAP62YOGHjs = require('./chunk-AP62YOGH.js');
@@ -60,8 +60,8 @@ var _chunkYCJU7YTLjs = require('./chunk-YCJU7YTL.js');
60
60
  var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
61
61
 
62
62
 
63
- var _chunkXW4IO5F6js = require('./chunk-XW4IO5F6.js');
64
- require('./chunk-3SXUH27J.js');
63
+ var _chunkRQVECOZCjs = require('./chunk-RQVECOZC.js');
64
+ require('./chunk-22DNWOG2.js');
65
65
 
66
66
 
67
67
  var _chunkIR6D2ZXAjs = require('./chunk-IR6D2ZXA.js');
@@ -91,7 +91,7 @@ var _chunkULBTYC2Bjs = require('./chunk-ULBTYC2B.js');
91
91
  require('./chunk-INERRJ6Q.js');
92
92
 
93
93
 
94
- var _chunkLPWSHG6Ojs = require('./chunk-LPWSHG6O.js');
94
+ var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
95
95
 
96
96
 
97
97
  var _chunkAXC2MN2Tjs = require('./chunk-AXC2MN2T.js');
@@ -109,7 +109,7 @@ var _chunkDIPIPI7Hjs = require('./chunk-DIPIPI7H.js');
109
109
  var _chunkEI3PUSCCjs = require('./chunk-EI3PUSCC.js');
110
110
 
111
111
 
112
- var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
112
+ var _chunkLPWSHG6Ojs = require('./chunk-LPWSHG6O.js');
113
113
 
114
114
 
115
115
 
@@ -277,4 +277,4 @@ require('./chunk-3GQAWCBQ.js');
277
277
 
278
278
 
279
279
 
280
- exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunk45GU4HW2js.LARGE_BUFFER; exports.LOCK_FILES = _chunkPY52QA2Rjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPY52QA2Rjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPY52QA2Rjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPY52QA2Rjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPY52QA2Rjs.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 = _chunkPY52QA2Rjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPY52QA2Rjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkBWFTYFWMjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkDIPIPI7Hjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkIR6D2ZXAjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkCZJZJQ6Djs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkMBCXSLG7js.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkK7MNWUOYjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkYCJU7YTLjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunkEI3PUSCCjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkFBLF4KJFjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkXW4IO5F6js.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunk7YRW5HNXjs.formatProjectTag; exports.getLockFileDependencies = _chunkPY52QA2Rjs.getLockFileDependencies; exports.getLockFileName = _chunkPY52QA2Rjs.getLockFileName; exports.getLockFileNodes = _chunkPY52QA2Rjs.getLockFileNodes; exports.getOutputPath = _chunkFBLF4KJFjs.getOutputPath; exports.getPackageInfo = _chunk7AXFMX2Tjs.getPackageInfo; exports.getProjectConfiguration = _chunkZPWY4RXHjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkZPWY4RXHjs.getProjectConfigurations; 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 = _chunkPY52QA2Rjs.lockFileExists; exports.modifyCargoNestedTable = _chunkZMFVKBRMjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkZMFVKBRMjs.modifyCargoTable; exports.neutralLibraryGeneratorFn = _chunkLPWSHG6Ojs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkAXC2MN2Tjs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkFBLF4KJFjs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.parseCargoToml = _chunkZMFVKBRMjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkZMFVKBRMjs.parseCargoTomlWithTree; exports.pnpmCatalogUpdate = _chunkINAG73GEjs.pnpmCatalogUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkPHWTI5FAjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkX5FFOC7Vjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunk3O66TDXLjs.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 = _chunkZHQOK3NFjs.tsdownExecutorFn; exports.tsupVersion = _chunkHI4G4OOGjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkFBLF4KJFjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunk2EGD2QSNjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunkZFIZ5Q46js.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunkAP62YOGHjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunk6NIVQXVHjs.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunk72H4B5NBjs.withRunExecutor; exports.withRunGenerator = _chunkCXLDWFA3js.withRunGenerator;
280
+ exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunk45GU4HW2js.LARGE_BUFFER; exports.LOCK_FILES = _chunkPY52QA2Rjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPY52QA2Rjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPY52QA2Rjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPY52QA2Rjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPY52QA2Rjs.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 = _chunkPY52QA2Rjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPY52QA2Rjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkBWFTYFWMjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkDIPIPI7Hjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkIR6D2ZXAjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkCZJZJQ6Djs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkMBCXSLG7js.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkK7MNWUOYjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkYCJU7YTLjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunkEI3PUSCCjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkFBLF4KJFjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkRQVECOZCjs.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunk7YRW5HNXjs.formatProjectTag; exports.getLockFileDependencies = _chunkPY52QA2Rjs.getLockFileDependencies; exports.getLockFileName = _chunkPY52QA2Rjs.getLockFileName; exports.getLockFileNodes = _chunkPY52QA2Rjs.getLockFileNodes; exports.getOutputPath = _chunkFBLF4KJFjs.getOutputPath; exports.getPackageInfo = _chunk7AXFMX2Tjs.getPackageInfo; exports.getProjectConfiguration = _chunkZPWY4RXHjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkZPWY4RXHjs.getProjectConfigurations; 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 = _chunkPY52QA2Rjs.lockFileExists; exports.modifyCargoNestedTable = _chunkZMFVKBRMjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkZMFVKBRMjs.modifyCargoTable; exports.neutralLibraryGeneratorFn = _chunkLPWSHG6Ojs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkAXC2MN2Tjs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkFBLF4KJFjs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.parseCargoToml = _chunkZMFVKBRMjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkZMFVKBRMjs.parseCargoTomlWithTree; exports.pnpmCatalogUpdate = _chunkINAG73GEjs.pnpmCatalogUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkPHWTI5FAjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkX5FFOC7Vjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunk3O66TDXLjs.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 = _chunkWKSXKBPTjs.tsdownExecutorFn; exports.tsupVersion = _chunkHI4G4OOGjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkFBLF4KJFjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunk2EGD2QSNjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunkZFIZ5Q46js.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunkAP62YOGHjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkLD5QCANEjs.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunk72H4B5NBjs.withRunExecutor; exports.withRunGenerator = _chunkCXLDWFA3js.withRunGenerator;
package/dist/index.mjs CHANGED
@@ -39,7 +39,7 @@ import {
39
39
  import "./chunk-V7YZ3666.mjs";
40
40
  import {
41
41
  unbuildExecutorFn
42
- } from "./chunk-JAWTCSKA.mjs";
42
+ } from "./chunk-MYOY5MK7.mjs";
43
43
  import {
44
44
  LARGE_BUFFER
45
45
  } from "./chunk-PS2NPPRM.mjs";
@@ -48,7 +48,7 @@ import {
48
48
  } from "./chunk-MPOEEZVK.mjs";
49
49
  import {
50
50
  tsdownExecutorFn
51
- } from "./chunk-RMRYTZQJ.mjs";
51
+ } from "./chunk-IAW5BNS4.mjs";
52
52
  import {
53
53
  typiaExecutorFn
54
54
  } from "./chunk-H3UJL3I6.mjs";
@@ -60,8 +60,8 @@ import {
60
60
  } from "./chunk-6ZQ3QYXH.mjs";
61
61
  import {
62
62
  esbuildExecutorFn
63
- } from "./chunk-HLPAP24L.mjs";
64
- import "./chunk-55PB3HGB.mjs";
63
+ } from "./chunk-XKR7HI4E.mjs";
64
+ import "./chunk-GFOMWTSR.mjs";
65
65
  import {
66
66
  cargoBuildExecutor
67
67
  } from "./chunk-BCM66MXI.mjs";
@@ -90,8 +90,8 @@ import {
90
90
  } from "./chunk-QZHIWK5Z.mjs";
91
91
  import "./chunk-RLIZVCIN.mjs";
92
92
  import {
93
- neutralLibraryGeneratorFn
94
- } from "./chunk-PE2DD2SV.mjs";
93
+ initGenerator
94
+ } from "./chunk-J5SXKBBU.mjs";
95
95
  import {
96
96
  nodeLibraryGeneratorFn
97
97
  } from "./chunk-A5H74FJO.mjs";
@@ -108,8 +108,8 @@ import {
108
108
  configSchemaGeneratorFn
109
109
  } from "./chunk-357OS575.mjs";
110
110
  import {
111
- initGenerator
112
- } from "./chunk-J5SXKBBU.mjs";
111
+ neutralLibraryGeneratorFn
112
+ } from "./chunk-PE2DD2SV.mjs";
113
113
  import {
114
114
  createProjectTsConfigJson,
115
115
  getOutputPath,
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkXW4IO5F6js = require('../../../chunk-XW4IO5F6.js');
5
- require('../../../chunk-3SXUH27J.js');
4
+ var _chunkRQVECOZCjs = require('../../../chunk-RQVECOZC.js');
5
+ require('../../../chunk-22DNWOG2.js');
6
6
  require('../../../chunk-72H4B5NB.js');
7
7
  require('../../../chunk-BWFTYFWM.js');
8
8
  require('../../../chunk-5CPYNJT2.js');
@@ -13,4 +13,4 @@ require('../../../chunk-3GQAWCBQ.js');
13
13
 
14
14
 
15
15
 
16
- exports.default = _chunkXW4IO5F6js.executor_default; exports.esbuildExecutorFn = _chunkXW4IO5F6js.esbuildExecutorFn;
16
+ exports.default = _chunkRQVECOZCjs.executor_default; exports.esbuildExecutorFn = _chunkRQVECOZCjs.esbuildExecutorFn;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  esbuildExecutorFn,
3
3
  executor_default
4
- } from "../../../chunk-HLPAP24L.mjs";
5
- import "../../../chunk-55PB3HGB.mjs";
4
+ } from "../../../chunk-XKR7HI4E.mjs";
5
+ import "../../../chunk-GFOMWTSR.mjs";
6
6
  import "../../../chunk-J4POXWGW.mjs";
7
7
  import "../../../chunk-FFBZYD6R.mjs";
8
8
  import "../../../chunk-NDDXQD7R.mjs";
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkZHQOK3NFjs = require('../../../chunk-ZHQOK3NF.js');
5
- require('../../../chunk-3SXUH27J.js');
4
+ var _chunkWKSXKBPTjs = require('../../../chunk-WKSXKBPT.js');
5
+ require('../../../chunk-22DNWOG2.js');
6
6
  require('../../../chunk-72H4B5NB.js');
7
7
  require('../../../chunk-BWFTYFWM.js');
8
8
  require('../../../chunk-5CPYNJT2.js');
@@ -13,4 +13,4 @@ require('../../../chunk-3GQAWCBQ.js');
13
13
 
14
14
 
15
15
 
16
- exports.default = _chunkZHQOK3NFjs.executor_default; exports.tsdownExecutorFn = _chunkZHQOK3NFjs.tsdownExecutorFn;
16
+ exports.default = _chunkWKSXKBPTjs.executor_default; exports.tsdownExecutorFn = _chunkWKSXKBPTjs.tsdownExecutorFn;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  executor_default,
3
3
  tsdownExecutorFn
4
- } from "../../../chunk-RMRYTZQJ.mjs";
5
- import "../../../chunk-55PB3HGB.mjs";
4
+ } from "../../../chunk-IAW5BNS4.mjs";
5
+ import "../../../chunk-GFOMWTSR.mjs";
6
6
  import "../../../chunk-J4POXWGW.mjs";
7
7
  import "../../../chunk-FFBZYD6R.mjs";
8
8
  import "../../../chunk-NDDXQD7R.mjs";
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunk6NIVQXVHjs = require('../../../chunk-6NIVQXVH.js');
5
- require('../../../chunk-3SXUH27J.js');
4
+ var _chunkLD5QCANEjs = require('../../../chunk-LD5QCANE.js');
5
+ require('../../../chunk-22DNWOG2.js');
6
6
  require('../../../chunk-72H4B5NB.js');
7
7
  require('../../../chunk-BWFTYFWM.js');
8
8
  require('../../../chunk-5CPYNJT2.js');
@@ -13,4 +13,4 @@ require('../../../chunk-3GQAWCBQ.js');
13
13
 
14
14
 
15
15
 
16
- exports.default = _chunk6NIVQXVHjs.executor_default; exports.unbuildExecutorFn = _chunk6NIVQXVHjs.unbuildExecutorFn;
16
+ exports.default = _chunkLD5QCANEjs.executor_default; exports.unbuildExecutorFn = _chunkLD5QCANEjs.unbuildExecutorFn;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  executor_default,
3
3
  unbuildExecutorFn
4
- } from "../../../chunk-JAWTCSKA.mjs";
5
- import "../../../chunk-55PB3HGB.mjs";
4
+ } from "../../../chunk-MYOY5MK7.mjs";
5
+ import "../../../chunk-GFOMWTSR.mjs";
6
6
  import "../../../chunk-J4POXWGW.mjs";
7
7
  import "../../../chunk-FFBZYD6R.mjs";
8
8
  import "../../../chunk-NDDXQD7R.mjs";
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@storm-software/workspace-tools","version":"1.230.1","description":"Tools for managing a Storm workspace, including various Nx generators and executors for common development tasks.","repository":{"type":"github","url":"https://github.com/storm-software/storm-ops","directory":"packages/workspace-tools"},"homepage":"https://stormsoftware.com","bugs":"https://github.com/storm-software/storm-ops/issues","author":{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"},"license":"Apache-2.0","private":false,"main":"dist/index.js","module":"dist/index.mjs","exports":{"./package.json":"./package.json","./config/nx-default.json":"./config/nx-default.json","./config/nx-cloud.json":"./config/nx-cloud.json","./assets/cjs_shims":"./assets/cjs_shims.js","./assets/esm_shims":"./assets/esm_shims.js","./docs/*":"./docs/*","./migrations.json":"./migrations.json","./executors.json":"./executors.json","./executors/*/schema.json":"./dist/src/executors/*/schema.json","./generators.json":"./generators.json","./generators/*/schema.json":"./dist/src/generators/*/schema.json",".":{"import":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"default":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./index":{"import":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"default":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./executors":{"import":{"types":"./dist/executors.d.mts","default":"./dist/executors.mjs"},"require":{"types":"./dist/executors.d.ts","default":"./dist/executors.js"},"default":{"types":"./dist/executors.d.ts","default":"./dist/executors.js"}},"./generators":{"import":{"types":"./dist/generators.d.mts","default":"./dist/generators.mjs"},"require":{"types":"./dist/generators.d.ts","default":"./dist/generators.js"},"default":{"types":"./dist/generators.d.ts","default":"./dist/generators.js"}},"./types":{"import":{"types":"./dist/src/types.d.mts","default":"./dist/src/types.mjs"},"require":{"types":"./dist/src/types.d.ts","default":"./dist/src/types.js"},"default":{"types":"./dist/src/types.d.ts","default":"./dist/src/types.js"}},"./utils":{"import":{"types":"./dist/src/utils/index.d.mts","default":"./dist/src/utils/index.mjs"},"require":{"types":"./dist/src/utils/index.d.ts","default":"./dist/src/utils/index.js"},"default":{"types":"./dist/src/utils/index.d.ts","default":"./dist/src/utils/index.js"}},"./utils/*":{"import":{"types":"./dist/src/utils/*.d.mts","default":"./dist/src/utils/*.mjs"},"require":{"types":"./dist/src/utils/*.d.ts","default":"./dist/src/utils/*.js"},"default":{"types":"./dist/src/utils/*.d.ts","default":"./dist/src/utils/*.js"}},"./base":{"import":{"types":"./dist/src/base/index.d.mts","default":"./dist/src/base/index.mjs"},"require":{"types":"./dist/src/base/index.d.ts","default":"./dist/src/base/index.js"},"default":{"types":"./dist/src/base/index.d.ts","default":"./dist/src/base/index.js"}},"./base/*":{"import":{"types":"./dist/src/base/*.d.mts","default":"./dist/src/base/*.mjs"},"require":{"types":"./dist/src/base/*.d.ts","default":"./dist/src/base/*.js"},"default":{"types":"./dist/src/base/*.d.ts","default":"./dist/src/base/*.js"}},"./executors/*/executor.js":"./dist/src/executors/*/executor.js","./generators/*/generator.js":"./dist/src/generators/*/generator.js","./generators/*/init.js":"./dist/src/generators/*/init.js","./preset":"./dist/src/generators/preset/generator.js","./plugins/rust":"./dist/src/plugins/rust/index.js","./plugins/typescript":"./dist/src/plugins/typescript/index.js","./plugins/typescript/tsup":"./dist/src/plugins/typescript/tsup.js","./plugins/typescript/tsdown":"./dist/src/plugins/typescript/tsdown.js"},"typings":"dist/index.d.ts","keywords":["monorepo","nx","storm-software","storm-ops","storm","sullivanpj"],"peerDependencies":{"@microsoft/api-extractor":"^7.48.1","@nx/devkit":"^20.3.1","@samchon/openapi":"^2.3.0","nx":"^20.3.1","typescript":"^5.7.2","typia":"^7.5.0"},"peerDependenciesMeta":{"@microsoft/api-extractor":{"optional":true},"@nx/devkit":{"optional":false},"@samchon/openapi":{"optional":true},"nx":{"optional":false},"typescript":{"optional":false},"typia":{"optional":true}},"dependencies":{"@ltd/j-toml":"1.38.0","@nx/devkit":"^20.3.1","@size-limit/esbuild":"11.1.4","@size-limit/esbuild-why":"11.1.4","@size-limit/file":"11.1.4","deep-clone":"4.0.0","defu":"6.1.4","fs-extra":"11.2.0","glob":"^10.4.2","micromatch":"4.0.7","pkg-types":"^1.1.1","prettier":"^3.3.3","prettier-plugin-packagejson":"2.5.0","read-yaml-file":"2.1.0","semver":"7.6.2","size-limit":"11.1.4","zod":"^3.24.0","zod-to-json-schema":"3.23.1"},"devDependencies":{"@microsoft/api-extractor":"^7.48.1","@nx/esbuild":"^20.3.1","@types/micromatch":"4.0.9","@types/node":"^22.10.2","@types/semver":"7.5.8","nx":"^20.3.1","tsup":"8.3.5","typescript":"^5.7.2","typia":"^7.5.0","untyped":"^1.5.2"},"publishConfig":{"access":"public"},"executors":"./executors.json","generators":"./generators.json"}
1
+ {"name":"@storm-software/workspace-tools","version":"1.232.0","description":"Tools for managing a Storm workspace, including various Nx generators and executors for common development tasks.","repository":{"type":"github","url":"https://github.com/storm-software/storm-ops","directory":"packages/workspace-tools"},"homepage":"https://stormsoftware.com","bugs":"https://github.com/storm-software/storm-ops/issues","author":{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"},"license":"Apache-2.0","private":false,"main":"dist/index.js","module":"dist/index.mjs","exports":{"./package.json":"./package.json","./config/nx-default.json":"./config/nx-default.json","./config/nx-cloud.json":"./config/nx-cloud.json","./assets/cjs_shims":"./assets/cjs_shims.js","./assets/esm_shims":"./assets/esm_shims.js","./docs/*":"./docs/*","./migrations.json":"./migrations.json","./executors.json":"./executors.json","./executors/*/schema.json":"./dist/src/executors/*/schema.json","./generators.json":"./generators.json","./generators/*/schema.json":"./dist/src/generators/*/schema.json",".":{"import":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"default":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./index":{"import":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"default":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./executors":{"import":{"types":"./dist/executors.d.mts","default":"./dist/executors.mjs"},"require":{"types":"./dist/executors.d.ts","default":"./dist/executors.js"},"default":{"types":"./dist/executors.d.ts","default":"./dist/executors.js"}},"./generators":{"import":{"types":"./dist/generators.d.mts","default":"./dist/generators.mjs"},"require":{"types":"./dist/generators.d.ts","default":"./dist/generators.js"},"default":{"types":"./dist/generators.d.ts","default":"./dist/generators.js"}},"./types":{"import":{"types":"./dist/src/types.d.mts","default":"./dist/src/types.mjs"},"require":{"types":"./dist/src/types.d.ts","default":"./dist/src/types.js"},"default":{"types":"./dist/src/types.d.ts","default":"./dist/src/types.js"}},"./utils":{"import":{"types":"./dist/src/utils/index.d.mts","default":"./dist/src/utils/index.mjs"},"require":{"types":"./dist/src/utils/index.d.ts","default":"./dist/src/utils/index.js"},"default":{"types":"./dist/src/utils/index.d.ts","default":"./dist/src/utils/index.js"}},"./utils/*":{"import":{"types":"./dist/src/utils/*.d.mts","default":"./dist/src/utils/*.mjs"},"require":{"types":"./dist/src/utils/*.d.ts","default":"./dist/src/utils/*.js"},"default":{"types":"./dist/src/utils/*.d.ts","default":"./dist/src/utils/*.js"}},"./base":{"import":{"types":"./dist/src/base/index.d.mts","default":"./dist/src/base/index.mjs"},"require":{"types":"./dist/src/base/index.d.ts","default":"./dist/src/base/index.js"},"default":{"types":"./dist/src/base/index.d.ts","default":"./dist/src/base/index.js"}},"./base/*":{"import":{"types":"./dist/src/base/*.d.mts","default":"./dist/src/base/*.mjs"},"require":{"types":"./dist/src/base/*.d.ts","default":"./dist/src/base/*.js"},"default":{"types":"./dist/src/base/*.d.ts","default":"./dist/src/base/*.js"}},"./executors/*/executor.js":"./dist/src/executors/*/executor.js","./generators/*/generator.js":"./dist/src/generators/*/generator.js","./generators/*/init.js":"./dist/src/generators/*/init.js","./preset":"./dist/src/generators/preset/generator.js","./plugins/rust":"./dist/src/plugins/rust/index.js","./plugins/typescript":"./dist/src/plugins/typescript/index.js","./plugins/typescript/tsup":"./dist/src/plugins/typescript/tsup.js","./plugins/typescript/tsdown":"./dist/src/plugins/typescript/tsdown.js"},"typings":"dist/index.d.ts","keywords":["monorepo","nx","storm-software","storm-ops","storm","sullivanpj"],"peerDependencies":{"@microsoft/api-extractor":"^7.48.1","@nx/devkit":"^20.3.1","@samchon/openapi":"^2.3.0","@storm-software/esbuild":"workspace:*","@storm-software/tsdown":"workspace:*","@storm-software/unbuild":"workspace:*","nx":"^20.3.1","typescript":"^5.7.2","typia":"^7.5.0"},"peerDependenciesMeta":{"@microsoft/api-extractor":{"optional":true},"@nx/devkit":{"optional":false},"@samchon/openapi":{"optional":true},"@storm-software/esbuild":{"optional":true},"@storm-software/tsdown":{"optional":true},"@storm-software/unbuild":{"optional":true},"nx":{"optional":false},"typescript":{"optional":false},"typia":{"optional":true}},"dependencies":{"@ltd/j-toml":"1.38.0","@nx/devkit":"^20.3.1","@size-limit/esbuild":"11.1.4","@size-limit/esbuild-why":"11.1.4","@size-limit/file":"11.1.4","deep-clone":"4.0.0","defu":"6.1.4","fs-extra":"11.2.0","glob":"^10.4.2","micromatch":"4.0.7","pkg-types":"^1.1.1","prettier":"^3.3.3","prettier-plugin-packagejson":"2.5.0","read-yaml-file":"2.1.0","semver":"7.6.2","size-limit":"11.1.4","zod":"^3.24.0","zod-to-json-schema":"3.23.1"},"devDependencies":{"@microsoft/api-extractor":"^7.48.1","@nx/esbuild":"^20.3.1","@storm-software/esbuild":"workspace:*","@storm-software/tsdown":"workspace:*","@storm-software/unbuild":"workspace:*","@types/micromatch":"4.0.9","@types/node":"^22.10.2","@types/semver":"7.5.8","nx":"^20.3.1","tsup":"8.3.5","typescript":"^5.7.2","typia":"^7.5.0","untyped":"^1.5.2"},"publishConfig":{"access":"public"},"executors":"./executors.json","generators":"./generators.json"}