@storm-software/build-tools 0.158.143 → 0.158.145

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.141-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.143-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 -->
@@ -37,7 +37,7 @@ var STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
37
37
  var STORM_DEFAULT_BANNER_ALT = "The workspace's banner image";
38
38
 
39
39
  // ../config/src/schema.ts
40
- import * as z from "zod/mini";
40
+ import * as z from "zod/v4/mini";
41
41
  var schemaRegistry = z.registry();
42
42
  var colorSchema = z.string().check(
43
43
  z.length(7),
@@ -1422,9 +1422,13 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
1422
1422
  configInput.variant = existsSync2(joinPaths(_workspaceRoot, "nx.json")) || existsSync2(joinPaths(_workspaceRoot, ".nx")) || existsSync2(joinPaths(_workspaceRoot, "lerna.json")) || existsSync2(joinPaths(_workspaceRoot, "turbo.json")) ? "monorepo" : "minimal";
1423
1423
  }
1424
1424
  try {
1425
- result = applyDefaultConfig(
1426
- await workspaceConfigSchema.parseAsync(configInput)
1425
+ const parseResult = await Promise.resolve(
1426
+ workspaceConfigSchema._zod.parse(
1427
+ { value: configInput, issues: [] },
1428
+ { async: true }
1429
+ )
1427
1430
  );
1431
+ result = applyDefaultConfig(parseResult.value);
1428
1432
  result.workspaceRoot ??= _workspaceRoot;
1429
1433
  } catch (error) {
1430
1434
  throw new Error(
@@ -37,7 +37,7 @@ var STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
37
37
  var STORM_DEFAULT_BANNER_ALT = "The workspace's banner image";
38
38
 
39
39
  // ../config/src/schema.ts
40
- var _mini = require('zod/mini'); var z = _interopRequireWildcard(_mini);
40
+ var _mini = require('zod/v4/mini'); var z = _interopRequireWildcard(_mini);
41
41
  var schemaRegistry = z.registry();
42
42
  var colorSchema = z.string().check(
43
43
  z.length(7),
@@ -1422,9 +1422,13 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
1422
1422
  configInput.variant = _fs.existsSync.call(void 0, _chunkI2YBUOU3js.joinPaths.call(void 0, _workspaceRoot, "nx.json")) || _fs.existsSync.call(void 0, _chunkI2YBUOU3js.joinPaths.call(void 0, _workspaceRoot, ".nx")) || _fs.existsSync.call(void 0, _chunkI2YBUOU3js.joinPaths.call(void 0, _workspaceRoot, "lerna.json")) || _fs.existsSync.call(void 0, _chunkI2YBUOU3js.joinPaths.call(void 0, _workspaceRoot, "turbo.json")) ? "monorepo" : "minimal";
1423
1423
  }
1424
1424
  try {
1425
- result = applyDefaultConfig(
1426
- await workspaceConfigSchema.parseAsync(configInput)
1425
+ const parseResult = await Promise.resolve(
1426
+ workspaceConfigSchema._zod.parse(
1427
+ { value: configInput, issues: [] },
1428
+ { async: true }
1429
+ )
1427
1430
  );
1431
+ result = applyDefaultConfig(parseResult.value);
1428
1432
  result.workspaceRoot ??= _workspaceRoot;
1429
1433
  } catch (error) {
1430
1434
  throw new Error(
package/dist/index.d.mts CHANGED
@@ -15,8 +15,8 @@ export { getExternalDependencies, getExtraDependencies, getInternalDependencies
15
15
  export { readNxConfig } from './utilities/read-nx-config.mjs';
16
16
  export { createTaskId, getAllWorkspaceTaskGraphs } from './utilities/task-graph.mjs';
17
17
  import 'rollup';
18
- import './types-7LQ1t5HR.mjs';
18
+ import './types-PxFFSOzM.mjs';
19
19
  import 'zod';
20
- import 'zod/mini';
20
+ import 'zod/v4/mini';
21
21
  import '@nx/devkit';
22
22
  import '@nx/js/src/utils/buildable-libs-utils';
package/dist/index.d.ts CHANGED
@@ -15,8 +15,8 @@ export { getExternalDependencies, getExtraDependencies, getInternalDependencies
15
15
  export { readNxConfig } from './utilities/read-nx-config.js';
16
16
  export { createTaskId, getAllWorkspaceTaskGraphs } from './utilities/task-graph.js';
17
17
  import 'rollup';
18
- import './types-7LQ1t5HR.js';
18
+ import './types-PxFFSOzM.js';
19
19
  import 'zod';
20
- import 'zod/mini';
20
+ import 'zod/v4/mini';
21
21
  import '@nx/devkit';
22
22
  import '@nx/js/src/utils/buildable-libs-utils';
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@
6
6
  var _chunkWNMPQTPHjs = require('./chunk-WNMPQTPH.js');
7
7
 
8
8
 
9
- var _chunkBK7ROZFJjs = require('./chunk-BK7ROZFJ.js');
9
+ var _chunkTMTS553Bjs = require('./chunk-TMTS553B.js');
10
10
 
11
11
 
12
12
 
@@ -88,4 +88,4 @@ var _chunkHQD5ZBIUjs = require('./chunk-HQD5ZBIU.js');
88
88
 
89
89
 
90
90
 
91
- 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.INTERNAL_PACKAGES = _chunkPI7QPASQjs.INTERNAL_PACKAGES; exports.addPackageDependencies = _chunkWH5UGVX7js.addPackageDependencies; exports.addPackageJsonExport = _chunkWH5UGVX7js.addPackageJsonExport; exports.addPackageJsonExports = _chunkWH5UGVX7js.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkWH5UGVX7js.addWorkspacePackageJsonFields; exports.analyze = _chunkKI36GZ5Njs.analyze; exports.copyAssets = _chunkSU3XIIJLjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunkRKVSF2KPjs.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 = _chunkBK7ROZFJjs.readNxConfig; exports.swc = _chunkHQD5ZBIUjs.swc; exports.tsResolvePlugin = _chunkTXTYCRUYjs.tsResolvePlugin; exports.typeDefinitions = _chunkN7HP2YYEjs.typeDefinitions;
91
+ 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.INTERNAL_PACKAGES = _chunkPI7QPASQjs.INTERNAL_PACKAGES; exports.addPackageDependencies = _chunkWH5UGVX7js.addPackageDependencies; exports.addPackageJsonExport = _chunkWH5UGVX7js.addPackageJsonExport; exports.addPackageJsonExports = _chunkWH5UGVX7js.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkWH5UGVX7js.addWorkspacePackageJsonFields; exports.analyze = _chunkKI36GZ5Njs.analyze; exports.copyAssets = _chunkSU3XIIJLjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunkRKVSF2KPjs.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 = _chunkTMTS553Bjs.readNxConfig; exports.swc = _chunkHQD5ZBIUjs.swc; exports.tsResolvePlugin = _chunkTXTYCRUYjs.tsResolvePlugin; exports.typeDefinitions = _chunkN7HP2YYEjs.typeDefinitions;
package/dist/index.mjs CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  } from "./chunk-ODQKLK6L.mjs";
7
7
  import {
8
8
  readNxConfig
9
- } from "./chunk-EOEGTTHV.mjs";
9
+ } from "./chunk-24R2RXIL.mjs";
10
10
  import {
11
11
  createTaskId,
12
12
  getAllWorkspaceTaskGraphs
@@ -1,5 +1,5 @@
1
1
  import * as z$1 from 'zod';
2
- import * as z from 'zod/mini';
2
+ import * as z from 'zod/v4/mini';
3
3
 
4
4
  /**
5
5
  * Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
@@ -1,5 +1,5 @@
1
1
  import * as z$1 from 'zod';
2
- import * as z from 'zod/mini';
2
+ import * as z from 'zod/v4/mini';
3
3
 
4
4
  /**
5
5
  * Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
package/dist/types.d.mts CHANGED
@@ -1,6 +1,6 @@
1
- import { S as StormWorkspaceConfig } from './types-7LQ1t5HR.mjs';
1
+ import { S as StormWorkspaceConfig } from './types-PxFFSOzM.mjs';
2
2
  import 'zod';
3
- import 'zod/mini';
3
+ import 'zod/v4/mini';
4
4
 
5
5
  type Entry = string | Record<string, string> | string[];
6
6
  type Platform = "browser" | "node" | "neutral";
package/dist/types.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- import { S as StormWorkspaceConfig } from './types-7LQ1t5HR.js';
1
+ import { S as StormWorkspaceConfig } from './types-PxFFSOzM.js';
2
2
  import 'zod';
3
- import 'zod/mini';
3
+ import 'zod/v4/mini';
4
4
 
5
5
  type Entry = string | Record<string, string> | string[];
6
6
  type Platform = "browser" | "node" | "neutral";
@@ -1,7 +1,7 @@
1
- import { S as StormWorkspaceConfig } from '../types-7LQ1t5HR.mjs';
1
+ import { S as StormWorkspaceConfig } from '../types-PxFFSOzM.mjs';
2
2
  import { AssetGlob } from '../types.mjs';
3
3
  import 'zod';
4
- import 'zod/mini';
4
+ import 'zod/v4/mini';
5
5
 
6
6
  declare const copyAssets: (config: StormWorkspaceConfig, assets: (AssetGlob | string)[], outputPath: string, projectRoot: string, sourceRoot: string, generatePackageJson?: boolean, includeSrc?: boolean, banner?: string, footer?: string) => Promise<void>;
7
7
 
@@ -1,7 +1,7 @@
1
- import { S as StormWorkspaceConfig } from '../types-7LQ1t5HR.js';
1
+ import { S as StormWorkspaceConfig } from '../types-PxFFSOzM.js';
2
2
  import { AssetGlob } from '../types.js';
3
3
  import 'zod';
4
- import 'zod/mini';
4
+ import 'zod/v4/mini';
5
5
 
6
6
  declare const copyAssets: (config: StormWorkspaceConfig, assets: (AssetGlob | string)[], outputPath: string, projectRoot: string, sourceRoot: string, generatePackageJson?: boolean, includeSrc?: boolean, banner?: string, footer?: string) => Promise<void>;
7
7
 
@@ -1,6 +1,6 @@
1
- import { S as StormWorkspaceConfig } from '../types-7LQ1t5HR.mjs';
1
+ import { S as StormWorkspaceConfig } from '../types-PxFFSOzM.mjs';
2
2
  import 'zod';
3
- import 'zod/mini';
3
+ import 'zod/v4/mini';
4
4
 
5
5
  declare const addPackageDependencies: (workspaceRoot: string, projectRoot: string, projectName: string, packageJson: Record<string, any>) => Promise<Record<string, any>>;
6
6
  declare const addWorkspacePackageJsonFields: (workspaceConfig: StormWorkspaceConfig, projectRoot: string, sourceRoot: string, projectName: string, includeSrc: boolean | undefined, packageJson: Record<string, any>) => Promise<Record<string, any>>;
@@ -1,6 +1,6 @@
1
- import { S as StormWorkspaceConfig } from '../types-7LQ1t5HR.js';
1
+ import { S as StormWorkspaceConfig } from '../types-PxFFSOzM.js';
2
2
  import 'zod';
3
- import 'zod/mini';
3
+ import 'zod/v4/mini';
4
4
 
5
5
  declare const addPackageDependencies: (workspaceRoot: string, projectRoot: string, projectName: string, packageJson: Record<string, any>) => Promise<Record<string, any>>;
6
6
  declare const addWorkspacePackageJsonFields: (workspaceConfig: StormWorkspaceConfig, projectRoot: string, sourceRoot: string, projectName: string, includeSrc: boolean | undefined, packageJson: Record<string, any>) => Promise<Record<string, any>>;
@@ -1,7 +1,7 @@
1
- import { S as StormWorkspaceConfig } from '../types-7LQ1t5HR.mjs';
1
+ import { S as StormWorkspaceConfig } from '../types-PxFFSOzM.mjs';
2
2
  import { Entry } from '../types.mjs';
3
3
  import 'zod';
4
- import 'zod/mini';
4
+ import 'zod/v4/mini';
5
5
 
6
6
  /**
7
7
  * Get the entry points for the build process
@@ -1,7 +1,7 @@
1
- import { S as StormWorkspaceConfig } from '../types-7LQ1t5HR.js';
1
+ import { S as StormWorkspaceConfig } from '../types-PxFFSOzM.js';
2
2
  import { Entry } from '../types.js';
3
3
  import 'zod';
4
- import 'zod/mini';
4
+ import 'zod/v4/mini';
5
5
 
6
6
  /**
7
7
  * Get the entry points for the build process
@@ -1,7 +1,7 @@
1
1
  import { TypeScriptBuildResolvedOptions, TypeScriptBuildEnv } from '../types.mjs';
2
- import '../types-7LQ1t5HR.mjs';
2
+ import '../types-PxFFSOzM.mjs';
3
3
  import 'zod';
4
- import 'zod/mini';
4
+ import 'zod/v4/mini';
5
5
 
6
6
  declare const getEnv: (builder: string, options: Pick<TypeScriptBuildResolvedOptions, "name" | "mode" | "orgName" | "platform" | "target" | "format">) => TypeScriptBuildEnv;
7
7
 
@@ -1,7 +1,7 @@
1
1
  import { TypeScriptBuildResolvedOptions, TypeScriptBuildEnv } from '../types.js';
2
- import '../types-7LQ1t5HR.js';
2
+ import '../types-PxFFSOzM.js';
3
3
  import 'zod';
4
- import 'zod/mini';
4
+ import 'zod/v4/mini';
5
5
 
6
6
  declare const getEnv: (builder: string, options: Pick<TypeScriptBuildResolvedOptions, "name" | "mode" | "orgName" | "platform" | "target" | "format">) => TypeScriptBuildEnv;
7
7
 
@@ -7,9 +7,9 @@ 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-7LQ1t5HR.mjs';
10
+ import '../types-PxFFSOzM.mjs';
11
11
  import 'zod';
12
- import 'zod/mini';
12
+ import 'zod/v4/mini';
13
13
  import '../types.mjs';
14
14
  import '@nx/devkit';
15
15
  import '@nx/js/src/utils/buildable-libs-utils';
@@ -7,9 +7,9 @@ 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-7LQ1t5HR.js';
10
+ import '../types-PxFFSOzM.js';
11
11
  import 'zod';
12
- import 'zod/mini';
12
+ import 'zod/v4/mini';
13
13
  import '../types.js';
14
14
  import '@nx/devkit';
15
15
  import '@nx/js/src/utils/buildable-libs-utils';
@@ -6,7 +6,7 @@
6
6
  var _chunkWNMPQTPHjs = require('../chunk-WNMPQTPH.js');
7
7
 
8
8
 
9
- var _chunkBK7ROZFJjs = require('../chunk-BK7ROZFJ.js');
9
+ var _chunkTMTS553Bjs = require('../chunk-TMTS553B.js');
10
10
 
11
11
 
12
12
 
@@ -52,4 +52,4 @@ require('../chunk-TTKYBNC2.js');
52
52
 
53
53
 
54
54
 
55
- exports.addPackageDependencies = _chunkWH5UGVX7js.addPackageDependencies; exports.addPackageJsonExport = _chunkWH5UGVX7js.addPackageJsonExport; exports.addPackageJsonExports = _chunkWH5UGVX7js.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkWH5UGVX7js.addWorkspacePackageJsonFields; exports.copyAssets = _chunkSU3XIIJLjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunkRKVSF2KPjs.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 = _chunkBK7ROZFJjs.readNxConfig;
55
+ exports.addPackageDependencies = _chunkWH5UGVX7js.addPackageDependencies; exports.addPackageJsonExport = _chunkWH5UGVX7js.addPackageJsonExport; exports.addPackageJsonExports = _chunkWH5UGVX7js.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkWH5UGVX7js.addWorkspacePackageJsonFields; exports.copyAssets = _chunkSU3XIIJLjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunkRKVSF2KPjs.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 = _chunkTMTS553Bjs.readNxConfig;
@@ -6,7 +6,7 @@ import {
6
6
  } from "../chunk-ODQKLK6L.mjs";
7
7
  import {
8
8
  readNxConfig
9
- } from "../chunk-EOEGTTHV.mjs";
9
+ } from "../chunk-24R2RXIL.mjs";
10
10
  import {
11
11
  createTaskId,
12
12
  getAllWorkspaceTaskGraphs
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkBK7ROZFJjs = require('../chunk-BK7ROZFJ.js');
3
+ var _chunkTMTS553Bjs = require('../chunk-TMTS553B.js');
4
4
  require('../chunk-BPRPYAQS.js');
5
5
  require('../chunk-I2YBUOU3.js');
6
6
  require('../chunk-TTKYBNC2.js');
7
7
 
8
8
 
9
- exports.readNxConfig = _chunkBK7ROZFJjs.readNxConfig;
9
+ exports.readNxConfig = _chunkTMTS553Bjs.readNxConfig;
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  readNxConfig
3
- } from "../chunk-EOEGTTHV.mjs";
3
+ } from "../chunk-24R2RXIL.mjs";
4
4
  import "../chunk-B4H42WDA.mjs";
5
5
  import "../chunk-VXUVNB76.mjs";
6
6
  import "../chunk-JAOQUOKQ.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/build-tools",
3
- "version": "0.158.143",
3
+ "version": "0.158.145",
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": [
@@ -196,5 +196,5 @@
196
196
  "typescript": { "optional": false }
197
197
  },
198
198
  "publishConfig": { "access": "public" },
199
- "gitHead": "c9e22f77a54addf393da062dd661a01624fea3b1"
199
+ "gitHead": "5e8536ca8d6f26e6b448632e0f50e6271dce0269"
200
200
  }