@storm-software/build-tools 0.158.143 → 0.158.144
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 +1 -1
- package/dist/{chunk-EOEGTTHV.mjs → chunk-24R2RXIL.mjs} +7 -3
- package/dist/{chunk-BK7ROZFJ.js → chunk-TMTS553B.js} +7 -3
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.mjs +1 -1
- package/dist/{types-7LQ1t5HR.d.mts → types-PxFFSOzM.d.mts} +1 -1
- package/dist/{types-7LQ1t5HR.d.ts → types-PxFFSOzM.d.ts} +1 -1
- package/dist/types.d.mts +2 -2
- package/dist/types.d.ts +2 -2
- package/dist/utilities/copy-assets.d.mts +2 -2
- package/dist/utilities/copy-assets.d.ts +2 -2
- package/dist/utilities/generate-package-json.d.mts +2 -2
- package/dist/utilities/generate-package-json.d.ts +2 -2
- package/dist/utilities/get-entry-points.d.mts +2 -2
- package/dist/utilities/get-entry-points.d.ts +2 -2
- package/dist/utilities/get-env.d.mts +2 -2
- package/dist/utilities/get-env.d.ts +2 -2
- package/dist/utilities/index.d.mts +2 -2
- package/dist/utilities/index.d.ts +2 -2
- package/dist/utilities/index.js +2 -2
- package/dist/utilities/index.mjs +1 -1
- package/dist/utilities/read-nx-config.js +2 -2
- package/dist/utilities/read-nx-config.mjs +1 -1
- package/package.json +2 -2
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
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
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
|
-
|
|
1426
|
-
|
|
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
|
-
|
|
1426
|
-
|
|
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-
|
|
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-
|
|
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
|
|
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 =
|
|
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
package/dist/types.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { S as StormWorkspaceConfig } from './types-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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';
|
package/dist/utilities/index.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
var _chunkWNMPQTPHjs = require('../chunk-WNMPQTPH.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
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 =
|
|
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;
|
package/dist/utilities/index.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
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 =
|
|
9
|
+
exports.readNxConfig = _chunkTMTS553Bjs.readNxConfig;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/build-tools",
|
|
3
|
-
"version": "0.158.
|
|
3
|
+
"version": "0.158.144",
|
|
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": "
|
|
199
|
+
"gitHead": "6b69d24518cb551fa374e8769d1adfbc34448ffb"
|
|
200
200
|
}
|