@storm-software/build-tools 0.151.11 → 0.151.13
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-WPW3VJUC.js → chunk-235LUEAH.js} +9 -9
- package/dist/{chunk-ID52XWB7.mjs → chunk-2HZVPJMV.mjs} +1 -1
- package/dist/{chunk-BIK66SHB.mjs → chunk-5L7QBSRV.mjs} +1 -1
- package/dist/{chunk-YN3N36EP.mjs → chunk-CR7LIMCR.mjs} +4 -4
- package/dist/{chunk-MBIOUB46.mjs → chunk-D5WU5JYO.mjs} +1 -1
- package/dist/{chunk-CTG52CN7.mjs → chunk-ECQCUT2Y.mjs} +1 -1
- package/dist/{chunk-TT5PCJSW.js → chunk-FLIDOA6P.js} +8 -8
- package/dist/{chunk-6CS2V6DM.mjs → chunk-N4IF4T2X.mjs} +1 -1
- package/dist/{chunk-MRM3NJBG.js → chunk-PHLEYLWC.js} +43 -43
- package/dist/{chunk-2DHPCEAI.js → chunk-T5QP6OGQ.js} +2 -2
- package/dist/{chunk-SYY3DLVH.js → chunk-TDDE2CMM.js} +4 -4
- package/dist/{chunk-LLWFAYFV.mjs → chunk-VI22ZXF5.mjs} +1 -1
- package/dist/{chunk-MQAQPDSW.js → chunk-VTDEKAO4.js} +8 -8
- package/dist/{chunk-NTIYDHI5.js → chunk-WMRWVQZ7.js} +10 -10
- 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-Dtcm4vJy.d.mts → types-3n8VOg4P.d.mts} +2 -52
- package/dist/{types-Dtcm4vJy.d.ts → types-3n8VOg4P.d.ts} +2 -52
- package/dist/types-D8j4iW-j.d.mts +217 -0
- package/dist/types-D8j4iW-j.d.ts +217 -0
- 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 +2 -2
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
import * as z from 'zod/v4';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
5
|
+
*/
|
|
6
|
+
declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
7
|
+
$schema: z.ZodDefault<z.ZodString>;
|
|
8
|
+
extends: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
9
|
+
name: z.ZodOptional<z.ZodString>;
|
|
10
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
11
|
+
organization: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
12
|
+
name: z.ZodString;
|
|
13
|
+
description: z.ZodOptional<z.ZodString>;
|
|
14
|
+
logo: z.ZodOptional<z.ZodString>;
|
|
15
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
16
|
+
url: z.ZodOptional<z.ZodString>;
|
|
17
|
+
}, z.core.$strip>, z.ZodString]>>;
|
|
18
|
+
repository: z.ZodOptional<z.ZodString>;
|
|
19
|
+
license: z.ZodDefault<z.ZodString>;
|
|
20
|
+
homepage: z.ZodOptional<z.ZodString>;
|
|
21
|
+
docs: z.ZodOptional<z.ZodString>;
|
|
22
|
+
portal: z.ZodOptional<z.ZodString>;
|
|
23
|
+
licensing: z.ZodOptional<z.ZodString>;
|
|
24
|
+
contact: z.ZodOptional<z.ZodString>;
|
|
25
|
+
support: z.ZodOptional<z.ZodString>;
|
|
26
|
+
branch: z.ZodDefault<z.ZodString>;
|
|
27
|
+
preid: z.ZodOptional<z.ZodString>;
|
|
28
|
+
owner: z.ZodDefault<z.ZodString>;
|
|
29
|
+
bot: z.ZodObject<{
|
|
30
|
+
name: z.ZodDefault<z.ZodString>;
|
|
31
|
+
email: z.ZodDefault<z.ZodString>;
|
|
32
|
+
}, z.core.$strip>;
|
|
33
|
+
release: z.ZodObject<{
|
|
34
|
+
banner: z.ZodDefault<z.ZodString>;
|
|
35
|
+
header: z.ZodOptional<z.ZodString>;
|
|
36
|
+
footer: z.ZodDefault<z.ZodString>;
|
|
37
|
+
}, z.core.$strip>;
|
|
38
|
+
account: z.ZodObject<{
|
|
39
|
+
twitter: z.ZodDefault<z.ZodString>;
|
|
40
|
+
discord: z.ZodDefault<z.ZodString>;
|
|
41
|
+
telegram: z.ZodDefault<z.ZodString>;
|
|
42
|
+
slack: z.ZodDefault<z.ZodString>;
|
|
43
|
+
medium: z.ZodDefault<z.ZodString>;
|
|
44
|
+
github: z.ZodDefault<z.ZodString>;
|
|
45
|
+
}, z.core.$strip>;
|
|
46
|
+
error: z.ZodObject<{
|
|
47
|
+
codesFile: z.ZodDefault<z.ZodString>;
|
|
48
|
+
url: z.ZodOptional<z.ZodString>;
|
|
49
|
+
}, z.core.$strip>;
|
|
50
|
+
mode: z.ZodDefault<z.ZodEnum<{
|
|
51
|
+
development: "development";
|
|
52
|
+
staging: "staging";
|
|
53
|
+
production: "production";
|
|
54
|
+
}>>;
|
|
55
|
+
workspaceRoot: z.ZodString;
|
|
56
|
+
externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
57
|
+
skipCache: z.ZodDefault<z.ZodBoolean>;
|
|
58
|
+
directories: z.ZodObject<{
|
|
59
|
+
cache: z.ZodOptional<z.ZodString>;
|
|
60
|
+
data: z.ZodOptional<z.ZodString>;
|
|
61
|
+
config: z.ZodOptional<z.ZodString>;
|
|
62
|
+
temp: z.ZodOptional<z.ZodString>;
|
|
63
|
+
log: z.ZodOptional<z.ZodString>;
|
|
64
|
+
build: z.ZodDefault<z.ZodString>;
|
|
65
|
+
}, z.core.$strip>;
|
|
66
|
+
packageManager: z.ZodDefault<z.ZodEnum<{
|
|
67
|
+
npm: "npm";
|
|
68
|
+
yarn: "yarn";
|
|
69
|
+
pnpm: "pnpm";
|
|
70
|
+
bun: "bun";
|
|
71
|
+
}>>;
|
|
72
|
+
timezone: z.ZodDefault<z.ZodString>;
|
|
73
|
+
locale: z.ZodDefault<z.ZodString>;
|
|
74
|
+
logLevel: z.ZodDefault<z.ZodEnum<{
|
|
75
|
+
debug: "debug";
|
|
76
|
+
error: "error";
|
|
77
|
+
success: "success";
|
|
78
|
+
silent: "silent";
|
|
79
|
+
fatal: "fatal";
|
|
80
|
+
warn: "warn";
|
|
81
|
+
info: "info";
|
|
82
|
+
trace: "trace";
|
|
83
|
+
all: "all";
|
|
84
|
+
}>>;
|
|
85
|
+
skipConfigLogging: z.ZodOptional<z.ZodBoolean>;
|
|
86
|
+
registry: z.ZodDefault<z.ZodObject<{
|
|
87
|
+
github: z.ZodOptional<z.ZodString>;
|
|
88
|
+
npm: z.ZodOptional<z.ZodString>;
|
|
89
|
+
cargo: z.ZodOptional<z.ZodString>;
|
|
90
|
+
cyclone: z.ZodOptional<z.ZodString>;
|
|
91
|
+
container: z.ZodOptional<z.ZodString>;
|
|
92
|
+
}, z.core.$strip>>;
|
|
93
|
+
configFile: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
94
|
+
colors: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
95
|
+
dark: z.ZodDefault<z.ZodString>;
|
|
96
|
+
light: z.ZodDefault<z.ZodString>;
|
|
97
|
+
brand: z.ZodDefault<z.ZodString>;
|
|
98
|
+
alternate: z.ZodOptional<z.ZodString>;
|
|
99
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
100
|
+
link: z.ZodOptional<z.ZodString>;
|
|
101
|
+
help: z.ZodDefault<z.ZodString>;
|
|
102
|
+
success: z.ZodDefault<z.ZodString>;
|
|
103
|
+
info: z.ZodDefault<z.ZodString>;
|
|
104
|
+
warning: z.ZodDefault<z.ZodString>;
|
|
105
|
+
danger: z.ZodDefault<z.ZodString>;
|
|
106
|
+
fatal: z.ZodOptional<z.ZodString>;
|
|
107
|
+
positive: z.ZodDefault<z.ZodString>;
|
|
108
|
+
negative: z.ZodDefault<z.ZodString>;
|
|
109
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
110
|
+
dark: z.ZodObject<{
|
|
111
|
+
foreground: z.ZodDefault<z.ZodString>;
|
|
112
|
+
background: z.ZodDefault<z.ZodString>;
|
|
113
|
+
brand: z.ZodDefault<z.ZodString>;
|
|
114
|
+
alternate: z.ZodOptional<z.ZodString>;
|
|
115
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
116
|
+
link: z.ZodOptional<z.ZodString>;
|
|
117
|
+
help: z.ZodDefault<z.ZodString>;
|
|
118
|
+
success: z.ZodDefault<z.ZodString>;
|
|
119
|
+
info: z.ZodDefault<z.ZodString>;
|
|
120
|
+
warning: z.ZodDefault<z.ZodString>;
|
|
121
|
+
danger: z.ZodDefault<z.ZodString>;
|
|
122
|
+
fatal: z.ZodOptional<z.ZodString>;
|
|
123
|
+
positive: z.ZodDefault<z.ZodString>;
|
|
124
|
+
negative: z.ZodDefault<z.ZodString>;
|
|
125
|
+
}, z.core.$strip>;
|
|
126
|
+
light: z.ZodObject<{
|
|
127
|
+
foreground: z.ZodDefault<z.ZodString>;
|
|
128
|
+
background: z.ZodDefault<z.ZodString>;
|
|
129
|
+
brand: z.ZodDefault<z.ZodString>;
|
|
130
|
+
alternate: z.ZodOptional<z.ZodString>;
|
|
131
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
132
|
+
link: z.ZodOptional<z.ZodString>;
|
|
133
|
+
help: z.ZodDefault<z.ZodString>;
|
|
134
|
+
success: z.ZodDefault<z.ZodString>;
|
|
135
|
+
info: z.ZodDefault<z.ZodString>;
|
|
136
|
+
warning: z.ZodDefault<z.ZodString>;
|
|
137
|
+
danger: z.ZodDefault<z.ZodString>;
|
|
138
|
+
fatal: z.ZodOptional<z.ZodString>;
|
|
139
|
+
positive: z.ZodDefault<z.ZodString>;
|
|
140
|
+
negative: z.ZodDefault<z.ZodString>;
|
|
141
|
+
}, z.core.$strip>;
|
|
142
|
+
}, z.core.$strip>]>, z.ZodRecord<z.ZodUnion<readonly [z.ZodLiteral<"base">, z.ZodString]>, z.ZodUnion<[z.ZodObject<{
|
|
143
|
+
dark: z.ZodDefault<z.ZodString>;
|
|
144
|
+
light: z.ZodDefault<z.ZodString>;
|
|
145
|
+
brand: z.ZodDefault<z.ZodString>;
|
|
146
|
+
alternate: z.ZodOptional<z.ZodString>;
|
|
147
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
148
|
+
link: z.ZodOptional<z.ZodString>;
|
|
149
|
+
help: z.ZodDefault<z.ZodString>;
|
|
150
|
+
success: z.ZodDefault<z.ZodString>;
|
|
151
|
+
info: z.ZodDefault<z.ZodString>;
|
|
152
|
+
warning: z.ZodDefault<z.ZodString>;
|
|
153
|
+
danger: z.ZodDefault<z.ZodString>;
|
|
154
|
+
fatal: z.ZodOptional<z.ZodString>;
|
|
155
|
+
positive: z.ZodDefault<z.ZodString>;
|
|
156
|
+
negative: z.ZodDefault<z.ZodString>;
|
|
157
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
158
|
+
dark: z.ZodObject<{
|
|
159
|
+
foreground: z.ZodDefault<z.ZodString>;
|
|
160
|
+
background: z.ZodDefault<z.ZodString>;
|
|
161
|
+
brand: z.ZodDefault<z.ZodString>;
|
|
162
|
+
alternate: z.ZodOptional<z.ZodString>;
|
|
163
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
164
|
+
link: z.ZodOptional<z.ZodString>;
|
|
165
|
+
help: z.ZodDefault<z.ZodString>;
|
|
166
|
+
success: z.ZodDefault<z.ZodString>;
|
|
167
|
+
info: z.ZodDefault<z.ZodString>;
|
|
168
|
+
warning: z.ZodDefault<z.ZodString>;
|
|
169
|
+
danger: z.ZodDefault<z.ZodString>;
|
|
170
|
+
fatal: z.ZodOptional<z.ZodString>;
|
|
171
|
+
positive: z.ZodDefault<z.ZodString>;
|
|
172
|
+
negative: z.ZodDefault<z.ZodString>;
|
|
173
|
+
}, z.core.$strip>;
|
|
174
|
+
light: z.ZodObject<{
|
|
175
|
+
foreground: z.ZodDefault<z.ZodString>;
|
|
176
|
+
background: z.ZodDefault<z.ZodString>;
|
|
177
|
+
brand: z.ZodDefault<z.ZodString>;
|
|
178
|
+
alternate: z.ZodOptional<z.ZodString>;
|
|
179
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
180
|
+
link: z.ZodOptional<z.ZodString>;
|
|
181
|
+
help: z.ZodDefault<z.ZodString>;
|
|
182
|
+
success: z.ZodDefault<z.ZodString>;
|
|
183
|
+
info: z.ZodDefault<z.ZodString>;
|
|
184
|
+
warning: z.ZodDefault<z.ZodString>;
|
|
185
|
+
danger: z.ZodDefault<z.ZodString>;
|
|
186
|
+
fatal: z.ZodOptional<z.ZodString>;
|
|
187
|
+
positive: z.ZodDefault<z.ZodString>;
|
|
188
|
+
negative: z.ZodDefault<z.ZodString>;
|
|
189
|
+
}, z.core.$strip>;
|
|
190
|
+
}, z.core.$strip>]>>]>;
|
|
191
|
+
extensions: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
192
|
+
}, z.core.$strip>;
|
|
193
|
+
|
|
194
|
+
type TStormWorkspaceConfig = z.infer<typeof stormWorkspaceConfigSchema>;
|
|
195
|
+
/**
|
|
196
|
+
* The Storm workspace's configuration object
|
|
197
|
+
*
|
|
198
|
+
* @remarks
|
|
199
|
+
* This type is used to define the configuration object for the entire Storm workspace/monorepo. The value is extracted from the `storm-workspace.json` file in the workspace root and the currently configuration environment variables. The value can be obtained by calling `getWorkspaceConfig()` in `@storm-software/config-tools`.
|
|
200
|
+
*
|
|
201
|
+
* @deprecated
|
|
202
|
+
* This type is deprecated and will be removed in the next major version. Use {@link StormWorkspaceConfig} instead.
|
|
203
|
+
*/
|
|
204
|
+
type StormConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = TStormWorkspaceConfig & {
|
|
205
|
+
extensions: (TStormWorkspaceConfig["extensions"] & {
|
|
206
|
+
[extensionName in TExtensionName]: TExtensionConfig;
|
|
207
|
+
}) | NonNullable<Record<string, any>>;
|
|
208
|
+
};
|
|
209
|
+
/**
|
|
210
|
+
* The Storm workspace's configuration object
|
|
211
|
+
*
|
|
212
|
+
* @remarks
|
|
213
|
+
* This type is used to define the configuration object for the entire Storm workspace/monorepo. The value is extracted from the `storm-workspace.json` file in the workspace root and the currently configuration environment variables. The value can be obtained by calling `getWorkspaceConfig()` in `@storm-software/config-tools`.
|
|
214
|
+
*/
|
|
215
|
+
type StormWorkspaceConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = StormConfig<TExtensionName, TExtensionConfig>;
|
|
216
|
+
|
|
217
|
+
export type { StormWorkspaceConfig as S };
|
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 _chunk235LUEAHjs = require('../chunk-235LUEAH.js');
|
|
4
|
+
require('../chunk-TDDE2CMM.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.copyAssets =
|
|
7
|
+
exports.copyAssets = _chunk235LUEAHjs.copyAssets;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { S as StormWorkspaceConfig } from '../types-
|
|
1
|
+
import { S as StormWorkspaceConfig } from '../types-3n8VOg4P.mjs';
|
|
2
2
|
import 'zod/v4';
|
|
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-3n8VOg4P.js';
|
|
2
2
|
import 'zod/v4';
|
|
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 _chunkWMRWVQZ7js = require('../chunk-WMRWVQZ7.js');
|
|
7
|
+
require('../chunk-TDDE2CMM.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
exports.addPackageDependencies =
|
|
13
|
+
exports.addPackageDependencies = _chunkWMRWVQZ7js.addPackageDependencies; exports.addPackageJsonExport = _chunkWMRWVQZ7js.addPackageJsonExport; exports.addPackageJsonExports = _chunkWMRWVQZ7js.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkWMRWVQZ7js.addWorkspacePackageJsonFields;
|
|
@@ -3,8 +3,8 @@ import {
|
|
|
3
3
|
addPackageJsonExport,
|
|
4
4
|
addPackageJsonExports,
|
|
5
5
|
addWorkspacePackageJsonFields
|
|
6
|
-
} from "../chunk-
|
|
7
|
-
import "../chunk-
|
|
6
|
+
} from "../chunk-5L7QBSRV.mjs";
|
|
7
|
+
import "../chunk-CR7LIMCR.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 _chunkVTDEKAO4js = require('../chunk-VTDEKAO4.js');
|
|
4
|
+
require('../chunk-TDDE2CMM.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.getEntryPoints =
|
|
7
|
+
exports.getEntryPoints = _chunkVTDEKAO4js.getEntryPoints;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypeScriptBuildResolvedOptions, TypeScriptBuildEnv } from '../types.mjs';
|
|
2
|
-
import '../types-
|
|
2
|
+
import '../types-3n8VOg4P.mjs';
|
|
3
3
|
import 'zod/v4';
|
|
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-3n8VOg4P.js';
|
|
3
3
|
import 'zod/v4';
|
|
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-3n8VOg4P.mjs';
|
|
11
11
|
import 'zod/v4';
|
|
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-3n8VOg4P.js';
|
|
11
11
|
import 'zod/v4';
|
|
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 _chunkPHLEYLWCjs = require('../chunk-PHLEYLWC.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
var _chunkP3MQZA3Djs = require('../chunk-P3MQZA3D.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
var
|
|
11
|
+
var _chunk235LUEAHjs = require('../chunk-235LUEAH.js');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
17
|
+
var _chunkWMRWVQZ7js = require('../chunk-WMRWVQZ7.js');
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _chunkVTDEKAO4js = require('../chunk-VTDEKAO4.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-TDDE2CMM.js');
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
|
|
@@ -50,4 +50,4 @@ require('../chunk-SYY3DLVH.js');
|
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
|
|
53
|
-
exports.addPackageDependencies =
|
|
53
|
+
exports.addPackageDependencies = _chunkWMRWVQZ7js.addPackageDependencies; exports.addPackageJsonExport = _chunkWMRWVQZ7js.addPackageJsonExport; exports.addPackageJsonExports = _chunkWMRWVQZ7js.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkWMRWVQZ7js.addWorkspacePackageJsonFields; exports.copyAssets = _chunk235LUEAHjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunkVTDEKAO4js.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 = _chunkPHLEYLWCjs.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-2HZVPJMV.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-D5WU5JYO.mjs";
|
|
12
12
|
import {
|
|
13
13
|
addPackageDependencies,
|
|
14
14
|
addPackageJsonExport,
|
|
15
15
|
addPackageJsonExports,
|
|
16
16
|
addWorkspacePackageJsonFields
|
|
17
|
-
} from "../chunk-
|
|
17
|
+
} from "../chunk-5L7QBSRV.mjs";
|
|
18
18
|
import {
|
|
19
19
|
getEntryPoints
|
|
20
|
-
} from "../chunk-
|
|
20
|
+
} from "../chunk-VI22ZXF5.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-CR7LIMCR.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 _chunkPHLEYLWCjs = require('../chunk-PHLEYLWC.js');
|
|
4
|
+
require('../chunk-TDDE2CMM.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.readNxConfig =
|
|
7
|
+
exports.readNxConfig = _chunkPHLEYLWCjs.readNxConfig;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/build-tools",
|
|
3
|
-
"version": "0.151.
|
|
3
|
+
"version": "0.151.13",
|
|
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",
|
|
@@ -168,5 +168,5 @@
|
|
|
168
168
|
"typescript": "^5.8.3"
|
|
169
169
|
},
|
|
170
170
|
"publishConfig": { "access": "public" },
|
|
171
|
-
"gitHead": "
|
|
171
|
+
"gitHead": "e6468ab12b68fbab0ed953c76772631bdbf17694"
|
|
172
172
|
}
|