@storm-software/build-tools 0.158.271 → 0.158.273

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/README.md CHANGED
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
27
27
 
28
28
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
29
29
 
30
- [![Version](https://img.shields.io/badge/version-0.158.269-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)
30
+ [![Version](https://img.shields.io/badge/version-0.158.272-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)
31
31
 
32
32
  <!-- prettier-ignore-start -->
33
33
  <!-- markdownlint-disable -->
@@ -1,12 +1,6 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }// src/utilities/task-graph.ts
2
-
3
-
4
-
5
2
  var _createtaskgraph = require('nx/src/tasks-runner/create-task-graph');
6
3
  function getAllWorkspaceTaskGraphs(nxJson, projectGraph) {
7
- const defaultDependencyConfigs = _createtaskgraph.mapTargetDefaultsToDependencies.call(void 0,
8
- nxJson.targetDefaults
9
- );
10
4
  const taskGraphs = {};
11
5
  const taskGraphErrors = {};
12
6
  for (const projectName in projectGraph.nodes) {
@@ -17,7 +11,7 @@ function getAllWorkspaceTaskGraphs(nxJson, projectGraph) {
17
11
  try {
18
12
  taskGraphs[taskId] = _createtaskgraph.createTaskGraph.call(void 0,
19
13
  projectGraph,
20
- defaultDependencyConfigs,
14
+ {},
21
15
  [projectName],
22
16
  [target],
23
17
  void 0,
@@ -41,7 +35,7 @@ function getAllWorkspaceTaskGraphs(nxJson, projectGraph) {
41
35
  try {
42
36
  taskGraphs[taskId2] = _createtaskgraph.createTaskGraph.call(void 0,
43
37
  projectGraph,
44
- defaultDependencyConfigs,
38
+ {},
45
39
  [projectName],
46
40
  [target],
47
41
  configuration,
@@ -1,12 +1,6 @@
1
1
  // src/utilities/task-graph.ts
2
- import {
3
- createTaskGraph,
4
- mapTargetDefaultsToDependencies
5
- } from "nx/src/tasks-runner/create-task-graph";
2
+ import { createTaskGraph } from "nx/src/tasks-runner/create-task-graph";
6
3
  function getAllWorkspaceTaskGraphs(nxJson, projectGraph) {
7
- const defaultDependencyConfigs = mapTargetDefaultsToDependencies(
8
- nxJson.targetDefaults
9
- );
10
4
  const taskGraphs = {};
11
5
  const taskGraphErrors = {};
12
6
  for (const projectName in projectGraph.nodes) {
@@ -17,7 +11,7 @@ function getAllWorkspaceTaskGraphs(nxJson, projectGraph) {
17
11
  try {
18
12
  taskGraphs[taskId] = createTaskGraph(
19
13
  projectGraph,
20
- defaultDependencyConfigs,
14
+ {},
21
15
  [projectName],
22
16
  [target],
23
17
  void 0,
@@ -41,7 +35,7 @@ function getAllWorkspaceTaskGraphs(nxJson, projectGraph) {
41
35
  try {
42
36
  taskGraphs[taskId2] = createTaskGraph(
43
37
  projectGraph,
44
- defaultDependencyConfigs,
38
+ {},
45
39
  [projectName],
46
40
  [target],
47
41
  configuration,
package/dist/index.js CHANGED
@@ -1,62 +1,62 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-65HIHTHN.js');
2
2
 
3
3
 
4
- var _chunkA75DEKU5js = require('./chunk-A75DEKU5.js');
4
+ var _chunkTJBQI2NXjs = require('./chunk-TJBQI2NX.js');
5
5
 
6
6
 
7
7
 
8
+ var _chunk22BBYWPIjs = require('./chunk-22BBYWPI.js');
8
9
 
9
- var _chunkWNMPQTPHjs = require('./chunk-WNMPQTPH.js');
10
10
 
11
+ var _chunkCVDDEMTLjs = require('./chunk-CVDDEMTL.js');
11
12
 
12
- var _chunkTJBQI2NXjs = require('./chunk-TJBQI2NX.js');
13
13
 
14
14
 
15
15
 
16
- var _chunkP3MQZA3Djs = require('./chunk-P3MQZA3D.js');
17
- require('./chunk-WPFIBCZT.js');
18
16
 
17
+ var _chunkI7QYCTUEjs = require('./chunk-I7QYCTUE.js');
19
18
 
20
- var _chunkZW7ZNFGBjs = require('./chunk-ZW7ZNFGB.js');
21
19
 
20
+ var _chunkJLYCFH5Ujs = require('./chunk-JLYCFH5U.js');
21
+ require('./chunk-MV6AF3XD.js');
22
+ require('./chunk-I2YBUOU3.js');
22
23
 
23
- var _chunkN7HP2YYEjs = require('./chunk-N7HP2YYE.js');
24
24
 
25
+ var _chunkNUMEQYRDjs = require('./chunk-NUMEQYRD.js');
25
26
 
26
- var _chunkGCMOLRPVjs = require('./chunk-GCMOLRPV.js');
27
27
 
28
+ var _chunkUHJ5ACWHjs = require('./chunk-UHJ5ACWH.js');
28
29
 
29
- var _chunkHQD5ZBIUjs = require('./chunk-HQD5ZBIU.js');
30
- require('./chunk-6F4PWJZI.js');
31
30
 
31
+ var _chunkA75DEKU5js = require('./chunk-A75DEKU5.js');
32
32
 
33
- var _chunkCVDDEMTLjs = require('./chunk-CVDDEMTL.js');
34
33
 
35
34
 
36
35
 
36
+ var _chunkWNMPQTPHjs = require('./chunk-WNMPQTPH.js');
37
37
 
38
38
 
39
- var _chunkI7QYCTUEjs = require('./chunk-I7QYCTUE.js');
40
39
 
41
40
 
42
- var _chunkJLYCFH5Ujs = require('./chunk-JLYCFH5U.js');
43
- require('./chunk-MV6AF3XD.js');
44
- require('./chunk-I2YBUOU3.js');
45
- require('./chunk-YMEL2Q4P.js');
46
41
 
47
42
 
48
- var _chunkNUMEQYRDjs = require('./chunk-NUMEQYRD.js');
49
43
 
44
+ var _chunkMEINUFJYjs = require('./chunk-MEINUFJY.js');
45
+ require('./chunk-6F4PWJZI.js');
46
+ require('./chunk-WPFIBCZT.js');
50
47
 
51
48
 
49
+ var _chunkGCMOLRPVjs = require('./chunk-GCMOLRPV.js');
52
50
 
53
51
 
52
+ var _chunkHQD5ZBIUjs = require('./chunk-HQD5ZBIU.js');
54
53
 
55
54
 
56
- var _chunkMEINUFJYjs = require('./chunk-MEINUFJY.js');
55
+ var _chunkZW7ZNFGBjs = require('./chunk-ZW7ZNFGB.js');
56
+ require('./chunk-YMEL2Q4P.js');
57
57
 
58
58
 
59
- var _chunkUHJ5ACWHjs = require('./chunk-UHJ5ACWH.js');
59
+ var _chunkN7HP2YYEjs = require('./chunk-N7HP2YYE.js');
60
60
 
61
61
 
62
62
 
@@ -83,4 +83,4 @@ var _chunkUHJ5ACWHjs = require('./chunk-UHJ5ACWH.js');
83
83
 
84
84
 
85
85
 
86
- exports.DEFAULT_CSS_BANNER = _chunkMEINUFJYjs.DEFAULT_CSS_BANNER; exports.DEFAULT_ENVIRONMENT = _chunkMEINUFJYjs.DEFAULT_ENVIRONMENT; exports.DEFAULT_JS_BANNER = _chunkMEINUFJYjs.DEFAULT_JS_BANNER; exports.DEFAULT_ORGANIZATION = _chunkMEINUFJYjs.DEFAULT_ORGANIZATION; exports.DEFAULT_PLATFORM = _chunkMEINUFJYjs.DEFAULT_PLATFORM; exports.DEFAULT_TARGET = _chunkMEINUFJYjs.DEFAULT_TARGET; exports.addPackageDependencies = _chunkI7QYCTUEjs.addPackageDependencies; exports.addPackageJsonExport = _chunkI7QYCTUEjs.addPackageJsonExport; exports.addPackageJsonExports = _chunkI7QYCTUEjs.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkI7QYCTUEjs.addWorkspacePackageJsonFields; exports.analyze = _chunkGCMOLRPVjs.analyze; exports.copyAssets = _chunkCVDDEMTLjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunkJLYCFH5Ujs.getEntryPoints; exports.getEnv = _chunkNUMEQYRDjs.getEnv; exports.getExternalDependencies = _chunkWNMPQTPHjs.getExternalDependencies; exports.getExtraDependencies = _chunkWNMPQTPHjs.getExtraDependencies; exports.getFileBanner = _chunkUHJ5ACWHjs.getFileBanner; exports.getInternalDependencies = _chunkWNMPQTPHjs.getInternalDependencies; exports.getOutExtension = _chunkA75DEKU5js.getOutExtension; exports.readNxConfig = _chunkTJBQI2NXjs.readNxConfig; exports.swc = _chunkHQD5ZBIUjs.swc; exports.tsResolvePlugin = _chunkZW7ZNFGBjs.tsResolvePlugin; exports.typeDefinitions = _chunkN7HP2YYEjs.typeDefinitions;
86
+ exports.DEFAULT_CSS_BANNER = _chunkMEINUFJYjs.DEFAULT_CSS_BANNER; exports.DEFAULT_ENVIRONMENT = _chunkMEINUFJYjs.DEFAULT_ENVIRONMENT; exports.DEFAULT_JS_BANNER = _chunkMEINUFJYjs.DEFAULT_JS_BANNER; exports.DEFAULT_ORGANIZATION = _chunkMEINUFJYjs.DEFAULT_ORGANIZATION; exports.DEFAULT_PLATFORM = _chunkMEINUFJYjs.DEFAULT_PLATFORM; exports.DEFAULT_TARGET = _chunkMEINUFJYjs.DEFAULT_TARGET; exports.addPackageDependencies = _chunkI7QYCTUEjs.addPackageDependencies; exports.addPackageJsonExport = _chunkI7QYCTUEjs.addPackageJsonExport; exports.addPackageJsonExports = _chunkI7QYCTUEjs.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkI7QYCTUEjs.addWorkspacePackageJsonFields; exports.analyze = _chunkGCMOLRPVjs.analyze; exports.copyAssets = _chunkCVDDEMTLjs.copyAssets; exports.createTaskId = _chunk22BBYWPIjs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunk22BBYWPIjs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunkJLYCFH5Ujs.getEntryPoints; exports.getEnv = _chunkNUMEQYRDjs.getEnv; exports.getExternalDependencies = _chunkWNMPQTPHjs.getExternalDependencies; exports.getExtraDependencies = _chunkWNMPQTPHjs.getExtraDependencies; exports.getFileBanner = _chunkUHJ5ACWHjs.getFileBanner; exports.getInternalDependencies = _chunkWNMPQTPHjs.getInternalDependencies; exports.getOutExtension = _chunkA75DEKU5js.getOutExtension; exports.readNxConfig = _chunkTJBQI2NXjs.readNxConfig; exports.swc = _chunkHQD5ZBIUjs.swc; exports.tsResolvePlugin = _chunkZW7ZNFGBjs.tsResolvePlugin; exports.typeDefinitions = _chunkN7HP2YYEjs.typeDefinitions;
package/dist/index.mjs CHANGED
@@ -1,33 +1,11 @@
1
1
  import "./chunk-KVP3YMX6.mjs";
2
- import {
3
- getOutExtension
4
- } from "./chunk-3VZVP5XV.mjs";
5
- import {
6
- getExternalDependencies,
7
- getExtraDependencies,
8
- getInternalDependencies
9
- } from "./chunk-ODQKLK6L.mjs";
10
2
  import {
11
3
  readNxConfig
12
4
  } from "./chunk-3442PT4M.mjs";
13
5
  import {
14
6
  createTaskId,
15
7
  getAllWorkspaceTaskGraphs
16
- } from "./chunk-JCFRYUYP.mjs";
17
- import "./chunk-UN3B7LBV.mjs";
18
- import {
19
- tsResolvePlugin
20
- } from "./chunk-W7UFCEAQ.mjs";
21
- import {
22
- typeDefinitions
23
- } from "./chunk-VGLIZ2H3.mjs";
24
- import {
25
- analyze
26
- } from "./chunk-NXOOAAV5.mjs";
27
- import {
28
- swc
29
- } from "./chunk-7YKXR5JJ.mjs";
30
- import "./chunk-WBQAMGXK.mjs";
8
+ } from "./chunk-3ZV5XL55.mjs";
31
9
  import {
32
10
  copyAssets
33
11
  } from "./chunk-44MPIE3V.mjs";
@@ -42,10 +20,20 @@ import {
42
20
  } from "./chunk-NF5NWMBX.mjs";
43
21
  import "./chunk-4JYK5AMY.mjs";
44
22
  import "./chunk-VXUVNB76.mjs";
45
- import "./chunk-NHOEBJLZ.mjs";
46
23
  import {
47
24
  getEnv
48
25
  } from "./chunk-FEQZSI32.mjs";
26
+ import {
27
+ getFileBanner
28
+ } from "./chunk-KUEYIH7W.mjs";
29
+ import {
30
+ getOutExtension
31
+ } from "./chunk-3VZVP5XV.mjs";
32
+ import {
33
+ getExternalDependencies,
34
+ getExtraDependencies,
35
+ getInternalDependencies
36
+ } from "./chunk-ODQKLK6L.mjs";
49
37
  import {
50
38
  DEFAULT_CSS_BANNER,
51
39
  DEFAULT_ENVIRONMENT,
@@ -54,9 +42,21 @@ import {
54
42
  DEFAULT_PLATFORM,
55
43
  DEFAULT_TARGET
56
44
  } from "./chunk-TJ6NHBO5.mjs";
45
+ import "./chunk-WBQAMGXK.mjs";
46
+ import "./chunk-UN3B7LBV.mjs";
57
47
  import {
58
- getFileBanner
59
- } from "./chunk-KUEYIH7W.mjs";
48
+ analyze
49
+ } from "./chunk-NXOOAAV5.mjs";
50
+ import {
51
+ swc
52
+ } from "./chunk-7YKXR5JJ.mjs";
53
+ import {
54
+ tsResolvePlugin
55
+ } from "./chunk-W7UFCEAQ.mjs";
56
+ import "./chunk-NHOEBJLZ.mjs";
57
+ import {
58
+ typeDefinitions
59
+ } from "./chunk-VGLIZ2H3.mjs";
60
60
  export {
61
61
  DEFAULT_CSS_BANNER,
62
62
  DEFAULT_ENVIRONMENT,
@@ -1,17 +1,17 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../chunk-WPFIBCZT.js');
2
2
 
3
3
 
4
- var _chunkZW7ZNFGBjs = require('../chunk-ZW7ZNFGB.js');
4
+ var _chunkGCMOLRPVjs = require('../chunk-GCMOLRPV.js');
5
5
 
6
6
 
7
- var _chunkN7HP2YYEjs = require('../chunk-N7HP2YYE.js');
7
+ var _chunkHQD5ZBIUjs = require('../chunk-HQD5ZBIU.js');
8
8
 
9
9
 
10
- var _chunkGCMOLRPVjs = require('../chunk-GCMOLRPV.js');
10
+ var _chunkZW7ZNFGBjs = require('../chunk-ZW7ZNFGB.js');
11
+ require('../chunk-YMEL2Q4P.js');
11
12
 
12
13
 
13
- var _chunkHQD5ZBIUjs = require('../chunk-HQD5ZBIU.js');
14
- require('../chunk-YMEL2Q4P.js');
14
+ var _chunkN7HP2YYEjs = require('../chunk-N7HP2YYE.js');
15
15
 
16
16
 
17
17
 
@@ -1,17 +1,17 @@
1
1
  import "../chunk-UN3B7LBV.mjs";
2
- import {
3
- tsResolvePlugin
4
- } from "../chunk-W7UFCEAQ.mjs";
5
- import {
6
- typeDefinitions
7
- } from "../chunk-VGLIZ2H3.mjs";
8
2
  import {
9
3
  analyze
10
4
  } from "../chunk-NXOOAAV5.mjs";
11
5
  import {
12
6
  swc
13
7
  } from "../chunk-7YKXR5JJ.mjs";
8
+ import {
9
+ tsResolvePlugin
10
+ } from "../chunk-W7UFCEAQ.mjs";
14
11
  import "../chunk-NHOEBJLZ.mjs";
12
+ import {
13
+ typeDefinitions
14
+ } from "../chunk-VGLIZ2H3.mjs";
15
15
  export {
16
16
  analyze,
17
17
  swc,
@@ -1,19 +1,11 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../chunk-65HIHTHN.js');
2
2
 
3
3
 
4
- var _chunkA75DEKU5js = require('../chunk-A75DEKU5.js');
5
-
6
-
7
-
8
-
9
- var _chunkWNMPQTPHjs = require('../chunk-WNMPQTPH.js');
10
-
11
-
12
4
  var _chunkTJBQI2NXjs = require('../chunk-TJBQI2NX.js');
13
5
 
14
6
 
15
7
 
16
- var _chunkP3MQZA3Djs = require('../chunk-P3MQZA3D.js');
8
+ var _chunk22BBYWPIjs = require('../chunk-22BBYWPI.js');
17
9
 
18
10
 
19
11
  var _chunkCVDDEMTLjs = require('../chunk-CVDDEMTL.js');
@@ -28,16 +20,24 @@ var _chunkI7QYCTUEjs = require('../chunk-I7QYCTUE.js');
28
20
  var _chunkJLYCFH5Ujs = require('../chunk-JLYCFH5U.js');
29
21
  require('../chunk-MV6AF3XD.js');
30
22
  require('../chunk-I2YBUOU3.js');
31
- require('../chunk-YMEL2Q4P.js');
32
23
 
33
24
 
34
25
  var _chunkNUMEQYRDjs = require('../chunk-NUMEQYRD.js');
35
- require('../chunk-MEINUFJY.js');
36
26
 
37
27
 
38
28
  var _chunkUHJ5ACWHjs = require('../chunk-UHJ5ACWH.js');
39
29
 
40
30
 
31
+ var _chunkA75DEKU5js = require('../chunk-A75DEKU5.js');
32
+
33
+
34
+
35
+
36
+ var _chunkWNMPQTPHjs = require('../chunk-WNMPQTPH.js');
37
+ require('../chunk-MEINUFJY.js');
38
+ require('../chunk-YMEL2Q4P.js');
39
+
40
+
41
41
 
42
42
 
43
43
 
@@ -52,4 +52,4 @@ var _chunkUHJ5ACWHjs = require('../chunk-UHJ5ACWH.js');
52
52
 
53
53
 
54
54
 
55
- exports.addPackageDependencies = _chunkI7QYCTUEjs.addPackageDependencies; exports.addPackageJsonExport = _chunkI7QYCTUEjs.addPackageJsonExport; exports.addPackageJsonExports = _chunkI7QYCTUEjs.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkI7QYCTUEjs.addWorkspacePackageJsonFields; exports.copyAssets = _chunkCVDDEMTLjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunkJLYCFH5Ujs.getEntryPoints; exports.getEnv = _chunkNUMEQYRDjs.getEnv; exports.getExternalDependencies = _chunkWNMPQTPHjs.getExternalDependencies; exports.getExtraDependencies = _chunkWNMPQTPHjs.getExtraDependencies; exports.getFileBanner = _chunkUHJ5ACWHjs.getFileBanner; exports.getInternalDependencies = _chunkWNMPQTPHjs.getInternalDependencies; exports.getOutExtension = _chunkA75DEKU5js.getOutExtension; exports.readNxConfig = _chunkTJBQI2NXjs.readNxConfig;
55
+ exports.addPackageDependencies = _chunkI7QYCTUEjs.addPackageDependencies; exports.addPackageJsonExport = _chunkI7QYCTUEjs.addPackageJsonExport; exports.addPackageJsonExports = _chunkI7QYCTUEjs.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkI7QYCTUEjs.addWorkspacePackageJsonFields; exports.copyAssets = _chunkCVDDEMTLjs.copyAssets; exports.createTaskId = _chunk22BBYWPIjs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunk22BBYWPIjs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunkJLYCFH5Ujs.getEntryPoints; exports.getEnv = _chunkNUMEQYRDjs.getEnv; exports.getExternalDependencies = _chunkWNMPQTPHjs.getExternalDependencies; exports.getExtraDependencies = _chunkWNMPQTPHjs.getExtraDependencies; exports.getFileBanner = _chunkUHJ5ACWHjs.getFileBanner; exports.getInternalDependencies = _chunkWNMPQTPHjs.getInternalDependencies; exports.getOutExtension = _chunkA75DEKU5js.getOutExtension; exports.readNxConfig = _chunkTJBQI2NXjs.readNxConfig;
@@ -1,19 +1,11 @@
1
1
  import "../chunk-KVP3YMX6.mjs";
2
- import {
3
- getOutExtension
4
- } from "../chunk-3VZVP5XV.mjs";
5
- import {
6
- getExternalDependencies,
7
- getExtraDependencies,
8
- getInternalDependencies
9
- } from "../chunk-ODQKLK6L.mjs";
10
2
  import {
11
3
  readNxConfig
12
4
  } from "../chunk-3442PT4M.mjs";
13
5
  import {
14
6
  createTaskId,
15
7
  getAllWorkspaceTaskGraphs
16
- } from "../chunk-JCFRYUYP.mjs";
8
+ } from "../chunk-3ZV5XL55.mjs";
17
9
  import {
18
10
  copyAssets
19
11
  } from "../chunk-44MPIE3V.mjs";
@@ -28,14 +20,22 @@ import {
28
20
  } from "../chunk-NF5NWMBX.mjs";
29
21
  import "../chunk-4JYK5AMY.mjs";
30
22
  import "../chunk-VXUVNB76.mjs";
31
- import "../chunk-NHOEBJLZ.mjs";
32
23
  import {
33
24
  getEnv
34
25
  } from "../chunk-FEQZSI32.mjs";
35
- import "../chunk-TJ6NHBO5.mjs";
36
26
  import {
37
27
  getFileBanner
38
28
  } from "../chunk-KUEYIH7W.mjs";
29
+ import {
30
+ getOutExtension
31
+ } from "../chunk-3VZVP5XV.mjs";
32
+ import {
33
+ getExternalDependencies,
34
+ getExtraDependencies,
35
+ getInternalDependencies
36
+ } from "../chunk-ODQKLK6L.mjs";
37
+ import "../chunk-TJ6NHBO5.mjs";
38
+ import "../chunk-NHOEBJLZ.mjs";
39
39
  export {
40
40
  addPackageDependencies,
41
41
  addPackageJsonExport,
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkP3MQZA3Djs = require('../chunk-P3MQZA3D.js');
4
+ var _chunk22BBYWPIjs = require('../chunk-22BBYWPI.js');
5
5
 
6
6
 
7
7
 
8
- exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs;
8
+ exports.createTaskId = _chunk22BBYWPIjs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunk22BBYWPIjs.getAllWorkspaceTaskGraphs;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createTaskId,
3
3
  getAllWorkspaceTaskGraphs
4
- } from "../chunk-JCFRYUYP.mjs";
4
+ } from "../chunk-3ZV5XL55.mjs";
5
5
  export {
6
6
  createTaskId,
7
7
  getAllWorkspaceTaskGraphs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/build-tools",
3
- "version": "0.158.271",
3
+ "version": "0.158.273",
4
4
  "private": false,
5
5
  "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.",
6
6
  "keywords": [
@@ -176,17 +176,17 @@
176
176
  "rollup": "^4.62.4"
177
177
  },
178
178
  "devDependencies": {
179
- "@nx/devkit": "23.0.1",
180
- "@nx/js": "23.0.1",
179
+ "@nx/devkit": "23.1.1",
180
+ "@nx/js": "23.1.1",
181
181
  "@types/node": "^25.9.5",
182
- "nx": "23.0.1",
182
+ "nx": "23.1.1",
183
183
  "tsup": "8.4.0",
184
184
  "typescript": "^6.0.3"
185
185
  },
186
186
  "peerDependencies": {
187
- "@nx/devkit": "23.0.1",
188
- "@nx/js": "23.0.1",
189
- "nx": "23.0.1",
187
+ "@nx/devkit": "23.1.1",
188
+ "@nx/js": "23.1.1",
189
+ "nx": "23.1.1",
190
190
  "typescript": "^6.0.3"
191
191
  },
192
192
  "peerDependenciesMeta": {
@@ -196,5 +196,5 @@
196
196
  "typescript": { "optional": false }
197
197
  },
198
198
  "publishConfig": { "access": "public" },
199
- "gitHead": "12f7e1011f68248061d3f51a5a9b92e390d7d932"
199
+ "gitHead": "c11ae2436e44e83c82a6562d0a8fc18cef58c475"
200
200
  }