@storm-software/build-tools 0.150.6 → 0.150.8
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-JJQN3HTQ.mjs → chunk-2QRSJ2XB.mjs} +52 -15
- package/dist/{chunk-D7ZBIHS7.mjs → chunk-3Q4PJ2CH.mjs} +1 -1
- package/dist/{chunk-TABRPMJB.js → chunk-7HCW6J5M.js} +9 -9
- package/dist/{chunk-DLSOQQ2X.mjs → chunk-FRWMSPKW.mjs} +1 -1
- package/dist/{chunk-XXESPGZP.js → chunk-GTGBVWZP.js} +55 -18
- package/dist/{chunk-BKMDH7XQ.mjs → chunk-I4GQIOV7.mjs} +1 -1
- package/dist/{chunk-2IACGL5A.mjs → chunk-JIOQYV3B.mjs} +1 -1
- package/dist/{chunk-673CAI2G.js → chunk-NQ3XUSZB.js} +2 -2
- package/dist/{chunk-ECGZDTG2.js → chunk-PETLJROI.js} +10 -10
- package/dist/{chunk-UNY7ZVZF.js → chunk-R6WRMQAA.js} +8 -8
- package/dist/{chunk-EGKFW7BM.js → chunk-S7FCLPMK.js} +50 -43
- package/dist/{chunk-TSUTFOQG.js → chunk-U2TNM7T7.js} +8 -8
- package/dist/{chunk-VWJLKDCB.mjs → chunk-U7PSAXCT.mjs} +12 -5
- package/dist/{chunk-7NL4YIH3.mjs → chunk-WBAOQRPY.mjs} +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +8 -8
- package/dist/index.mjs +7 -7
- package/dist/plugins/analyze.js +3 -3
- package/dist/plugins/analyze.mjs +2 -2
- package/dist/plugins/index.js +4 -4
- package/dist/plugins/index.mjs +3 -3
- package/dist/plugins/ts-resolve.js +3 -3
- package/dist/plugins/ts-resolve.mjs +2 -2
- package/dist/types-DK2Ei7Dy.d.mts +1289 -0
- package/dist/types-DK2Ei7Dy.d.ts +1289 -0
- package/dist/{types-Dsy6SjaO.d.ts → types-bock3dMj.d.mts} +11 -8
- package/dist/{types-Dsy6SjaO.d.mts → types-bock3dMj.d.ts} +11 -8
- package/dist/types.d.mts +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/utilities/copy-assets.d.mts +1 -1
- package/dist/utilities/copy-assets.d.ts +1 -1
- package/dist/utilities/copy-assets.js +3 -3
- package/dist/utilities/copy-assets.mjs +2 -2
- package/dist/utilities/generate-package-json.d.mts +1 -1
- package/dist/utilities/generate-package-json.d.ts +1 -1
- package/dist/utilities/generate-package-json.js +3 -3
- package/dist/utilities/generate-package-json.mjs +2 -2
- package/dist/utilities/get-entry-points.d.mts +1 -1
- package/dist/utilities/get-entry-points.d.ts +1 -1
- package/dist/utilities/get-entry-points.js +3 -3
- package/dist/utilities/get-entry-points.mjs +2 -2
- package/dist/utilities/get-env.d.mts +1 -1
- package/dist/utilities/get-env.d.ts +1 -1
- package/dist/utilities/index.d.mts +1 -1
- package/dist/utilities/index.d.ts +1 -1
- package/dist/utilities/index.js +6 -6
- package/dist/utilities/index.mjs +5 -5
- package/dist/utilities/read-nx-config.js +3 -3
- package/dist/utilities/read-nx-config.mjs +2 -2
- package/package.json +1 -1
|
@@ -11,10 +11,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
11
11
|
organization: z.ZodDefault<z.ZodString>;
|
|
12
12
|
repository: z.ZodOptional<z.ZodString>;
|
|
13
13
|
license: z.ZodDefault<z.ZodString>;
|
|
14
|
-
homepage: z.
|
|
15
|
-
docs: z.
|
|
16
|
-
licensing: z.
|
|
17
|
-
contact: z.
|
|
14
|
+
homepage: z.ZodOptional<z.ZodString>;
|
|
15
|
+
docs: z.ZodOptional<z.ZodString>;
|
|
16
|
+
licensing: z.ZodOptional<z.ZodString>;
|
|
17
|
+
contact: z.ZodOptional<z.ZodString>;
|
|
18
|
+
support: z.ZodOptional<z.ZodString>;
|
|
18
19
|
branch: z.ZodDefault<z.ZodString>;
|
|
19
20
|
preid: z.ZodOptional<z.ZodString>;
|
|
20
21
|
owner: z.ZodDefault<z.ZodString>;
|
|
@@ -843,10 +844,6 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
843
844
|
}, "strip", z.ZodTypeAny, {
|
|
844
845
|
organization: string;
|
|
845
846
|
license: string;
|
|
846
|
-
homepage: string;
|
|
847
|
-
docs: string;
|
|
848
|
-
licensing: string;
|
|
849
|
-
contact: string;
|
|
850
847
|
branch: string;
|
|
851
848
|
owner: string;
|
|
852
849
|
bot: {
|
|
@@ -1047,6 +1044,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1047
1044
|
extends?: string | string[] | undefined;
|
|
1048
1045
|
namespace?: string | undefined;
|
|
1049
1046
|
repository?: string | undefined;
|
|
1047
|
+
homepage?: string | undefined;
|
|
1048
|
+
docs?: string | undefined;
|
|
1049
|
+
licensing?: string | undefined;
|
|
1050
|
+
contact?: string | undefined;
|
|
1051
|
+
support?: string | undefined;
|
|
1050
1052
|
preid?: string | undefined;
|
|
1051
1053
|
skipConfigLogging?: boolean | undefined;
|
|
1052
1054
|
}, {
|
|
@@ -1238,6 +1240,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1238
1240
|
docs?: string | undefined;
|
|
1239
1241
|
licensing?: string | undefined;
|
|
1240
1242
|
contact?: string | undefined;
|
|
1243
|
+
support?: string | undefined;
|
|
1241
1244
|
branch?: string | undefined;
|
|
1242
1245
|
preid?: string | undefined;
|
|
1243
1246
|
owner?: string | undefined;
|
|
@@ -11,10 +11,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
11
11
|
organization: z.ZodDefault<z.ZodString>;
|
|
12
12
|
repository: z.ZodOptional<z.ZodString>;
|
|
13
13
|
license: z.ZodDefault<z.ZodString>;
|
|
14
|
-
homepage: z.
|
|
15
|
-
docs: z.
|
|
16
|
-
licensing: z.
|
|
17
|
-
contact: z.
|
|
14
|
+
homepage: z.ZodOptional<z.ZodString>;
|
|
15
|
+
docs: z.ZodOptional<z.ZodString>;
|
|
16
|
+
licensing: z.ZodOptional<z.ZodString>;
|
|
17
|
+
contact: z.ZodOptional<z.ZodString>;
|
|
18
|
+
support: z.ZodOptional<z.ZodString>;
|
|
18
19
|
branch: z.ZodDefault<z.ZodString>;
|
|
19
20
|
preid: z.ZodOptional<z.ZodString>;
|
|
20
21
|
owner: z.ZodDefault<z.ZodString>;
|
|
@@ -843,10 +844,6 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
843
844
|
}, "strip", z.ZodTypeAny, {
|
|
844
845
|
organization: string;
|
|
845
846
|
license: string;
|
|
846
|
-
homepage: string;
|
|
847
|
-
docs: string;
|
|
848
|
-
licensing: string;
|
|
849
|
-
contact: string;
|
|
850
847
|
branch: string;
|
|
851
848
|
owner: string;
|
|
852
849
|
bot: {
|
|
@@ -1047,6 +1044,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1047
1044
|
extends?: string | string[] | undefined;
|
|
1048
1045
|
namespace?: string | undefined;
|
|
1049
1046
|
repository?: string | undefined;
|
|
1047
|
+
homepage?: string | undefined;
|
|
1048
|
+
docs?: string | undefined;
|
|
1049
|
+
licensing?: string | undefined;
|
|
1050
|
+
contact?: string | undefined;
|
|
1051
|
+
support?: string | undefined;
|
|
1050
1052
|
preid?: string | undefined;
|
|
1051
1053
|
skipConfigLogging?: boolean | undefined;
|
|
1052
1054
|
}, {
|
|
@@ -1238,6 +1240,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1238
1240
|
docs?: string | undefined;
|
|
1239
1241
|
licensing?: string | undefined;
|
|
1240
1242
|
contact?: string | undefined;
|
|
1243
|
+
support?: string | undefined;
|
|
1241
1244
|
branch?: string | undefined;
|
|
1242
1245
|
preid?: string | undefined;
|
|
1243
1246
|
owner?: string | undefined;
|
package/dist/types.d.mts
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var _chunk7HCW6J5Mjs = require('../chunk-7HCW6J5M.js');
|
|
4
|
+
require('../chunk-GTGBVWZP.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.copyAssets =
|
|
7
|
+
exports.copyAssets = _chunk7HCW6J5Mjs.copyAssets;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { S as StormWorkspaceConfig } from '../types-
|
|
1
|
+
import { S as StormWorkspaceConfig } from '../types-bock3dMj.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 StormWorkspaceConfig } from '../types-
|
|
1
|
+
import { S as StormWorkspaceConfig } from '../types-bock3dMj.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,11 +3,11 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
7
|
-
require('../chunk-
|
|
6
|
+
var _chunkPETLJROIjs = require('../chunk-PETLJROI.js');
|
|
7
|
+
require('../chunk-GTGBVWZP.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
exports.addPackageDependencies =
|
|
13
|
+
exports.addPackageDependencies = _chunkPETLJROIjs.addPackageDependencies; exports.addPackageJsonExport = _chunkPETLJROIjs.addPackageJsonExport; exports.addPackageJsonExports = _chunkPETLJROIjs.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkPETLJROIjs.addWorkspacePackageJsonFields;
|
|
@@ -3,8 +3,8 @@ import {
|
|
|
3
3
|
addPackageJsonExport,
|
|
4
4
|
addPackageJsonExports,
|
|
5
5
|
addWorkspacePackageJsonFields
|
|
6
|
-
} from "../chunk-
|
|
7
|
-
import "../chunk-
|
|
6
|
+
} from "../chunk-JIOQYV3B.mjs";
|
|
7
|
+
import "../chunk-2QRSJ2XB.mjs";
|
|
8
8
|
export {
|
|
9
9
|
addPackageDependencies,
|
|
10
10
|
addPackageJsonExport,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var _chunkR6WRMQAAjs = require('../chunk-R6WRMQAA.js');
|
|
4
|
+
require('../chunk-GTGBVWZP.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.getEntryPoints =
|
|
7
|
+
exports.getEntryPoints = _chunkR6WRMQAAjs.getEntryPoints;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypeScriptBuildResolvedOptions, TypeScriptBuildEnv } from '../types.mjs';
|
|
2
|
-
import '../types-
|
|
2
|
+
import '../types-bock3dMj.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-
|
|
2
|
+
import '../types-bock3dMj.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-
|
|
10
|
+
import '../types-bock3dMj.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-
|
|
10
|
+
import '../types-bock3dMj.js';
|
|
11
11
|
import 'zod';
|
|
12
12
|
import '../types.js';
|
|
13
13
|
import '@nx/devkit';
|
package/dist/utilities/index.js
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../chunk-65HIHTHN.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkS7FCLPMKjs = require('../chunk-S7FCLPMK.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
var _chunkP3MQZA3Djs = require('../chunk-P3MQZA3D.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
var
|
|
11
|
+
var _chunk7HCW6J5Mjs = require('../chunk-7HCW6J5M.js');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
17
|
+
var _chunkPETLJROIjs = require('../chunk-PETLJROI.js');
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _chunkR6WRMQAAjs = require('../chunk-R6WRMQAA.js');
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
var _chunkWLW3DA6Xjs = require('../chunk-WLW3DA6X.js');
|
|
@@ -33,7 +33,7 @@ var _chunkA75DEKU5js = require('../chunk-A75DEKU5.js');
|
|
|
33
33
|
|
|
34
34
|
var _chunkWNMPQTPHjs = require('../chunk-WNMPQTPH.js');
|
|
35
35
|
require('../chunk-MYIXHZMS.js');
|
|
36
|
-
require('../chunk-
|
|
36
|
+
require('../chunk-GTGBVWZP.js');
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
|
|
@@ -50,4 +50,4 @@ require('../chunk-XXESPGZP.js');
|
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
|
|
53
|
-
exports.addPackageDependencies =
|
|
53
|
+
exports.addPackageDependencies = _chunkPETLJROIjs.addPackageDependencies; exports.addPackageJsonExport = _chunkPETLJROIjs.addPackageJsonExport; exports.addPackageJsonExports = _chunkPETLJROIjs.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkPETLJROIjs.addWorkspacePackageJsonFields; exports.copyAssets = _chunk7HCW6J5Mjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunkR6WRMQAAjs.getEntryPoints; exports.getEnv = _chunkWLW3DA6Xjs.getEnv; exports.getExternalDependencies = _chunkWNMPQTPHjs.getExternalDependencies; exports.getExtraDependencies = _chunkWNMPQTPHjs.getExtraDependencies; exports.getFileBanner = _chunkUHJ5ACWHjs.getFileBanner; exports.getInternalDependencies = _chunkWNMPQTPHjs.getInternalDependencies; exports.getOutExtension = _chunkA75DEKU5js.getOutExtension; exports.readNxConfig = _chunkS7FCLPMKjs.readNxConfig;
|
package/dist/utilities/index.mjs
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import "../chunk-KVP3YMX6.mjs";
|
|
2
2
|
import {
|
|
3
3
|
readNxConfig
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-U7PSAXCT.mjs";
|
|
5
5
|
import {
|
|
6
6
|
createTaskId,
|
|
7
7
|
getAllWorkspaceTaskGraphs
|
|
8
8
|
} from "../chunk-JCFRYUYP.mjs";
|
|
9
9
|
import {
|
|
10
10
|
copyAssets
|
|
11
|
-
} from "../chunk-
|
|
11
|
+
} from "../chunk-FRWMSPKW.mjs";
|
|
12
12
|
import {
|
|
13
13
|
addPackageDependencies,
|
|
14
14
|
addPackageJsonExport,
|
|
15
15
|
addPackageJsonExports,
|
|
16
16
|
addWorkspacePackageJsonFields
|
|
17
|
-
} from "../chunk-
|
|
17
|
+
} from "../chunk-JIOQYV3B.mjs";
|
|
18
18
|
import {
|
|
19
19
|
getEntryPoints
|
|
20
|
-
} from "../chunk-
|
|
20
|
+
} from "../chunk-3Q4PJ2CH.mjs";
|
|
21
21
|
import {
|
|
22
22
|
getEnv
|
|
23
23
|
} from "../chunk-HGTDDXA5.mjs";
|
|
@@ -33,7 +33,7 @@ import {
|
|
|
33
33
|
getInternalDependencies
|
|
34
34
|
} from "../chunk-ODQKLK6L.mjs";
|
|
35
35
|
import "../chunk-BEMVEXMQ.mjs";
|
|
36
|
-
import "../chunk-
|
|
36
|
+
import "../chunk-2QRSJ2XB.mjs";
|
|
37
37
|
export {
|
|
38
38
|
addPackageDependencies,
|
|
39
39
|
addPackageJsonExport,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var _chunkS7FCLPMKjs = require('../chunk-S7FCLPMK.js');
|
|
4
|
+
require('../chunk-GTGBVWZP.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.readNxConfig =
|
|
7
|
+
exports.readNxConfig = _chunkS7FCLPMKjs.readNxConfig;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/build-tools",
|
|
3
|
-
"version": "0.150.
|
|
3
|
+
"version": "0.150.8",
|
|
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",
|