@storm-software/build-tools 0.143.18 → 0.143.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/README.md +7 -7
  2. package/dist/{chunk-MBDFPBDC.mjs → chunk-3WFCBFRM.mjs} +1 -1
  3. package/dist/{chunk-HD2W64SX.mjs → chunk-B5EAYIOT.mjs} +1 -1
  4. package/dist/{chunk-D2774IWJ.js → chunk-H64CZVJJ.js} +5 -5
  5. package/dist/{chunk-MZM33AA7.js → chunk-INGOZELS.js} +8 -8
  6. package/dist/{chunk-WJHZ4GHU.js → chunk-INX6NBKW.js} +21 -4
  7. package/dist/{chunk-VL65QJVX.js → chunk-L6FYW3ID.js} +2 -2
  8. package/dist/{chunk-DVDSUEQJ.mjs → chunk-MCFSUUJG.mjs} +1 -1
  9. package/dist/{chunk-WNCNUNY4.mjs → chunk-NTSC46IQ.mjs} +1 -1
  10. package/dist/{chunk-ATN46F4O.mjs → chunk-O4QVCGZS.mjs} +21 -4
  11. package/dist/{chunk-7VVGHAK3.mjs → chunk-PUP2YY6V.mjs} +33 -1
  12. package/dist/{chunk-DJEVAWGZ.js → chunk-SX4FMBR4.js} +74 -42
  13. package/dist/{chunk-QJDRCNMR.js → chunk-XCPCKIUW.js} +8 -8
  14. package/dist/{chunk-47N4BMGR.js → chunk-XKPVTPMQ.js} +10 -10
  15. package/dist/{chunk-4G2TMZVB.mjs → chunk-Z424F4SY.mjs} +1 -1
  16. package/dist/index.d.mts +1 -1
  17. package/dist/index.d.ts +1 -1
  18. package/dist/index.js +8 -8
  19. package/dist/index.mjs +7 -7
  20. package/dist/plugins/analyze.js +3 -3
  21. package/dist/plugins/analyze.mjs +2 -2
  22. package/dist/plugins/index.js +4 -4
  23. package/dist/plugins/index.mjs +3 -3
  24. package/dist/plugins/ts-resolve.js +3 -3
  25. package/dist/plugins/ts-resolve.mjs +2 -2
  26. package/dist/{types-BngOPPZH.d.ts → types-BOD8Yftb.d.mts} +41 -0
  27. package/dist/{types-BngOPPZH.d.mts → types-BOD8Yftb.d.ts} +41 -0
  28. package/dist/types.d.mts +1 -1
  29. package/dist/types.d.ts +1 -1
  30. package/dist/utilities/copy-assets.d.mts +1 -1
  31. package/dist/utilities/copy-assets.d.ts +1 -1
  32. package/dist/utilities/copy-assets.js +3 -3
  33. package/dist/utilities/copy-assets.mjs +2 -2
  34. package/dist/utilities/generate-package-json.d.mts +1 -1
  35. package/dist/utilities/generate-package-json.d.ts +1 -1
  36. package/dist/utilities/generate-package-json.js +3 -3
  37. package/dist/utilities/generate-package-json.mjs +2 -2
  38. package/dist/utilities/get-entry-points.d.mts +1 -1
  39. package/dist/utilities/get-entry-points.d.ts +1 -1
  40. package/dist/utilities/get-entry-points.js +3 -3
  41. package/dist/utilities/get-entry-points.mjs +2 -2
  42. package/dist/utilities/get-env.d.mts +1 -1
  43. package/dist/utilities/get-env.d.ts +1 -1
  44. package/dist/utilities/index.d.mts +1 -1
  45. package/dist/utilities/index.d.ts +1 -1
  46. package/dist/utilities/index.js +6 -6
  47. package/dist/utilities/index.mjs +5 -5
  48. package/dist/utilities/read-nx-config.js +3 -3
  49. package/dist/utilities/read-nx-config.mjs +2 -2
  50. package/package.json +1 -1
@@ -14,6 +14,7 @@ declare const StormConfigSchema: z.ZodObject<{
14
14
  homepage: z.ZodDefault<z.ZodString>;
15
15
  docs: z.ZodDefault<z.ZodString>;
16
16
  licensing: z.ZodDefault<z.ZodString>;
17
+ contact: z.ZodDefault<z.ZodString>;
17
18
  branch: z.ZodDefault<z.ZodString>;
18
19
  preid: z.ZodOptional<z.ZodString>;
19
20
  owner: z.ZodDefault<z.ZodString>;
@@ -40,6 +41,28 @@ declare const StormConfigSchema: z.ZodObject<{
40
41
  header?: string | undefined;
41
42
  footer?: string | undefined;
42
43
  }>;
44
+ account: z.ZodObject<{
45
+ twitter: z.ZodDefault<z.ZodString>;
46
+ discord: z.ZodDefault<z.ZodString>;
47
+ telegram: z.ZodDefault<z.ZodString>;
48
+ slack: z.ZodDefault<z.ZodString>;
49
+ medium: z.ZodDefault<z.ZodString>;
50
+ github: z.ZodDefault<z.ZodString>;
51
+ }, "strip", z.ZodTypeAny, {
52
+ github: string;
53
+ twitter: string;
54
+ discord: string;
55
+ telegram: string;
56
+ slack: string;
57
+ medium: string;
58
+ }, {
59
+ github?: string | undefined;
60
+ twitter?: string | undefined;
61
+ discord?: string | undefined;
62
+ telegram?: string | undefined;
63
+ slack?: string | undefined;
64
+ medium?: string | undefined;
65
+ }>;
43
66
  mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
44
67
  workspaceRoot: z.ZodDefault<z.ZodString>;
45
68
  externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
@@ -813,6 +836,7 @@ declare const StormConfigSchema: z.ZodObject<{
813
836
  homepage: string;
814
837
  docs: string;
815
838
  licensing: string;
839
+ contact: string;
816
840
  branch: string;
817
841
  owner: string;
818
842
  bot: {
@@ -824,6 +848,14 @@ declare const StormConfigSchema: z.ZodObject<{
824
848
  footer: string;
825
849
  header?: string | undefined;
826
850
  };
851
+ account: {
852
+ github: string;
853
+ twitter: string;
854
+ discord: string;
855
+ telegram: string;
856
+ slack: string;
857
+ medium: string;
858
+ };
827
859
  mode: "production" | "development" | "staging";
828
860
  workspaceRoot: string;
829
861
  externalPackagePatterns: string[];
@@ -1013,6 +1045,14 @@ declare const StormConfigSchema: z.ZodObject<{
1013
1045
  header?: string | undefined;
1014
1046
  footer?: string | undefined;
1015
1047
  };
1048
+ account: {
1049
+ github?: string | undefined;
1050
+ twitter?: string | undefined;
1051
+ discord?: string | undefined;
1052
+ telegram?: string | undefined;
1053
+ slack?: string | undefined;
1054
+ medium?: string | undefined;
1055
+ };
1016
1056
  directories: {
1017
1057
  cache?: string | undefined;
1018
1058
  data?: string | undefined;
@@ -1178,6 +1218,7 @@ declare const StormConfigSchema: z.ZodObject<{
1178
1218
  homepage?: string | undefined;
1179
1219
  docs?: string | undefined;
1180
1220
  licensing?: string | undefined;
1221
+ contact?: string | undefined;
1181
1222
  branch?: string | undefined;
1182
1223
  preid?: string | undefined;
1183
1224
  owner?: string | undefined;
@@ -14,6 +14,7 @@ declare const StormConfigSchema: z.ZodObject<{
14
14
  homepage: z.ZodDefault<z.ZodString>;
15
15
  docs: z.ZodDefault<z.ZodString>;
16
16
  licensing: z.ZodDefault<z.ZodString>;
17
+ contact: z.ZodDefault<z.ZodString>;
17
18
  branch: z.ZodDefault<z.ZodString>;
18
19
  preid: z.ZodOptional<z.ZodString>;
19
20
  owner: z.ZodDefault<z.ZodString>;
@@ -40,6 +41,28 @@ declare const StormConfigSchema: z.ZodObject<{
40
41
  header?: string | undefined;
41
42
  footer?: string | undefined;
42
43
  }>;
44
+ account: z.ZodObject<{
45
+ twitter: z.ZodDefault<z.ZodString>;
46
+ discord: z.ZodDefault<z.ZodString>;
47
+ telegram: z.ZodDefault<z.ZodString>;
48
+ slack: z.ZodDefault<z.ZodString>;
49
+ medium: z.ZodDefault<z.ZodString>;
50
+ github: z.ZodDefault<z.ZodString>;
51
+ }, "strip", z.ZodTypeAny, {
52
+ github: string;
53
+ twitter: string;
54
+ discord: string;
55
+ telegram: string;
56
+ slack: string;
57
+ medium: string;
58
+ }, {
59
+ github?: string | undefined;
60
+ twitter?: string | undefined;
61
+ discord?: string | undefined;
62
+ telegram?: string | undefined;
63
+ slack?: string | undefined;
64
+ medium?: string | undefined;
65
+ }>;
43
66
  mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
44
67
  workspaceRoot: z.ZodDefault<z.ZodString>;
45
68
  externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
@@ -813,6 +836,7 @@ declare const StormConfigSchema: z.ZodObject<{
813
836
  homepage: string;
814
837
  docs: string;
815
838
  licensing: string;
839
+ contact: string;
816
840
  branch: string;
817
841
  owner: string;
818
842
  bot: {
@@ -824,6 +848,14 @@ declare const StormConfigSchema: z.ZodObject<{
824
848
  footer: string;
825
849
  header?: string | undefined;
826
850
  };
851
+ account: {
852
+ github: string;
853
+ twitter: string;
854
+ discord: string;
855
+ telegram: string;
856
+ slack: string;
857
+ medium: string;
858
+ };
827
859
  mode: "production" | "development" | "staging";
828
860
  workspaceRoot: string;
829
861
  externalPackagePatterns: string[];
@@ -1013,6 +1045,14 @@ declare const StormConfigSchema: z.ZodObject<{
1013
1045
  header?: string | undefined;
1014
1046
  footer?: string | undefined;
1015
1047
  };
1048
+ account: {
1049
+ github?: string | undefined;
1050
+ twitter?: string | undefined;
1051
+ discord?: string | undefined;
1052
+ telegram?: string | undefined;
1053
+ slack?: string | undefined;
1054
+ medium?: string | undefined;
1055
+ };
1016
1056
  directories: {
1017
1057
  cache?: string | undefined;
1018
1058
  data?: string | undefined;
@@ -1178,6 +1218,7 @@ declare const StormConfigSchema: z.ZodObject<{
1178
1218
  homepage?: string | undefined;
1179
1219
  docs?: string | undefined;
1180
1220
  licensing?: string | undefined;
1221
+ contact?: string | undefined;
1181
1222
  branch?: string | undefined;
1182
1223
  preid?: string | undefined;
1183
1224
  owner?: string | undefined;
package/dist/types.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { S as StormConfig } from './types-BngOPPZH.mjs';
1
+ import { S as StormConfig } from './types-BOD8Yftb.mjs';
2
2
  import 'zod';
3
3
 
4
4
  type Entry = string | Record<string, string> | string[];
package/dist/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { S as StormConfig } from './types-BngOPPZH.js';
1
+ import { S as StormConfig } from './types-BOD8Yftb.js';
2
2
  import 'zod';
3
3
 
4
4
  type Entry = string | Record<string, string> | string[];
@@ -1,4 +1,4 @@
1
- import { S as StormConfig } from '../types-BngOPPZH.mjs';
1
+ import { S as StormConfig } from '../types-BOD8Yftb.mjs';
2
2
  import { AssetGlob } from '../types.mjs';
3
3
  import 'zod';
4
4
 
@@ -1,4 +1,4 @@
1
- import { S as StormConfig } from '../types-BngOPPZH.js';
1
+ import { S as StormConfig } from '../types-BOD8Yftb.js';
2
2
  import { AssetGlob } from '../types.js';
3
3
  import 'zod';
4
4
 
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkMZM33AA7js = require('../chunk-MZM33AA7.js');
4
- require('../chunk-WJHZ4GHU.js');
3
+ var _chunkINGOZELSjs = require('../chunk-INGOZELS.js');
4
+ require('../chunk-INX6NBKW.js');
5
5
  require('../chunk-SHUYVCID.js');
6
6
 
7
7
 
8
- exports.copyAssets = _chunkMZM33AA7js.copyAssets;
8
+ exports.copyAssets = _chunkINGOZELSjs.copyAssets;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  copyAssets
3
- } from "../chunk-WNCNUNY4.mjs";
4
- import "../chunk-ATN46F4O.mjs";
3
+ } from "../chunk-NTSC46IQ.mjs";
4
+ import "../chunk-O4QVCGZS.mjs";
5
5
  import "../chunk-O6YSETKJ.mjs";
6
6
  export {
7
7
  copyAssets
@@ -1,4 +1,4 @@
1
- import { S as StormConfig } from '../types-BngOPPZH.mjs';
1
+ import { S as StormConfig } from '../types-BOD8Yftb.mjs';
2
2
  import 'zod';
3
3
 
4
4
  declare const addPackageDependencies: (workspaceRoot: string, projectRoot: string, projectName: string, packageJson: Record<string, any>) => Promise<Record<string, any>>;
@@ -1,4 +1,4 @@
1
- import { S as StormConfig } from '../types-BngOPPZH.js';
1
+ import { S as StormConfig } from '../types-BOD8Yftb.js';
2
2
  import 'zod';
3
3
 
4
4
  declare const addPackageDependencies: (workspaceRoot: string, projectRoot: string, projectName: string, packageJson: Record<string, any>) => Promise<Record<string, any>>;
@@ -3,12 +3,12 @@
3
3
 
4
4
 
5
5
 
6
- var _chunk47N4BMGRjs = require('../chunk-47N4BMGR.js');
7
- require('../chunk-WJHZ4GHU.js');
6
+ var _chunkXKPVTPMQjs = require('../chunk-XKPVTPMQ.js');
7
+ require('../chunk-INX6NBKW.js');
8
8
  require('../chunk-SHUYVCID.js');
9
9
 
10
10
 
11
11
 
12
12
 
13
13
 
14
- exports.addPackageDependencies = _chunk47N4BMGRjs.addPackageDependencies; exports.addPackageJsonExport = _chunk47N4BMGRjs.addPackageJsonExport; exports.addPackageJsonExports = _chunk47N4BMGRjs.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunk47N4BMGRjs.addWorkspacePackageJsonFields;
14
+ exports.addPackageDependencies = _chunkXKPVTPMQjs.addPackageDependencies; exports.addPackageJsonExport = _chunkXKPVTPMQjs.addPackageJsonExport; exports.addPackageJsonExports = _chunkXKPVTPMQjs.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkXKPVTPMQjs.addWorkspacePackageJsonFields;
@@ -3,8 +3,8 @@ import {
3
3
  addPackageJsonExport,
4
4
  addPackageJsonExports,
5
5
  addWorkspacePackageJsonFields
6
- } from "../chunk-4G2TMZVB.mjs";
7
- import "../chunk-ATN46F4O.mjs";
6
+ } from "../chunk-Z424F4SY.mjs";
7
+ import "../chunk-O4QVCGZS.mjs";
8
8
  import "../chunk-O6YSETKJ.mjs";
9
9
  export {
10
10
  addPackageDependencies,
@@ -1,4 +1,4 @@
1
- import { S as StormConfig } from '../types-BngOPPZH.mjs';
1
+ import { S as StormConfig } from '../types-BOD8Yftb.mjs';
2
2
  import { Entry } from '../types.mjs';
3
3
  import 'zod';
4
4
 
@@ -1,4 +1,4 @@
1
- import { S as StormConfig } from '../types-BngOPPZH.js';
1
+ import { S as StormConfig } from '../types-BOD8Yftb.js';
2
2
  import { Entry } from '../types.js';
3
3
  import 'zod';
4
4
 
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkD2774IWJjs = require('../chunk-D2774IWJ.js');
4
- require('../chunk-WJHZ4GHU.js');
3
+ var _chunkH64CZVJJjs = require('../chunk-H64CZVJJ.js');
4
+ require('../chunk-INX6NBKW.js');
5
5
  require('../chunk-SHUYVCID.js');
6
6
 
7
7
 
8
- exports.getEntryPoints = _chunkD2774IWJjs.getEntryPoints;
8
+ exports.getEntryPoints = _chunkH64CZVJJjs.getEntryPoints;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  getEntryPoints
3
- } from "../chunk-MBDFPBDC.mjs";
4
- import "../chunk-ATN46F4O.mjs";
3
+ } from "../chunk-3WFCBFRM.mjs";
4
+ import "../chunk-O4QVCGZS.mjs";
5
5
  import "../chunk-O6YSETKJ.mjs";
6
6
  export {
7
7
  getEntryPoints
@@ -1,5 +1,5 @@
1
1
  import { TypeScriptBuildResolvedOptions, TypeScriptBuildEnv } from '../types.mjs';
2
- import '../types-BngOPPZH.mjs';
2
+ import '../types-BOD8Yftb.mjs';
3
3
  import 'zod';
4
4
 
5
5
  declare const getEnv: (builder: string, options: Pick<TypeScriptBuildResolvedOptions, "name" | "mode" | "orgName" | "platform" | "target" | "format">) => TypeScriptBuildEnv;
@@ -1,5 +1,5 @@
1
1
  import { TypeScriptBuildResolvedOptions, TypeScriptBuildEnv } from '../types.js';
2
- import '../types-BngOPPZH.js';
2
+ import '../types-BOD8Yftb.js';
3
3
  import 'zod';
4
4
 
5
5
  declare const getEnv: (builder: string, options: Pick<TypeScriptBuildResolvedOptions, "name" | "mode" | "orgName" | "platform" | "target" | "format">) => TypeScriptBuildEnv;
@@ -7,7 +7,7 @@ export { getOutExtension } from './get-out-extension.mjs';
7
7
  export { getExternalDependencies, getExtraDependencies, getInternalDependencies } from './get-project-deps.mjs';
8
8
  export { readNxConfig } from './read-nx-config.mjs';
9
9
  export { createTaskId, getAllWorkspaceTaskGraphs } from './task-graph.mjs';
10
- import '../types-BngOPPZH.mjs';
10
+ import '../types-BOD8Yftb.mjs';
11
11
  import 'zod';
12
12
  import '../types.mjs';
13
13
  import '@nx/devkit';
@@ -7,7 +7,7 @@ export { getOutExtension } from './get-out-extension.js';
7
7
  export { getExternalDependencies, getExtraDependencies, getInternalDependencies } from './get-project-deps.js';
8
8
  export { readNxConfig } from './read-nx-config.js';
9
9
  export { createTaskId, getAllWorkspaceTaskGraphs } from './task-graph.js';
10
- import '../types-BngOPPZH.js';
10
+ import '../types-BOD8Yftb.js';
11
11
  import 'zod';
12
12
  import '../types.js';
13
13
  import '@nx/devkit';
@@ -1,23 +1,23 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../chunk-65HIHTHN.js');
2
2
 
3
3
 
4
- var _chunkDJEVAWGZjs = require('../chunk-DJEVAWGZ.js');
4
+ var _chunkSX4FMBR4js = require('../chunk-SX4FMBR4.js');
5
5
 
6
6
 
7
7
 
8
8
  var _chunkJP4YIUPAjs = require('../chunk-JP4YIUPA.js');
9
9
 
10
10
 
11
- var _chunkMZM33AA7js = require('../chunk-MZM33AA7.js');
11
+ var _chunkINGOZELSjs = require('../chunk-INGOZELS.js');
12
12
 
13
13
 
14
14
 
15
15
 
16
16
 
17
- var _chunk47N4BMGRjs = require('../chunk-47N4BMGR.js');
17
+ var _chunkXKPVTPMQjs = require('../chunk-XKPVTPMQ.js');
18
18
 
19
19
 
20
- var _chunkD2774IWJjs = require('../chunk-D2774IWJ.js');
20
+ var _chunkH64CZVJJjs = require('../chunk-H64CZVJJ.js');
21
21
 
22
22
 
23
23
  var _chunk5HOBE4TZjs = require('../chunk-5HOBE4TZ.js');
@@ -33,7 +33,7 @@ var _chunkF7WSCB6Hjs = require('../chunk-F7WSCB6H.js');
33
33
 
34
34
  var _chunkVSAQXEXDjs = require('../chunk-VSAQXEXD.js');
35
35
  require('../chunk-MYIXHZMS.js');
36
- require('../chunk-WJHZ4GHU.js');
36
+ require('../chunk-INX6NBKW.js');
37
37
  require('../chunk-SHUYVCID.js');
38
38
 
39
39
 
@@ -51,4 +51,4 @@ require('../chunk-SHUYVCID.js');
51
51
 
52
52
 
53
53
 
54
- exports.addPackageDependencies = _chunk47N4BMGRjs.addPackageDependencies; exports.addPackageJsonExport = _chunk47N4BMGRjs.addPackageJsonExport; exports.addPackageJsonExports = _chunk47N4BMGRjs.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunk47N4BMGRjs.addWorkspacePackageJsonFields; exports.copyAssets = _chunkMZM33AA7js.copyAssets; exports.createTaskId = _chunkJP4YIUPAjs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkJP4YIUPAjs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunkD2774IWJjs.getEntryPoints; exports.getEnv = _chunk5HOBE4TZjs.getEnv; exports.getExternalDependencies = _chunkVSAQXEXDjs.getExternalDependencies; exports.getExtraDependencies = _chunkVSAQXEXDjs.getExtraDependencies; exports.getFileBanner = _chunkPBTSVWXLjs.getFileBanner; exports.getInternalDependencies = _chunkVSAQXEXDjs.getInternalDependencies; exports.getOutExtension = _chunkF7WSCB6Hjs.getOutExtension; exports.readNxConfig = _chunkDJEVAWGZjs.readNxConfig;
54
+ exports.addPackageDependencies = _chunkXKPVTPMQjs.addPackageDependencies; exports.addPackageJsonExport = _chunkXKPVTPMQjs.addPackageJsonExport; exports.addPackageJsonExports = _chunkXKPVTPMQjs.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkXKPVTPMQjs.addWorkspacePackageJsonFields; exports.copyAssets = _chunkINGOZELSjs.copyAssets; exports.createTaskId = _chunkJP4YIUPAjs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkJP4YIUPAjs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunkH64CZVJJjs.getEntryPoints; exports.getEnv = _chunk5HOBE4TZjs.getEnv; exports.getExternalDependencies = _chunkVSAQXEXDjs.getExternalDependencies; exports.getExtraDependencies = _chunkVSAQXEXDjs.getExtraDependencies; exports.getFileBanner = _chunkPBTSVWXLjs.getFileBanner; exports.getInternalDependencies = _chunkVSAQXEXDjs.getInternalDependencies; exports.getOutExtension = _chunkF7WSCB6Hjs.getOutExtension; exports.readNxConfig = _chunkSX4FMBR4js.readNxConfig;
@@ -1,23 +1,23 @@
1
1
  import "../chunk-KVP3YMX6.mjs";
2
2
  import {
3
3
  readNxConfig
4
- } from "../chunk-7VVGHAK3.mjs";
4
+ } from "../chunk-PUP2YY6V.mjs";
5
5
  import {
6
6
  createTaskId,
7
7
  getAllWorkspaceTaskGraphs
8
8
  } from "../chunk-67VZRCF5.mjs";
9
9
  import {
10
10
  copyAssets
11
- } from "../chunk-WNCNUNY4.mjs";
11
+ } from "../chunk-NTSC46IQ.mjs";
12
12
  import {
13
13
  addPackageDependencies,
14
14
  addPackageJsonExport,
15
15
  addPackageJsonExports,
16
16
  addWorkspacePackageJsonFields
17
- } from "../chunk-4G2TMZVB.mjs";
17
+ } from "../chunk-Z424F4SY.mjs";
18
18
  import {
19
19
  getEntryPoints
20
- } from "../chunk-MBDFPBDC.mjs";
20
+ } from "../chunk-3WFCBFRM.mjs";
21
21
  import {
22
22
  getEnv
23
23
  } from "../chunk-T2R2KKTW.mjs";
@@ -33,7 +33,7 @@ import {
33
33
  getInternalDependencies
34
34
  } from "../chunk-ZW5JWBA4.mjs";
35
35
  import "../chunk-BEMVEXMQ.mjs";
36
- import "../chunk-ATN46F4O.mjs";
36
+ import "../chunk-O4QVCGZS.mjs";
37
37
  import "../chunk-O6YSETKJ.mjs";
38
38
  export {
39
39
  addPackageDependencies,
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkDJEVAWGZjs = require('../chunk-DJEVAWGZ.js');
4
- require('../chunk-WJHZ4GHU.js');
3
+ var _chunkSX4FMBR4js = require('../chunk-SX4FMBR4.js');
4
+ require('../chunk-INX6NBKW.js');
5
5
  require('../chunk-SHUYVCID.js');
6
6
 
7
7
 
8
- exports.readNxConfig = _chunkDJEVAWGZjs.readNxConfig;
8
+ exports.readNxConfig = _chunkSX4FMBR4js.readNxConfig;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  readNxConfig
3
- } from "../chunk-7VVGHAK3.mjs";
4
- import "../chunk-ATN46F4O.mjs";
3
+ } from "../chunk-PUP2YY6V.mjs";
4
+ import "../chunk-O4QVCGZS.mjs";
5
5
  import "../chunk-O6YSETKJ.mjs";
6
6
  export {
7
7
  readNxConfig
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/build-tools",
3
- "version": "0.143.18",
3
+ "version": "0.143.19",
4
4
  "description": "A comprehensive set of tools for building and managing projects within a Storm workspace. Includes builders such as rollup, rolldown, tsup, and unbuild, along with various utilities.",
5
5
  "repository": {
6
6
  "type": "github",