@storm-software/workspace-tools 1.264.24 → 1.264.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  # Changelog for Storm Ops - Workspace Tools
4
4
 
5
+ ## [1.264.25](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.264.25) (2025-04-07)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Regenerate README markdown files
10
+ ([1ac4c6ad4](https://github.com/storm-software/storm-ops/commit/1ac4c6ad4))
11
+
5
12
  ## [1.264.24](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.264.24) (2025-04-04)
6
13
 
7
14
  ### Miscellaneous
package/README.md CHANGED
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
21
21
 
22
22
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
23
23
 
24
- [![Version](https://img.shields.io/badge/version-1.264.23-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.264.24-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 -->
@@ -238,57 +238,6 @@ var run = /* @__PURE__ */ __name((config, command, cwd = config.workspaceRoot ??
238
238
 
239
239
  // ../build-tools/src/utilities/get-entry-points.ts
240
240
  import { glob as glob2 } from "glob";
241
- var getEntryPoints = /* @__PURE__ */ __name(async (config, projectRoot, sourceRoot, entry, emitOnAll = false) => {
242
- const workspaceRoot = config.workspaceRoot || findWorkspaceRoot();
243
- const entryPoints = [];
244
- if (entry) {
245
- if (typeof entry === "string") {
246
- entryPoints.push(entry);
247
- } else if (Array.isArray(entry)) {
248
- entryPoints.push(...entry);
249
- } else {
250
- entryPoints.push(...Object.values(entry));
251
- }
252
- }
253
- if (emitOnAll) {
254
- entryPoints.push(joinPaths(workspaceRoot, sourceRoot || projectRoot, "**/*.{ts,tsx}"));
255
- }
256
- const results = await Promise.all(entryPoints.map(async (entryPoint) => {
257
- const paths = [];
258
- if (entryPoint.includes("*")) {
259
- const files = await glob2(entryPoint, {
260
- withFileTypes: true,
261
- ignore: [
262
- "**/node_modules/**"
263
- ]
264
- });
265
- paths.push(...files.reduce((ret, filePath) => {
266
- const result = correctPaths(joinPaths(filePath.path, filePath.name).replaceAll(correctPaths(workspaceRoot), "").replaceAll(correctPaths(projectRoot), ""));
267
- if (result) {
268
- writeDebug(`Trying to add entry point ${result} at "${joinPaths(filePath.path, filePath.name)}"`, config);
269
- if (!paths.includes(result)) {
270
- paths.push(result);
271
- }
272
- }
273
- return ret;
274
- }, []));
275
- } else {
276
- writeDebug(`Trying to add entry point ${entryPoint}"`, config);
277
- if (!paths.includes(entryPoint)) {
278
- paths.push(entryPoint);
279
- }
280
- }
281
- return paths;
282
- }));
283
- return results.filter(Boolean).reduce((ret, result) => {
284
- result.forEach((res) => {
285
- if (res && !ret.includes(res)) {
286
- ret.push(res);
287
- }
288
- });
289
- return ret;
290
- }, []);
291
- }, "getEntryPoints");
292
241
 
293
242
  // ../build-tools/src/utilities/get-env.ts
294
243
  var getEnv = /* @__PURE__ */ __name((builder, options) => {
@@ -712,10 +661,10 @@ var tscPlugin = /* @__PURE__ */ __name((options, resolvedOptions) => ({
712
661
  if (process.env.WATCH !== "true" && process.env.DEV !== "true") {
713
662
  await run(resolvedOptions.config, `pnpm exec tsc --project ${resolvedOptions.tsconfig}`, resolvedOptions.config.workspaceRoot);
714
663
  }
715
- if (resolvedOptions.bundle && resolvedOptions.entryPoints && resolvedOptions.entryPoints.length > 0 && resolvedOptions.entryPoints[0] && resolvedOptions.entryPoints[0].endsWith(".ts")) {
664
+ if (resolvedOptions.bundle && resolvedOptions.entryPoints && resolvedOptions.entryPoints.length > 0 && resolvedOptions.entryPoints[0]?.in && resolvedOptions.entryPoints[0].in.endsWith(".ts")) {
716
665
  const sourceRoot = resolvedOptions.sourceRoot.replaceAll(resolvedOptions.projectRoot, "");
717
666
  const typeOutDir = resolvedOptions.outdir;
718
- const entryPoint = resolvedOptions.entryPoints[0].replace(sourceRoot, "").replace(/\.ts$/, "");
667
+ const entryPoint = resolvedOptions.entryPoints[0].in.replace(sourceRoot, "").replace(/\.ts$/, "");
719
668
  const bundlePath = joinPaths(resolvedOptions.outdir, entryPoint);
720
669
  let dtsPath;
721
670
  if (existsSync3(joinPaths(resolvedOptions.config.workspaceRoot, typeOutDir, `${entryPoint}.d.ts`))) {
@@ -906,6 +855,84 @@ var shebangRenderer = {
906
855
  }
907
856
  };
908
857
 
858
+ // ../esbuild/src/utilities/get-entry-points.ts
859
+ import { glob as glob3 } from "glob";
860
+ var getEntryPoints = /* @__PURE__ */ __name(async (config, projectRoot, sourceRoot, entry, emitOnAll = false) => {
861
+ const workspaceRoot = config.workspaceRoot || findWorkspaceRoot();
862
+ const entryPoints = [];
863
+ if (entry) {
864
+ if (typeof entry === "string") {
865
+ entryPoints.push({
866
+ in: entry,
867
+ out: entry
868
+ });
869
+ } else if (Array.isArray(entry)) {
870
+ entryPoints.push(...entry.map((entry2) => ({
871
+ in: entry2,
872
+ out: entry2
873
+ })));
874
+ } else {
875
+ entryPoints.push(...Object.entries(entry).map(([key, value]) => {
876
+ if (typeof value === "string") {
877
+ return {
878
+ in: key,
879
+ out: value
880
+ };
881
+ } else {
882
+ return {
883
+ in: key,
884
+ out: key
885
+ };
886
+ }
887
+ }));
888
+ }
889
+ }
890
+ if (emitOnAll) {
891
+ entryPoints.push({
892
+ in: joinPaths(workspaceRoot, sourceRoot || projectRoot, "**/*.{ts,tsx}"),
893
+ out: joinPaths(workspaceRoot, sourceRoot || projectRoot, "**/*.{ts,tsx}")
894
+ });
895
+ }
896
+ const results = await Promise.all(entryPoints.map(async (entryPoint) => {
897
+ const paths = [];
898
+ if (entryPoint.in.includes("*")) {
899
+ const files = await glob3(entryPoint.in, {
900
+ withFileTypes: true,
901
+ ignore: [
902
+ "**/node_modules/**"
903
+ ]
904
+ });
905
+ paths.push(...files.reduce((ret, filePath) => {
906
+ const result = correctPaths(joinPaths(filePath.path, filePath.name).replaceAll(correctPaths(workspaceRoot), "").replaceAll(correctPaths(projectRoot), ""));
907
+ if (result) {
908
+ writeDebug(`Trying to add entry point ${result} at "${joinPaths(filePath.path, filePath.name)}"`, config);
909
+ if (!paths.some((p) => p.in === result)) {
910
+ paths.push({
911
+ in: result,
912
+ out: entryPoint.out.replace(entryPoint.in, result)
913
+ });
914
+ }
915
+ }
916
+ return ret;
917
+ }, []));
918
+ } else {
919
+ writeDebug(`Trying to add entry point ${entryPoint}"`, config);
920
+ if (!paths.some((p) => p.in === entryPoint.in)) {
921
+ paths.push(entryPoint);
922
+ }
923
+ }
924
+ return paths;
925
+ }));
926
+ return results.filter(Boolean).reduce((ret, result) => {
927
+ result.forEach((res) => {
928
+ if (res && !ret.some((p) => p.in === res.in)) {
929
+ ret.push(res);
930
+ }
931
+ });
932
+ return ret;
933
+ }, []);
934
+ }, "getEntryPoints");
935
+
909
936
  // ../esbuild/src/utilities/helpers.ts
910
937
  function handleSync(fn) {
911
938
  try {
@@ -1100,19 +1127,13 @@ async function generatePackageJson(context2) {
1100
1127
  packageJson.exports ??= {};
1101
1128
  packageJson.exports["./package.json"] ??= "./package.json";
1102
1129
  packageJson.exports["."] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js`;
1103
- let entryPoints = [
1130
+ const entryPoints = [
1104
1131
  {
1105
1132
  in: "./src/index.ts",
1106
1133
  out: "./src/index.ts"
1107
1134
  }
1108
1135
  ];
1109
1136
  if (context2.options.entryPoints) {
1110
- if (Array.isArray(context2.options.entryPoints)) {
1111
- entryPoints = context2.options.entryPoints.map((entryPoint) => typeof entryPoint === "string" ? {
1112
- in: entryPoint,
1113
- out: correctPaths(entryPoint.replaceAll(correctPaths(context2.options.config.workspaceRoot), "").replaceAll(correctPaths(context2.options.projectRoot), ""))
1114
- } : entryPoint);
1115
- }
1116
1137
  for (const entryPoint of entryPoints) {
1117
1138
  const split = entryPoint.out.split(".");
1118
1139
  split.pop();
@@ -237,57 +237,6 @@ var run = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (config, command,
237
237
 
238
238
  // ../build-tools/src/utilities/get-entry-points.ts
239
239
 
240
- var getEntryPoints = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (config, projectRoot, sourceRoot, entry, emitOnAll = false) => {
241
- const workspaceRoot = config.workspaceRoot || _chunk4JOIS7WWjs.findWorkspaceRoot.call(void 0, );
242
- const entryPoints = [];
243
- if (entry) {
244
- if (typeof entry === "string") {
245
- entryPoints.push(entry);
246
- } else if (Array.isArray(entry)) {
247
- entryPoints.push(...entry);
248
- } else {
249
- entryPoints.push(...Object.values(entry));
250
- }
251
- }
252
- if (emitOnAll) {
253
- entryPoints.push(_chunkJTAXCQX6js.joinPaths.call(void 0, workspaceRoot, sourceRoot || projectRoot, "**/*.{ts,tsx}"));
254
- }
255
- const results = await Promise.all(entryPoints.map(async (entryPoint) => {
256
- const paths = [];
257
- if (entryPoint.includes("*")) {
258
- const files = await _glob.glob.call(void 0, entryPoint, {
259
- withFileTypes: true,
260
- ignore: [
261
- "**/node_modules/**"
262
- ]
263
- });
264
- paths.push(...files.reduce((ret, filePath) => {
265
- const result = _chunkJTAXCQX6js.correctPaths.call(void 0, _chunkJTAXCQX6js.joinPaths.call(void 0, filePath.path, filePath.name).replaceAll(_chunkJTAXCQX6js.correctPaths.call(void 0, workspaceRoot), "").replaceAll(_chunkJTAXCQX6js.correctPaths.call(void 0, projectRoot), ""));
266
- if (result) {
267
- _chunkSKMT7WD5js.writeDebug.call(void 0, `Trying to add entry point ${result} at "${_chunkJTAXCQX6js.joinPaths.call(void 0, filePath.path, filePath.name)}"`, config);
268
- if (!paths.includes(result)) {
269
- paths.push(result);
270
- }
271
- }
272
- return ret;
273
- }, []));
274
- } else {
275
- _chunkSKMT7WD5js.writeDebug.call(void 0, `Trying to add entry point ${entryPoint}"`, config);
276
- if (!paths.includes(entryPoint)) {
277
- paths.push(entryPoint);
278
- }
279
- }
280
- return paths;
281
- }));
282
- return results.filter(Boolean).reduce((ret, result) => {
283
- result.forEach((res) => {
284
- if (res && !ret.includes(res)) {
285
- ret.push(res);
286
- }
287
- });
288
- return ret;
289
- }, []);
290
- }, "getEntryPoints");
291
240
 
292
241
  // ../build-tools/src/utilities/get-env.ts
293
242
  var getEnv = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (builder, options) => {
@@ -711,10 +660,10 @@ var tscPlugin = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (options, r
711
660
  if (process.env.WATCH !== "true" && process.env.DEV !== "true") {
712
661
  await run(resolvedOptions.config, `pnpm exec tsc --project ${resolvedOptions.tsconfig}`, resolvedOptions.config.workspaceRoot);
713
662
  }
714
- if (resolvedOptions.bundle && resolvedOptions.entryPoints && resolvedOptions.entryPoints.length > 0 && resolvedOptions.entryPoints[0] && resolvedOptions.entryPoints[0].endsWith(".ts")) {
663
+ if (resolvedOptions.bundle && resolvedOptions.entryPoints && resolvedOptions.entryPoints.length > 0 && _optionalChain([resolvedOptions, 'access', _41 => _41.entryPoints, 'access', _42 => _42[0], 'optionalAccess', _43 => _43.in]) && resolvedOptions.entryPoints[0].in.endsWith(".ts")) {
715
664
  const sourceRoot = resolvedOptions.sourceRoot.replaceAll(resolvedOptions.projectRoot, "");
716
665
  const typeOutDir = resolvedOptions.outdir;
717
- const entryPoint = resolvedOptions.entryPoints[0].replace(sourceRoot, "").replace(/\.ts$/, "");
666
+ const entryPoint = resolvedOptions.entryPoints[0].in.replace(sourceRoot, "").replace(/\.ts$/, "");
718
667
  const bundlePath = _chunkJTAXCQX6js.joinPaths.call(void 0, resolvedOptions.outdir, entryPoint);
719
668
  let dtsPath;
720
669
  if (_fs.existsSync.call(void 0, _chunkJTAXCQX6js.joinPaths.call(void 0, resolvedOptions.config.workspaceRoot, typeOutDir, `${entryPoint}.d.ts`))) {
@@ -737,7 +686,7 @@ var tscPlugin = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (options, r
737
686
  function getTypeDependencyPackageName(npmPackage) {
738
687
  if (npmPackage.startsWith("@")) {
739
688
  const [scope, name] = npmPackage.split("/");
740
- return `@types/${_optionalChain([scope, 'optionalAccess', _41 => _41.slice, 'call', _42 => _42(1)])}__${name}`;
689
+ return `@types/${_optionalChain([scope, 'optionalAccess', _44 => _44.slice, 'call', _45 => _45(1)])}__${name}`;
741
690
  }
742
691
  return `@types/${npmPackage}`;
743
692
  }
@@ -905,6 +854,84 @@ var shebangRenderer = {
905
854
  }
906
855
  };
907
856
 
857
+ // ../esbuild/src/utilities/get-entry-points.ts
858
+
859
+ var getEntryPoints = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (config, projectRoot, sourceRoot, entry, emitOnAll = false) => {
860
+ const workspaceRoot = config.workspaceRoot || _chunk4JOIS7WWjs.findWorkspaceRoot.call(void 0, );
861
+ const entryPoints = [];
862
+ if (entry) {
863
+ if (typeof entry === "string") {
864
+ entryPoints.push({
865
+ in: entry,
866
+ out: entry
867
+ });
868
+ } else if (Array.isArray(entry)) {
869
+ entryPoints.push(...entry.map((entry2) => ({
870
+ in: entry2,
871
+ out: entry2
872
+ })));
873
+ } else {
874
+ entryPoints.push(...Object.entries(entry).map(([key, value]) => {
875
+ if (typeof value === "string") {
876
+ return {
877
+ in: key,
878
+ out: value
879
+ };
880
+ } else {
881
+ return {
882
+ in: key,
883
+ out: key
884
+ };
885
+ }
886
+ }));
887
+ }
888
+ }
889
+ if (emitOnAll) {
890
+ entryPoints.push({
891
+ in: _chunkJTAXCQX6js.joinPaths.call(void 0, workspaceRoot, sourceRoot || projectRoot, "**/*.{ts,tsx}"),
892
+ out: _chunkJTAXCQX6js.joinPaths.call(void 0, workspaceRoot, sourceRoot || projectRoot, "**/*.{ts,tsx}")
893
+ });
894
+ }
895
+ const results = await Promise.all(entryPoints.map(async (entryPoint) => {
896
+ const paths = [];
897
+ if (entryPoint.in.includes("*")) {
898
+ const files = await _glob.glob.call(void 0, entryPoint.in, {
899
+ withFileTypes: true,
900
+ ignore: [
901
+ "**/node_modules/**"
902
+ ]
903
+ });
904
+ paths.push(...files.reduce((ret, filePath) => {
905
+ const result = _chunkJTAXCQX6js.correctPaths.call(void 0, _chunkJTAXCQX6js.joinPaths.call(void 0, filePath.path, filePath.name).replaceAll(_chunkJTAXCQX6js.correctPaths.call(void 0, workspaceRoot), "").replaceAll(_chunkJTAXCQX6js.correctPaths.call(void 0, projectRoot), ""));
906
+ if (result) {
907
+ _chunkSKMT7WD5js.writeDebug.call(void 0, `Trying to add entry point ${result} at "${_chunkJTAXCQX6js.joinPaths.call(void 0, filePath.path, filePath.name)}"`, config);
908
+ if (!paths.some((p) => p.in === result)) {
909
+ paths.push({
910
+ in: result,
911
+ out: entryPoint.out.replace(entryPoint.in, result)
912
+ });
913
+ }
914
+ }
915
+ return ret;
916
+ }, []));
917
+ } else {
918
+ _chunkSKMT7WD5js.writeDebug.call(void 0, `Trying to add entry point ${entryPoint}"`, config);
919
+ if (!paths.some((p) => p.in === entryPoint.in)) {
920
+ paths.push(entryPoint);
921
+ }
922
+ }
923
+ return paths;
924
+ }));
925
+ return results.filter(Boolean).reduce((ret, result) => {
926
+ result.forEach((res) => {
927
+ if (res && !ret.some((p) => p.in === res.in)) {
928
+ ret.push(res);
929
+ }
930
+ });
931
+ return ret;
932
+ }, []);
933
+ }, "getEntryPoints");
934
+
908
935
  // ../esbuild/src/utilities/helpers.ts
909
936
  function handleSync(fn) {
910
937
  try {
@@ -953,7 +980,7 @@ function pipeSync(fn, ...fns) {
953
980
  return (...args) => {
954
981
  let result = fn(...args);
955
982
  for (let i = 0; result !== skip && i < fns.length; ++i) {
956
- result = _optionalChain([fns, 'access', _43 => _43[i], 'optionalCall', _44 => _44(result)]);
983
+ result = _optionalChain([fns, 'access', _46 => _46[i], 'optionalCall', _47 => _47(result)]);
957
984
  }
958
985
  return result;
959
986
  };
@@ -963,7 +990,7 @@ function pipeAsync(fn, ...fns) {
963
990
  return async (...args) => {
964
991
  let result = await fn(...args);
965
992
  for (let i = 0; result !== skip && i < fns.length; ++i) {
966
- result = await _optionalChain([fns, 'access', _45 => _45[i], 'optionalCall', _46 => _46(result)]);
993
+ result = await _optionalChain([fns, 'access', _48 => _48[i], 'optionalCall', _49 => _49(result)]);
967
994
  }
968
995
  return result;
969
996
  };
@@ -993,7 +1020,7 @@ var resolveOptions = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
993
1020
  const projectJson = JSON.parse(projectJsonFile);
994
1021
  const projectName = projectJson.name;
995
1022
  const projectConfigurations = _devkit.readProjectsConfigurationFromProjectGraph.call(void 0, projectGraph);
996
- if (!_optionalChain([projectConfigurations, 'optionalAccess', _47 => _47.projects, 'optionalAccess', _48 => _48[projectName]])) {
1023
+ if (!_optionalChain([projectConfigurations, 'optionalAccess', _50 => _50.projects, 'optionalAccess', _51 => _51[projectName]])) {
997
1024
  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.");
998
1025
  }
999
1026
  const options = _defu2.default.call(void 0, userOptions, DEFAULT_BUILD_OPTIONS);
@@ -1099,19 +1126,13 @@ async function generatePackageJson(context2) {
1099
1126
  packageJson.exports ??= {};
1100
1127
  packageJson.exports["./package.json"] ??= "./package.json";
1101
1128
  packageJson.exports["."] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js`;
1102
- let entryPoints = [
1129
+ const entryPoints = [
1103
1130
  {
1104
1131
  in: "./src/index.ts",
1105
1132
  out: "./src/index.ts"
1106
1133
  }
1107
1134
  ];
1108
1135
  if (context2.options.entryPoints) {
1109
- if (Array.isArray(context2.options.entryPoints)) {
1110
- entryPoints = context2.options.entryPoints.map((entryPoint) => typeof entryPoint === "string" ? {
1111
- in: entryPoint,
1112
- out: _chunkJTAXCQX6js.correctPaths.call(void 0, entryPoint.replaceAll(_chunkJTAXCQX6js.correctPaths.call(void 0, context2.options.config.workspaceRoot), "").replaceAll(_chunkJTAXCQX6js.correctPaths.call(void 0, context2.options.projectRoot), ""))
1113
- } : entryPoint);
1114
- }
1115
1136
  for (const entryPoint of entryPoints) {
1116
1137
  const split = entryPoint.out.split(".");
1117
1138
  split.pop();
@@ -1207,7 +1228,7 @@ ${_chunkSKMT7WD5js.formatLogMessage.call(void 0, {
1207
1228
  }
1208
1229
  _chunk3GQAWCBQjs.__name.call(void 0, executeEsBuild, "executeEsBuild");
1209
1230
  async function copyBuildAssets(context2) {
1210
- if (_optionalChain([context2, 'access', _49 => _49.result, 'optionalAccess', _50 => _50.errors, 'access', _51 => _51.length]) === 0) {
1231
+ if (_optionalChain([context2, 'access', _52 => _52.result, 'optionalAccess', _53 => _53.errors, 'access', _54 => _54.length]) === 0) {
1211
1232
  _chunkSKMT7WD5js.writeDebug.call(void 0, ` \u{1F4CB} Copying asset files to output directory: ${context2.options.outdir}`, context2.options.config);
1212
1233
  const stopwatch = _chunkSKMT7WD5js.getStopwatch.call(void 0, `${context2.options.name} asset copy`);
1213
1234
  await copyAssets(context2.options.config, _nullishCoalesce(context2.options.assets, () => ( [])), context2.options.outdir, context2.options.projectRoot, context2.options.sourceRoot, true, false);
@@ -1217,7 +1238,7 @@ async function copyBuildAssets(context2) {
1217
1238
  }
1218
1239
  _chunk3GQAWCBQjs.__name.call(void 0, copyBuildAssets, "copyBuildAssets");
1219
1240
  async function reportResults(context2) {
1220
- if (_optionalChain([context2, 'access', _52 => _52.result, 'optionalAccess', _53 => _53.errors, 'access', _54 => _54.length]) === 0) {
1241
+ if (_optionalChain([context2, 'access', _55 => _55.result, 'optionalAccess', _56 => _56.errors, 'access', _57 => _57.length]) === 0) {
1221
1242
  if (context2.result.warnings.length > 0) {
1222
1243
  _chunkSKMT7WD5js.writeWarning.call(void 0, ` \u{1F6A7} The following warnings occurred during the build: ${context2.result.warnings.map((warning) => warning.text).join("\n")}`, context2.options.config);
1223
1244
  }
@@ -1318,14 +1339,14 @@ var watch = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (context2, opti
1318
1339
  // src/executors/esbuild/executor.ts
1319
1340
  async function esbuildExecutorFn(options, context2, config) {
1320
1341
  _chunkSKMT7WD5js.writeInfo.call(void 0, "\u{1F4E6} Running Storm ESBuild executor on the workspace", config);
1321
- if (!_optionalChain([context2, 'access', _55 => _55.projectsConfigurations, 'optionalAccess', _56 => _56.projects]) || !context2.projectName || !context2.projectsConfigurations.projects[context2.projectName] || !_optionalChain([context2, 'access', _57 => _57.projectsConfigurations, 'access', _58 => _58.projects, 'access', _59 => _59[context2.projectName], 'optionalAccess', _60 => _60.root])) {
1342
+ if (!_optionalChain([context2, 'access', _58 => _58.projectsConfigurations, 'optionalAccess', _59 => _59.projects]) || !context2.projectName || !context2.projectsConfigurations.projects[context2.projectName] || !_optionalChain([context2, 'access', _60 => _60.projectsConfigurations, 'access', _61 => _61.projects, 'access', _62 => _62[context2.projectName], 'optionalAccess', _63 => _63.root])) {
1322
1343
  throw new Error("The Build process failed because the context is not valid. Please run this command from a workspace.");
1323
1344
  }
1324
1345
  await build3({
1325
1346
  ...options,
1326
- projectRoot: _optionalChain([context2, 'access', _61 => _61.projectsConfigurations, 'access', _62 => _62.projects, 'optionalAccess', _63 => _63[context2.projectName], 'access', _64 => _64.root]),
1347
+ projectRoot: _optionalChain([context2, 'access', _64 => _64.projectsConfigurations, 'access', _65 => _65.projects, 'optionalAccess', _66 => _66[context2.projectName], 'access', _67 => _67.root]),
1327
1348
  projectName: context2.projectName,
1328
- sourceRoot: _optionalChain([context2, 'access', _65 => _65.projectsConfigurations, 'access', _66 => _66.projects, 'optionalAccess', _67 => _67[context2.projectName], 'optionalAccess', _68 => _68.sourceRoot]),
1349
+ sourceRoot: _optionalChain([context2, 'access', _68 => _68.projectsConfigurations, 'access', _69 => _69.projects, 'optionalAccess', _70 => _70[context2.projectName], 'optionalAccess', _71 => _71.sourceRoot]),
1329
1350
  format: options.format,
1330
1351
  platform: options.format
1331
1352
  });
package/dist/executors.js CHANGED
@@ -1,9 +1,6 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-7VDOGZYO.js');
2
2
 
3
3
 
4
- var _chunkZ2GBHTLHjs = require('./chunk-Z2GBHTLH.js');
5
-
6
-
7
4
  var _chunkJCJHSN67js = require('./chunk-JCJHSN67.js');
8
5
 
9
6
 
@@ -13,13 +10,16 @@ var _chunk5DQCVP4Njs = require('./chunk-5DQCVP4N.js');
13
10
  var _chunk26KLH7BIjs = require('./chunk-26KLH7BI.js');
14
11
 
15
12
 
16
- var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
13
+ var _chunkGJQKCDGCjs = require('./chunk-GJQKCDGC.js');
17
14
 
18
15
 
19
- var _chunkT42YSSITjs = require('./chunk-T42YSSIT.js');
16
+ var _chunkZ2GBHTLHjs = require('./chunk-Z2GBHTLH.js');
20
17
 
21
18
 
22
- var _chunkGJQKCDGCjs = require('./chunk-GJQKCDGC.js');
19
+ var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
20
+
21
+
22
+ var _chunkS6XMIUUOjs = require('./chunk-S6XMIUUO.js');
23
23
 
24
24
 
25
25
  var _chunkLRLMU4QVjs = require('./chunk-LRLMU4QV.js');
@@ -53,4 +53,4 @@ require('./chunk-3GQAWCBQ.js');
53
53
 
54
54
 
55
55
 
56
- exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkLRLMU4QVjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkE4TBRQDJjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunk7YVMI4XMjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkZ2GBHTLHjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkQPJ4XTDXjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkT42YSSITjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkJCJHSN67js.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunk5DQCVP4Njs.typiaExecutorFn; exports.unbuildExecutorFn = _chunk26KLH7BIjs.unbuildExecutorFn;
56
+ exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkLRLMU4QVjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkE4TBRQDJjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunk7YVMI4XMjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkZ2GBHTLHjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkQPJ4XTDXjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkS6XMIUUOjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkJCJHSN67js.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunk5DQCVP4Njs.typiaExecutorFn; exports.unbuildExecutorFn = _chunk26KLH7BIjs.unbuildExecutorFn;
@@ -1,7 +1,4 @@
1
1
  import "./chunk-BLX5SLPC.mjs";
2
- import {
3
- cargoDocExecutor
4
- } from "./chunk-CIHS3V6E.mjs";
5
2
  import {
6
3
  sizeLimitExecutorFn
7
4
  } from "./chunk-CD3W3HIC.mjs";
@@ -11,15 +8,18 @@ import {
11
8
  import {
12
9
  unbuildExecutorFn
13
10
  } from "./chunk-32XQSY3C.mjs";
11
+ import {
12
+ LARGE_BUFFER
13
+ } from "./chunk-BMNXBEWE.mjs";
14
+ import {
15
+ cargoDocExecutor
16
+ } from "./chunk-CIHS3V6E.mjs";
14
17
  import {
15
18
  getRegistryVersion
16
19
  } from "./chunk-3PWCELL5.mjs";
17
20
  import {
18
21
  esbuildExecutorFn
19
- } from "./chunk-YDDVJHQ4.mjs";
20
- import {
21
- LARGE_BUFFER
22
- } from "./chunk-BMNXBEWE.mjs";
22
+ } from "./chunk-RLMSLHWY.mjs";
23
23
  import {
24
24
  cargoBuildExecutor
25
25
  } from "./chunk-VTRSAQHO.mjs";
@@ -1,12 +1,18 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-INERRJ6Q.js');
2
2
 
3
3
 
4
+ var _chunkACBRXFBBjs = require('./chunk-ACBRXFBB.js');
5
+
6
+
4
7
  var _chunkUSJX4BPDjs = require('./chunk-USJX4BPD.js');
5
8
 
6
9
 
7
10
  var _chunkDNYOACHDjs = require('./chunk-DNYOACHD.js');
8
11
 
9
12
 
13
+ var _chunkIPBHTVKWjs = require('./chunk-IPBHTVKW.js');
14
+
15
+
10
16
  var _chunkN4STCLGJjs = require('./chunk-N4STCLGJ.js');
11
17
 
12
18
 
@@ -14,12 +20,6 @@ var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
14
20
 
15
21
 
16
22
  var _chunkZGMV4YJLjs = require('./chunk-ZGMV4YJL.js');
17
-
18
-
19
- var _chunkACBRXFBBjs = require('./chunk-ACBRXFBB.js');
20
-
21
-
22
- var _chunkIPBHTVKWjs = require('./chunk-IPBHTVKW.js');
23
23
  require('./chunk-RBU35LQW.js');
24
24
  require('./chunk-HI4G4OOG.js');
25
25
  require('./chunk-7YRW5HNX.js');
@@ -1,10 +1,16 @@
1
1
  import "./chunk-RLIZVCIN.mjs";
2
+ import {
3
+ nodeLibraryGeneratorFn
4
+ } from "./chunk-JWFYDYKI.mjs";
2
5
  import {
3
6
  presetGeneratorFn
4
7
  } from "./chunk-AVC6Y5IR.mjs";
5
8
  import {
6
9
  releaseVersionGeneratorFn
7
10
  } from "./chunk-P7UUSOFW.mjs";
11
+ import {
12
+ browserLibraryGeneratorFn
13
+ } from "./chunk-MMPXE2KD.mjs";
8
14
  import {
9
15
  configSchemaGeneratorFn
10
16
  } from "./chunk-KQMGKHXU.mjs";
@@ -14,12 +20,6 @@ import {
14
20
  import {
15
21
  neutralLibraryGeneratorFn
16
22
  } from "./chunk-PHVGSPP3.mjs";
17
- import {
18
- nodeLibraryGeneratorFn
19
- } from "./chunk-JWFYDYKI.mjs";
20
- import {
21
- browserLibraryGeneratorFn
22
- } from "./chunk-MMPXE2KD.mjs";
23
23
  import "./chunk-YZLAY7R4.mjs";
24
24
  import "./chunk-EK75QNMS.mjs";
25
25
  import "./chunk-HUVBVDJ7.mjs";
package/dist/index.js CHANGED
@@ -48,9 +48,6 @@ var _chunkGKL4BY2Yjs = require('./chunk-GKL4BY2Y.js');
48
48
  require('./chunk-7VDOGZYO.js');
49
49
 
50
50
 
51
- var _chunkZ2GBHTLHjs = require('./chunk-Z2GBHTLH.js');
52
-
53
-
54
51
  var _chunkJCJHSN67js = require('./chunk-JCJHSN67.js');
55
52
 
56
53
 
@@ -60,13 +57,16 @@ var _chunk5DQCVP4Njs = require('./chunk-5DQCVP4N.js');
60
57
  var _chunk26KLH7BIjs = require('./chunk-26KLH7BI.js');
61
58
 
62
59
 
63
- var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
60
+ var _chunkGJQKCDGCjs = require('./chunk-GJQKCDGC.js');
64
61
 
65
62
 
66
- var _chunkT42YSSITjs = require('./chunk-T42YSSIT.js');
63
+ var _chunkZ2GBHTLHjs = require('./chunk-Z2GBHTLH.js');
67
64
 
68
65
 
69
- var _chunkGJQKCDGCjs = require('./chunk-GJQKCDGC.js');
66
+ var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
67
+
68
+
69
+ var _chunkS6XMIUUOjs = require('./chunk-S6XMIUUO.js');
70
70
 
71
71
 
72
72
  var _chunkLRLMU4QVjs = require('./chunk-LRLMU4QV.js');
@@ -96,12 +96,18 @@ var _chunkULBTYC2Bjs = require('./chunk-ULBTYC2B.js');
96
96
  require('./chunk-INERRJ6Q.js');
97
97
 
98
98
 
99
+ var _chunkACBRXFBBjs = require('./chunk-ACBRXFBB.js');
100
+
101
+
99
102
  var _chunkUSJX4BPDjs = require('./chunk-USJX4BPD.js');
100
103
 
101
104
 
102
105
  var _chunkDNYOACHDjs = require('./chunk-DNYOACHD.js');
103
106
 
104
107
 
108
+ var _chunkIPBHTVKWjs = require('./chunk-IPBHTVKW.js');
109
+
110
+
105
111
  var _chunkN4STCLGJjs = require('./chunk-N4STCLGJ.js');
106
112
 
107
113
 
@@ -111,12 +117,6 @@ var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
111
117
  var _chunkZGMV4YJLjs = require('./chunk-ZGMV4YJL.js');
112
118
 
113
119
 
114
- var _chunkACBRXFBBjs = require('./chunk-ACBRXFBB.js');
115
-
116
-
117
- var _chunkIPBHTVKWjs = require('./chunk-IPBHTVKW.js');
118
-
119
-
120
120
 
121
121
 
122
122
 
@@ -282,4 +282,4 @@ require('./chunk-3GQAWCBQ.js');
282
282
 
283
283
 
284
284
 
285
- exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkPK2SUBWIjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPK2SUBWIjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPK2SUBWIjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPK2SUBWIjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPK2SUBWIjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunk7AXFMX2Tjs.PackageManagerTypes; exports.ProjectTagConstants = _chunk7YRW5HNXjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk4NOLUAQNjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk4NOLUAQNjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk4NOLUAQNjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk4NOLUAQNjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk4NOLUAQNjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk4NOLUAQNjs.ProjectTagVariant; exports.YARN_LOCK_FILE = _chunkPK2SUBWIjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPK2SUBWIjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkAC5SI4YZjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkIPBHTVKWjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkLRLMU4QVjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkE4TBRQDJjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunk7YVMI4XMjs.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkZ2GBHTLHjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkQPJ4XTDXjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunkN4STCLGJjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkT42YSSITjs.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunk7YRW5HNXjs.formatProjectTag; exports.getLockFileDependencies = _chunkPK2SUBWIjs.getLockFileDependencies; exports.getLockFileName = _chunkPK2SUBWIjs.getLockFileName; exports.getLockFileNodes = _chunkPK2SUBWIjs.getLockFileNodes; exports.getOutputPath = _chunkRBU35LQWjs.getOutputPath; exports.getPackageInfo = _chunk7AXFMX2Tjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkUF6KFXG5js.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkUF6KFXG5js.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkGKL4BY2Yjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkGKL4BY2Yjs.getProjectConfigurations; exports.getProjectPlatform = _chunkUF6KFXG5js.getProjectPlatform; exports.getProjectRoot = _chunkUF6KFXG5js.getProjectRoot; exports.getProjectTag = _chunk7YRW5HNXjs.getProjectTag; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.getTypiaTransform = _chunkXITP2BX2js.getTypiaTransform; exports.hasProjectTag = _chunk7YRW5HNXjs.hasProjectTag; exports.initGenerator = _chunk3IZ3O4OKjs.initGenerator; exports.isEqualProjectTag = _chunk7YRW5HNXjs.isEqualProjectTag; exports.isExternal = _chunkULBTYC2Bjs.isExternal; exports.lintStagedVersion = _chunkHI4G4OOGjs.lintStagedVersion; exports.lockFileExists = _chunkPK2SUBWIjs.lockFileExists; exports.modifyCargoNestedTable = _chunkZMFVKBRMjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkZMFVKBRMjs.modifyCargoTable; exports.neutralLibraryGeneratorFn = _chunkZGMV4YJLjs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkACBRXFBBjs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkRBU35LQWjs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.parseCargoToml = _chunkZMFVKBRMjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkZMFVKBRMjs.parseCargoTomlWithTree; exports.pnpmCatalogUpdate = _chunkCUPARBOSjs.pnpmCatalogUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkUSJX4BPDjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkDNYOACHDjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkJCJHSN67js.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.tsupVersion = _chunkHI4G4OOGjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkRBU35LQWjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkIWCQL3AQjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk7O34DHUGjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunk5DQCVP4Njs.typiaExecutorFn; exports.unbuildExecutorFn = _chunk26KLH7BIjs.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunkP6PFHXHQjs.withRunExecutor; exports.withRunGenerator = _chunkNQ4W3N7Ojs.withRunGenerator;
285
+ exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkPK2SUBWIjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPK2SUBWIjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPK2SUBWIjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPK2SUBWIjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPK2SUBWIjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunk7AXFMX2Tjs.PackageManagerTypes; exports.ProjectTagConstants = _chunk7YRW5HNXjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk4NOLUAQNjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk4NOLUAQNjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk4NOLUAQNjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk4NOLUAQNjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk4NOLUAQNjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk4NOLUAQNjs.ProjectTagVariant; exports.YARN_LOCK_FILE = _chunkPK2SUBWIjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPK2SUBWIjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkAC5SI4YZjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkIPBHTVKWjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkLRLMU4QVjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkE4TBRQDJjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunk7YVMI4XMjs.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkZ2GBHTLHjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkQPJ4XTDXjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunkN4STCLGJjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkS6XMIUUOjs.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunk7YRW5HNXjs.formatProjectTag; exports.getLockFileDependencies = _chunkPK2SUBWIjs.getLockFileDependencies; exports.getLockFileName = _chunkPK2SUBWIjs.getLockFileName; exports.getLockFileNodes = _chunkPK2SUBWIjs.getLockFileNodes; exports.getOutputPath = _chunkRBU35LQWjs.getOutputPath; exports.getPackageInfo = _chunk7AXFMX2Tjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkUF6KFXG5js.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkUF6KFXG5js.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkGKL4BY2Yjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkGKL4BY2Yjs.getProjectConfigurations; exports.getProjectPlatform = _chunkUF6KFXG5js.getProjectPlatform; exports.getProjectRoot = _chunkUF6KFXG5js.getProjectRoot; exports.getProjectTag = _chunk7YRW5HNXjs.getProjectTag; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.getTypiaTransform = _chunkXITP2BX2js.getTypiaTransform; exports.hasProjectTag = _chunk7YRW5HNXjs.hasProjectTag; exports.initGenerator = _chunk3IZ3O4OKjs.initGenerator; exports.isEqualProjectTag = _chunk7YRW5HNXjs.isEqualProjectTag; exports.isExternal = _chunkULBTYC2Bjs.isExternal; exports.lintStagedVersion = _chunkHI4G4OOGjs.lintStagedVersion; exports.lockFileExists = _chunkPK2SUBWIjs.lockFileExists; exports.modifyCargoNestedTable = _chunkZMFVKBRMjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkZMFVKBRMjs.modifyCargoTable; exports.neutralLibraryGeneratorFn = _chunkZGMV4YJLjs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkACBRXFBBjs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkRBU35LQWjs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.parseCargoToml = _chunkZMFVKBRMjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkZMFVKBRMjs.parseCargoTomlWithTree; exports.pnpmCatalogUpdate = _chunkCUPARBOSjs.pnpmCatalogUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkUSJX4BPDjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkDNYOACHDjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkJCJHSN67js.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.tsupVersion = _chunkHI4G4OOGjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkRBU35LQWjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkIWCQL3AQjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk7O34DHUGjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunk5DQCVP4Njs.typiaExecutorFn; exports.unbuildExecutorFn = _chunk26KLH7BIjs.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunkP6PFHXHQjs.withRunExecutor; exports.withRunGenerator = _chunkNQ4W3N7Ojs.withRunGenerator;
package/dist/index.mjs CHANGED
@@ -46,9 +46,6 @@ import {
46
46
  getProjectConfigurations
47
47
  } from "./chunk-YBDZ7EWU.mjs";
48
48
  import "./chunk-BLX5SLPC.mjs";
49
- import {
50
- cargoDocExecutor
51
- } from "./chunk-CIHS3V6E.mjs";
52
49
  import {
53
50
  sizeLimitExecutorFn
54
51
  } from "./chunk-CD3W3HIC.mjs";
@@ -58,15 +55,18 @@ import {
58
55
  import {
59
56
  unbuildExecutorFn
60
57
  } from "./chunk-32XQSY3C.mjs";
58
+ import {
59
+ LARGE_BUFFER
60
+ } from "./chunk-BMNXBEWE.mjs";
61
+ import {
62
+ cargoDocExecutor
63
+ } from "./chunk-CIHS3V6E.mjs";
61
64
  import {
62
65
  getRegistryVersion
63
66
  } from "./chunk-3PWCELL5.mjs";
64
67
  import {
65
68
  esbuildExecutorFn
66
- } from "./chunk-YDDVJHQ4.mjs";
67
- import {
68
- LARGE_BUFFER
69
- } from "./chunk-BMNXBEWE.mjs";
69
+ } from "./chunk-RLMSLHWY.mjs";
70
70
  import {
71
71
  cargoBuildExecutor
72
72
  } from "./chunk-VTRSAQHO.mjs";
@@ -94,12 +94,18 @@ import {
94
94
  runProcess
95
95
  } from "./chunk-JIAGNEII.mjs";
96
96
  import "./chunk-RLIZVCIN.mjs";
97
+ import {
98
+ nodeLibraryGeneratorFn
99
+ } from "./chunk-JWFYDYKI.mjs";
97
100
  import {
98
101
  presetGeneratorFn
99
102
  } from "./chunk-AVC6Y5IR.mjs";
100
103
  import {
101
104
  releaseVersionGeneratorFn
102
105
  } from "./chunk-P7UUSOFW.mjs";
106
+ import {
107
+ browserLibraryGeneratorFn
108
+ } from "./chunk-MMPXE2KD.mjs";
103
109
  import {
104
110
  configSchemaGeneratorFn
105
111
  } from "./chunk-KQMGKHXU.mjs";
@@ -109,12 +115,6 @@ import {
109
115
  import {
110
116
  neutralLibraryGeneratorFn
111
117
  } from "./chunk-PHVGSPP3.mjs";
112
- import {
113
- nodeLibraryGeneratorFn
114
- } from "./chunk-JWFYDYKI.mjs";
115
- import {
116
- browserLibraryGeneratorFn
117
- } from "./chunk-MMPXE2KD.mjs";
118
118
  import {
119
119
  createProjectTsConfigJson,
120
120
  getOutputPath,
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkT42YSSITjs = require('../../../chunk-T42YSSIT.js');
4
+ var _chunkS6XMIUUOjs = require('../../../chunk-S6XMIUUO.js');
5
5
  require('../../../chunk-P6PFHXHQ.js');
6
6
  require('../../../chunk-UALZJZUK.js');
7
7
  require('../../../chunk-SKMT7WD5.js');
@@ -11,4 +11,4 @@ require('../../../chunk-3GQAWCBQ.js');
11
11
 
12
12
 
13
13
 
14
- exports.default = _chunkT42YSSITjs.executor_default; exports.esbuildExecutorFn = _chunkT42YSSITjs.esbuildExecutorFn;
14
+ exports.default = _chunkS6XMIUUOjs.executor_default; exports.esbuildExecutorFn = _chunkS6XMIUUOjs.esbuildExecutorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  esbuildExecutorFn,
3
3
  executor_default
4
- } from "../../../chunk-YDDVJHQ4.mjs";
4
+ } from "../../../chunk-RLMSLHWY.mjs";
5
5
  import "../../../chunk-7P2LGXFI.mjs";
6
6
  import "../../../chunk-AWKIWCLR.mjs";
7
7
  import "../../../chunk-NODM27UV.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.264.24",
3
+ "version": "1.264.25",
4
4
  "description": "Tools for managing a Storm workspace, including various Nx generators and executors for common development tasks.",
5
5
  "repository": {
6
6
  "type": "github",