@storm-software/build-tools 0.151.7 → 0.151.9
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-MKL5Y27F.mjs → chunk-2XBT7L44.mjs} +14 -3
- package/dist/{chunk-NS4C45JM.mjs → chunk-46D6MNXS.mjs} +1 -1
- package/dist/{chunk-TN2GANQN.js → chunk-AF2TCIHF.js} +8 -8
- package/dist/{chunk-YKHCDDKA.mjs → chunk-AFBMMFQN.mjs} +1 -1
- package/dist/{chunk-SEERZ2JR.mjs → chunk-BLY6BYC6.mjs} +1 -1
- package/dist/{chunk-EYW3TTNG.mjs → chunk-ENFZY5GA.mjs} +1 -1
- package/dist/{chunk-6Y3B4IWQ.js → chunk-F4WUX2LJ.js} +2 -2
- package/dist/{chunk-SK2HHQ74.js → chunk-IVICX4OH.js} +8 -8
- package/dist/{chunk-JAKX4BFP.mjs → chunk-PJ5CGKV4.mjs} +1 -1
- package/dist/{chunk-UIODWJMU.js → chunk-PWWAXIKO.js} +10 -10
- package/dist/{chunk-UHSZT2UP.js → chunk-QEEDXYKL.js} +9 -9
- package/dist/{chunk-APEVCDWC.mjs → chunk-UC4C5SCY.mjs} +35 -3
- package/dist/{chunk-J6WEWRXQ.js → chunk-XBURNOOH.js} +89 -78
- package/dist/{chunk-2JOIQLII.js → chunk-Y4N6UQVD.js} +77 -45
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- 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-B4rGVLza.d.mts +267 -0
- package/dist/types-B4rGVLza.d.ts +267 -0
- 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/copy-assets.js +3 -3
- package/dist/utilities/copy-assets.mjs +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/generate-package-json.js +3 -3
- package/dist/utilities/generate-package-json.mjs +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-entry-points.js +3 -3
- package/dist/utilities/get-entry-points.mjs +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 +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
- package/dist/types-BUGkxiRi.d.mts +0 -1292
- package/dist/types-BUGkxiRi.d.ts +0 -1292
|
@@ -0,0 +1,267 @@
|
|
|
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.ZodOptional<z.ZodNullable<z.ZodOptional<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
|
+
production: "production";
|
|
52
|
+
development: "development";
|
|
53
|
+
staging: "staging";
|
|
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
|
+
error: "error";
|
|
76
|
+
success: "success";
|
|
77
|
+
info: "info";
|
|
78
|
+
fatal: "fatal";
|
|
79
|
+
silent: "silent";
|
|
80
|
+
warn: "warn";
|
|
81
|
+
debug: "debug";
|
|
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.ZodUnion<readonly [z.ZodObject<{
|
|
143
|
+
base: z.ZodUnion<[z.ZodObject<{
|
|
144
|
+
dark: z.ZodDefault<z.ZodString>;
|
|
145
|
+
light: z.ZodDefault<z.ZodString>;
|
|
146
|
+
brand: z.ZodDefault<z.ZodString>;
|
|
147
|
+
alternate: z.ZodOptional<z.ZodString>;
|
|
148
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
149
|
+
link: z.ZodOptional<z.ZodString>;
|
|
150
|
+
help: z.ZodDefault<z.ZodString>;
|
|
151
|
+
success: z.ZodDefault<z.ZodString>;
|
|
152
|
+
info: z.ZodDefault<z.ZodString>;
|
|
153
|
+
warning: z.ZodDefault<z.ZodString>;
|
|
154
|
+
danger: z.ZodDefault<z.ZodString>;
|
|
155
|
+
fatal: z.ZodOptional<z.ZodString>;
|
|
156
|
+
positive: z.ZodDefault<z.ZodString>;
|
|
157
|
+
negative: z.ZodDefault<z.ZodString>;
|
|
158
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
159
|
+
dark: z.ZodObject<{
|
|
160
|
+
foreground: z.ZodDefault<z.ZodString>;
|
|
161
|
+
background: z.ZodDefault<z.ZodString>;
|
|
162
|
+
brand: z.ZodDefault<z.ZodString>;
|
|
163
|
+
alternate: z.ZodOptional<z.ZodString>;
|
|
164
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
165
|
+
link: z.ZodOptional<z.ZodString>;
|
|
166
|
+
help: z.ZodDefault<z.ZodString>;
|
|
167
|
+
success: z.ZodDefault<z.ZodString>;
|
|
168
|
+
info: z.ZodDefault<z.ZodString>;
|
|
169
|
+
warning: z.ZodDefault<z.ZodString>;
|
|
170
|
+
danger: z.ZodDefault<z.ZodString>;
|
|
171
|
+
fatal: z.ZodOptional<z.ZodString>;
|
|
172
|
+
positive: z.ZodDefault<z.ZodString>;
|
|
173
|
+
negative: z.ZodDefault<z.ZodString>;
|
|
174
|
+
}, z.core.$strip>;
|
|
175
|
+
light: z.ZodObject<{
|
|
176
|
+
foreground: z.ZodDefault<z.ZodString>;
|
|
177
|
+
background: z.ZodDefault<z.ZodString>;
|
|
178
|
+
brand: z.ZodDefault<z.ZodString>;
|
|
179
|
+
alternate: z.ZodOptional<z.ZodString>;
|
|
180
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
181
|
+
link: z.ZodOptional<z.ZodString>;
|
|
182
|
+
help: z.ZodDefault<z.ZodString>;
|
|
183
|
+
success: z.ZodDefault<z.ZodString>;
|
|
184
|
+
info: z.ZodDefault<z.ZodString>;
|
|
185
|
+
warning: z.ZodDefault<z.ZodString>;
|
|
186
|
+
danger: z.ZodDefault<z.ZodString>;
|
|
187
|
+
fatal: z.ZodOptional<z.ZodString>;
|
|
188
|
+
positive: z.ZodDefault<z.ZodString>;
|
|
189
|
+
negative: z.ZodDefault<z.ZodString>;
|
|
190
|
+
}, z.core.$strip>;
|
|
191
|
+
}, z.core.$strip>]>;
|
|
192
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
193
|
+
dark: z.ZodDefault<z.ZodString>;
|
|
194
|
+
light: z.ZodDefault<z.ZodString>;
|
|
195
|
+
brand: z.ZodDefault<z.ZodString>;
|
|
196
|
+
alternate: z.ZodOptional<z.ZodString>;
|
|
197
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
198
|
+
link: z.ZodOptional<z.ZodString>;
|
|
199
|
+
help: z.ZodDefault<z.ZodString>;
|
|
200
|
+
success: z.ZodDefault<z.ZodString>;
|
|
201
|
+
info: z.ZodDefault<z.ZodString>;
|
|
202
|
+
warning: z.ZodDefault<z.ZodString>;
|
|
203
|
+
danger: z.ZodDefault<z.ZodString>;
|
|
204
|
+
fatal: z.ZodOptional<z.ZodString>;
|
|
205
|
+
positive: z.ZodDefault<z.ZodString>;
|
|
206
|
+
negative: z.ZodDefault<z.ZodString>;
|
|
207
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
208
|
+
dark: z.ZodObject<{
|
|
209
|
+
foreground: z.ZodDefault<z.ZodString>;
|
|
210
|
+
background: z.ZodDefault<z.ZodString>;
|
|
211
|
+
brand: z.ZodDefault<z.ZodString>;
|
|
212
|
+
alternate: z.ZodOptional<z.ZodString>;
|
|
213
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
214
|
+
link: z.ZodOptional<z.ZodString>;
|
|
215
|
+
help: z.ZodDefault<z.ZodString>;
|
|
216
|
+
success: z.ZodDefault<z.ZodString>;
|
|
217
|
+
info: z.ZodDefault<z.ZodString>;
|
|
218
|
+
warning: z.ZodDefault<z.ZodString>;
|
|
219
|
+
danger: z.ZodDefault<z.ZodString>;
|
|
220
|
+
fatal: z.ZodOptional<z.ZodString>;
|
|
221
|
+
positive: z.ZodDefault<z.ZodString>;
|
|
222
|
+
negative: z.ZodDefault<z.ZodString>;
|
|
223
|
+
}, z.core.$strip>;
|
|
224
|
+
light: z.ZodObject<{
|
|
225
|
+
foreground: z.ZodDefault<z.ZodString>;
|
|
226
|
+
background: z.ZodDefault<z.ZodString>;
|
|
227
|
+
brand: z.ZodDefault<z.ZodString>;
|
|
228
|
+
alternate: z.ZodOptional<z.ZodString>;
|
|
229
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
230
|
+
link: z.ZodOptional<z.ZodString>;
|
|
231
|
+
help: z.ZodDefault<z.ZodString>;
|
|
232
|
+
success: z.ZodDefault<z.ZodString>;
|
|
233
|
+
info: z.ZodDefault<z.ZodString>;
|
|
234
|
+
warning: z.ZodDefault<z.ZodString>;
|
|
235
|
+
danger: z.ZodDefault<z.ZodString>;
|
|
236
|
+
fatal: z.ZodOptional<z.ZodString>;
|
|
237
|
+
positive: z.ZodDefault<z.ZodString>;
|
|
238
|
+
negative: z.ZodDefault<z.ZodString>;
|
|
239
|
+
}, z.core.$strip>;
|
|
240
|
+
}, z.core.$strip>]>>]>]>;
|
|
241
|
+
extensions: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
242
|
+
}, z.core.$strip>;
|
|
243
|
+
|
|
244
|
+
type TStormWorkspaceConfig = z.infer<typeof stormWorkspaceConfigSchema>;
|
|
245
|
+
/**
|
|
246
|
+
* The Storm workspace's configuration object
|
|
247
|
+
*
|
|
248
|
+
* @remarks
|
|
249
|
+
* 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`.
|
|
250
|
+
*
|
|
251
|
+
* @deprecated
|
|
252
|
+
* This type is deprecated and will be removed in the next major version. Use `StormWorkspaceConfig` instead.
|
|
253
|
+
*/
|
|
254
|
+
type StormConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = TStormWorkspaceConfig & {
|
|
255
|
+
extensions: (TStormWorkspaceConfig["extensions"] & {
|
|
256
|
+
[extensionName in TExtensionName]: TExtensionConfig;
|
|
257
|
+
}) | NonNullable<Record<string, any>>;
|
|
258
|
+
};
|
|
259
|
+
/**
|
|
260
|
+
* The Storm workspace's configuration object
|
|
261
|
+
*
|
|
262
|
+
* @remarks
|
|
263
|
+
* 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`.
|
|
264
|
+
*/
|
|
265
|
+
type StormWorkspaceConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = StormConfig<TExtensionName, TExtensionConfig>;
|
|
266
|
+
|
|
267
|
+
export type { StormWorkspaceConfig as S };
|
package/dist/types.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as StormWorkspaceConfig } from './types-
|
|
2
|
-
import 'zod';
|
|
1
|
+
import { S as StormWorkspaceConfig } from './types-B4rGVLza.mjs';
|
|
2
|
+
import 'zod/v4';
|
|
3
3
|
|
|
4
4
|
type Entry = string | Record<string, string> | string[];
|
|
5
5
|
type Platform = "browser" | "node" | "neutral";
|
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as StormWorkspaceConfig } from './types-
|
|
2
|
-
import 'zod';
|
|
1
|
+
import { S as StormWorkspaceConfig } from './types-B4rGVLza.js';
|
|
2
|
+
import 'zod/v4';
|
|
3
3
|
|
|
4
4
|
type Entry = string | Record<string, string> | string[];
|
|
5
5
|
type Platform = "browser" | "node" | "neutral";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { S as StormWorkspaceConfig } from '../types-
|
|
1
|
+
import { S as StormWorkspaceConfig } from '../types-B4rGVLza.mjs';
|
|
2
2
|
import { AssetGlob } from '../types.mjs';
|
|
3
|
-
import 'zod';
|
|
3
|
+
import 'zod/v4';
|
|
4
4
|
|
|
5
5
|
declare const copyAssets: (config: StormWorkspaceConfig, assets: (AssetGlob | string)[], outputPath: string, projectRoot: string, sourceRoot: string, generatePackageJson?: boolean, includeSrc?: boolean, banner?: string, footer?: string) => Promise<void>;
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { S as StormWorkspaceConfig } from '../types-
|
|
1
|
+
import { S as StormWorkspaceConfig } from '../types-B4rGVLza.js';
|
|
2
2
|
import { AssetGlob } from '../types.js';
|
|
3
|
-
import 'zod';
|
|
3
|
+
import 'zod/v4';
|
|
4
4
|
|
|
5
5
|
declare const copyAssets: (config: StormWorkspaceConfig, assets: (AssetGlob | string)[], outputPath: string, projectRoot: string, sourceRoot: string, generatePackageJson?: boolean, includeSrc?: boolean, banner?: string, footer?: string) => Promise<void>;
|
|
6
6
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var _chunkQEEDXYKLjs = require('../chunk-QEEDXYKL.js');
|
|
4
|
+
require('../chunk-XBURNOOH.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.copyAssets =
|
|
7
|
+
exports.copyAssets = _chunkQEEDXYKLjs.copyAssets;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as StormWorkspaceConfig } from '../types-
|
|
2
|
-
import 'zod';
|
|
1
|
+
import { S as StormWorkspaceConfig } from '../types-B4rGVLza.mjs';
|
|
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>>;
|
|
5
5
|
declare const addWorkspacePackageJsonFields: (workspaceConfig: StormWorkspaceConfig, projectRoot: string, sourceRoot: string, projectName: string, includeSrc: boolean | undefined, packageJson: Record<string, any>) => Promise<Record<string, any>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as StormWorkspaceConfig } from '../types-
|
|
2
|
-
import 'zod';
|
|
1
|
+
import { S as StormWorkspaceConfig } from '../types-B4rGVLza.js';
|
|
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>>;
|
|
5
5
|
declare const addWorkspacePackageJsonFields: (workspaceConfig: StormWorkspaceConfig, projectRoot: string, sourceRoot: string, projectName: string, includeSrc: boolean | undefined, 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 _chunkPWWAXIKOjs = require('../chunk-PWWAXIKO.js');
|
|
7
|
+
require('../chunk-XBURNOOH.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
exports.addPackageDependencies =
|
|
13
|
+
exports.addPackageDependencies = _chunkPWWAXIKOjs.addPackageDependencies; exports.addPackageJsonExport = _chunkPWWAXIKOjs.addPackageJsonExport; exports.addPackageJsonExports = _chunkPWWAXIKOjs.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkPWWAXIKOjs.addWorkspacePackageJsonFields;
|
|
@@ -3,8 +3,8 @@ import {
|
|
|
3
3
|
addPackageJsonExport,
|
|
4
4
|
addPackageJsonExports,
|
|
5
5
|
addWorkspacePackageJsonFields
|
|
6
|
-
} from "../chunk-
|
|
7
|
-
import "../chunk-
|
|
6
|
+
} from "../chunk-AFBMMFQN.mjs";
|
|
7
|
+
import "../chunk-2XBT7L44.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 _chunkAF2TCIHFjs = require('../chunk-AF2TCIHF.js');
|
|
4
|
+
require('../chunk-XBURNOOH.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.getEntryPoints =
|
|
7
|
+
exports.getEntryPoints = _chunkAF2TCIHFjs.getEntryPoints;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { TypeScriptBuildResolvedOptions, TypeScriptBuildEnv } from '../types.mjs';
|
|
2
|
-
import '../types-
|
|
3
|
-
import 'zod';
|
|
2
|
+
import '../types-B4rGVLza.mjs';
|
|
3
|
+
import 'zod/v4';
|
|
4
4
|
|
|
5
5
|
declare const getEnv: (builder: string, options: Pick<TypeScriptBuildResolvedOptions, "name" | "mode" | "orgName" | "platform" | "target" | "format">) => TypeScriptBuildEnv;
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { TypeScriptBuildResolvedOptions, TypeScriptBuildEnv } from '../types.js';
|
|
2
|
-
import '../types-
|
|
3
|
-
import 'zod';
|
|
2
|
+
import '../types-B4rGVLza.js';
|
|
3
|
+
import 'zod/v4';
|
|
4
4
|
|
|
5
5
|
declare const getEnv: (builder: string, options: Pick<TypeScriptBuildResolvedOptions, "name" | "mode" | "orgName" | "platform" | "target" | "format">) => TypeScriptBuildEnv;
|
|
6
6
|
|
|
@@ -7,8 +7,8 @@ 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-
|
|
11
|
-
import 'zod';
|
|
10
|
+
import '../types-B4rGVLza.mjs';
|
|
11
|
+
import 'zod/v4';
|
|
12
12
|
import '../types.mjs';
|
|
13
13
|
import '@nx/devkit';
|
|
14
14
|
import '@nx/js/src/utils/buildable-libs-utils';
|
|
@@ -7,8 +7,8 @@ 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-
|
|
11
|
-
import 'zod';
|
|
10
|
+
import '../types-B4rGVLza.js';
|
|
11
|
+
import 'zod/v4';
|
|
12
12
|
import '../types.js';
|
|
13
13
|
import '@nx/devkit';
|
|
14
14
|
import '@nx/js/src/utils/buildable-libs-utils';
|
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 _chunkY4N6UQVDjs = require('../chunk-Y4N6UQVD.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
var _chunkP3MQZA3Djs = require('../chunk-P3MQZA3D.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
var
|
|
11
|
+
var _chunkQEEDXYKLjs = require('../chunk-QEEDXYKL.js');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
17
|
+
var _chunkPWWAXIKOjs = require('../chunk-PWWAXIKO.js');
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _chunkAF2TCIHFjs = require('../chunk-AF2TCIHF.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-XBURNOOH.js');
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
|
|
@@ -50,4 +50,4 @@ require('../chunk-J6WEWRXQ.js');
|
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
|
|
53
|
-
exports.addPackageDependencies =
|
|
53
|
+
exports.addPackageDependencies = _chunkPWWAXIKOjs.addPackageDependencies; exports.addPackageJsonExport = _chunkPWWAXIKOjs.addPackageJsonExport; exports.addPackageJsonExports = _chunkPWWAXIKOjs.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkPWWAXIKOjs.addWorkspacePackageJsonFields; exports.copyAssets = _chunkQEEDXYKLjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunkAF2TCIHFjs.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 = _chunkY4N6UQVDjs.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-UC4C5SCY.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-46D6MNXS.mjs";
|
|
12
12
|
import {
|
|
13
13
|
addPackageDependencies,
|
|
14
14
|
addPackageJsonExport,
|
|
15
15
|
addPackageJsonExports,
|
|
16
16
|
addWorkspacePackageJsonFields
|
|
17
|
-
} from "../chunk-
|
|
17
|
+
} from "../chunk-AFBMMFQN.mjs";
|
|
18
18
|
import {
|
|
19
19
|
getEntryPoints
|
|
20
|
-
} from "../chunk-
|
|
20
|
+
} from "../chunk-BLY6BYC6.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-2XBT7L44.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 _chunkY4N6UQVDjs = require('../chunk-Y4N6UQVD.js');
|
|
4
|
+
require('../chunk-XBURNOOH.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.readNxConfig =
|
|
7
|
+
exports.readNxConfig = _chunkY4N6UQVDjs.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.9",
|
|
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",
|