@storm-software/unbuild 0.49.59 → 0.49.66
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/bin/unbuild.cjs +392 -312
- package/bin/unbuild.js +392 -312
- package/dist/build.cjs +7 -7
- package/dist/build.js +6 -6
- package/dist/{chunk-QNJHN6NF.cjs → chunk-5LYLEQEH.cjs} +3 -3
- package/dist/{chunk-CPOQ3QRP.js → chunk-5MW4VNSZ.js} +669 -34
- package/dist/{chunk-3QBGMWVL.js → chunk-H4F245VJ.js} +1 -1
- package/dist/chunk-KRY2I44J.cjs +317 -0
- package/dist/{chunk-U2JTX5UH.js → chunk-NRCPBIXP.js} +1 -1
- package/dist/{chunk-SLMCYERU.js → chunk-OOFI7BOW.js} +1 -1
- package/dist/{chunk-KCEFJ3KA.js → chunk-QQE3PPKS.js} +1 -1
- package/dist/{chunk-WVBB4LDX.cjs → chunk-QRSVSWU2.cjs} +2 -2
- package/dist/{chunk-3UNJMX5X.cjs → chunk-ULVTNQE3.cjs} +3 -3
- package/dist/{chunk-ETV4W5W2.cjs → chunk-UM5MAKNS.cjs} +765 -130
- package/dist/chunk-VKJOPPWJ.js +317 -0
- package/dist/{chunk-37HUZIZ5.cjs → chunk-XYM4DLHB.cjs} +2 -2
- package/dist/clean.cjs +3 -3
- package/dist/clean.js +2 -2
- package/dist/index.cjs +7 -7
- package/dist/index.js +6 -6
- package/dist/plugins/analyze.cjs +3 -3
- package/dist/plugins/analyze.js +2 -2
- package/dist/plugins/on-error.cjs +3 -3
- package/dist/plugins/on-error.js +2 -2
- package/dist/plugins/tsc.cjs +3 -3
- package/dist/plugins/tsc.js +2 -2
- package/package.json +5 -5
- package/dist/chunk-2RC3F2SN.cjs +0 -886
- package/dist/chunk-QX4UI7BX.js +0 -886
|
@@ -0,0 +1,317 @@
|
|
|
1
|
+
// ../config-tools/src/types.ts
|
|
2
|
+
var LogLevel = {
|
|
3
|
+
SILENT: 0,
|
|
4
|
+
FATAL: 10,
|
|
5
|
+
ERROR: 20,
|
|
6
|
+
WARN: 30,
|
|
7
|
+
SUCCESS: 35,
|
|
8
|
+
INFO: 40,
|
|
9
|
+
DEBUG: 60,
|
|
10
|
+
TRACE: 70,
|
|
11
|
+
ALL: 100
|
|
12
|
+
};
|
|
13
|
+
var LogLevelLabel = {
|
|
14
|
+
SILENT: "silent",
|
|
15
|
+
FATAL: "fatal",
|
|
16
|
+
ERROR: "error",
|
|
17
|
+
WARN: "warn",
|
|
18
|
+
SUCCESS: "success",
|
|
19
|
+
INFO: "info",
|
|
20
|
+
DEBUG: "debug",
|
|
21
|
+
TRACE: "trace",
|
|
22
|
+
ALL: "all"
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
// ../config-tools/src/logger/get-log-level.ts
|
|
26
|
+
var getLogLevel = (label) => {
|
|
27
|
+
switch (label) {
|
|
28
|
+
case "all":
|
|
29
|
+
return LogLevel.ALL;
|
|
30
|
+
case "trace":
|
|
31
|
+
return LogLevel.TRACE;
|
|
32
|
+
case "debug":
|
|
33
|
+
return LogLevel.DEBUG;
|
|
34
|
+
case "info":
|
|
35
|
+
return LogLevel.INFO;
|
|
36
|
+
case "warn":
|
|
37
|
+
return LogLevel.WARN;
|
|
38
|
+
case "error":
|
|
39
|
+
return LogLevel.ERROR;
|
|
40
|
+
case "fatal":
|
|
41
|
+
return LogLevel.FATAL;
|
|
42
|
+
case "silent":
|
|
43
|
+
return LogLevel.SILENT;
|
|
44
|
+
default:
|
|
45
|
+
return LogLevel.INFO;
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
var getLogLevelLabel = (logLevel = LogLevel.INFO) => {
|
|
49
|
+
if (logLevel >= LogLevel.ALL) {
|
|
50
|
+
return LogLevelLabel.ALL;
|
|
51
|
+
}
|
|
52
|
+
if (logLevel >= LogLevel.TRACE) {
|
|
53
|
+
return LogLevelLabel.TRACE;
|
|
54
|
+
}
|
|
55
|
+
if (logLevel >= LogLevel.DEBUG) {
|
|
56
|
+
return LogLevelLabel.DEBUG;
|
|
57
|
+
}
|
|
58
|
+
if (logLevel >= LogLevel.INFO) {
|
|
59
|
+
return LogLevelLabel.INFO;
|
|
60
|
+
}
|
|
61
|
+
if (logLevel >= LogLevel.WARN) {
|
|
62
|
+
return LogLevelLabel.WARN;
|
|
63
|
+
}
|
|
64
|
+
if (logLevel >= LogLevel.ERROR) {
|
|
65
|
+
return LogLevelLabel.ERROR;
|
|
66
|
+
}
|
|
67
|
+
if (logLevel >= LogLevel.FATAL) {
|
|
68
|
+
return LogLevelLabel.FATAL;
|
|
69
|
+
}
|
|
70
|
+
if (logLevel <= LogLevel.SILENT) {
|
|
71
|
+
return LogLevelLabel.SILENT;
|
|
72
|
+
}
|
|
73
|
+
return LogLevelLabel.INFO;
|
|
74
|
+
};
|
|
75
|
+
var isVerbose = (label = LogLevelLabel.SILENT) => {
|
|
76
|
+
const logLevel = typeof label === "string" ? getLogLevel(label) : label;
|
|
77
|
+
return logLevel >= LogLevel.DEBUG;
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
// ../config-tools/src/utilities/colors.ts
|
|
81
|
+
var DEFAULT_COLOR_CONFIG = {
|
|
82
|
+
light: {
|
|
83
|
+
background: "#fafafa",
|
|
84
|
+
foreground: "#1d1e22",
|
|
85
|
+
brand: "#1fb2a6",
|
|
86
|
+
alternate: "#db2777",
|
|
87
|
+
help: "#5C4EE5",
|
|
88
|
+
success: "#087f5b",
|
|
89
|
+
info: "#0550ae",
|
|
90
|
+
warning: "#e3b341",
|
|
91
|
+
danger: "#D8314A",
|
|
92
|
+
fatal: "#51070f",
|
|
93
|
+
link: "#3fa6ff",
|
|
94
|
+
positive: "#22c55e",
|
|
95
|
+
negative: "#dc2626",
|
|
96
|
+
gradient: ["#1fb2a6", "#db2777", "#5C4EE5"]
|
|
97
|
+
},
|
|
98
|
+
dark: {
|
|
99
|
+
background: "#1d1e22",
|
|
100
|
+
foreground: "#cbd5e1",
|
|
101
|
+
brand: "#2dd4bf",
|
|
102
|
+
alternate: "#db2777",
|
|
103
|
+
help: "#818cf8",
|
|
104
|
+
success: "#10b981",
|
|
105
|
+
info: "#58a6ff",
|
|
106
|
+
warning: "#f3d371",
|
|
107
|
+
danger: "#D8314A",
|
|
108
|
+
fatal: "#a40e26",
|
|
109
|
+
link: "#3fa6ff",
|
|
110
|
+
positive: "#22c55e",
|
|
111
|
+
negative: "#dc2626",
|
|
112
|
+
gradient: ["#1fb2a6", "#db2777", "#818cf8"]
|
|
113
|
+
}
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
// ../config-tools/src/logger/chalk.ts
|
|
117
|
+
import chalk from "chalk";
|
|
118
|
+
var chalkDefault = {
|
|
119
|
+
hex: (_) => (message) => message,
|
|
120
|
+
bgHex: (_) => ({
|
|
121
|
+
whiteBright: (message) => message,
|
|
122
|
+
white: (message) => message
|
|
123
|
+
}),
|
|
124
|
+
white: (message) => message,
|
|
125
|
+
whiteBright: (message) => message,
|
|
126
|
+
gray: (message) => message,
|
|
127
|
+
bold: {
|
|
128
|
+
hex: (_) => (message) => message,
|
|
129
|
+
bgHex: (_) => ({
|
|
130
|
+
whiteBright: (message) => message,
|
|
131
|
+
white: (message) => message
|
|
132
|
+
}),
|
|
133
|
+
whiteBright: (message) => message,
|
|
134
|
+
white: (message) => message
|
|
135
|
+
},
|
|
136
|
+
dim: {
|
|
137
|
+
hex: (_) => (message) => message,
|
|
138
|
+
gray: (message) => message
|
|
139
|
+
}
|
|
140
|
+
};
|
|
141
|
+
var getChalk = () => {
|
|
142
|
+
let _chalk = chalk;
|
|
143
|
+
if (!_chalk?.hex || !_chalk?.bold?.hex || !_chalk?.bgHex || !_chalk?.whiteBright || !_chalk?.white) {
|
|
144
|
+
_chalk = chalkDefault;
|
|
145
|
+
}
|
|
146
|
+
return _chalk;
|
|
147
|
+
};
|
|
148
|
+
|
|
149
|
+
// ../config-tools/src/logger/is-unicode-supported.ts
|
|
150
|
+
function isUnicodeSupported() {
|
|
151
|
+
if (process.platform !== "win32") {
|
|
152
|
+
return process.env.TERM !== "linux";
|
|
153
|
+
}
|
|
154
|
+
return Boolean(process.env.WT_SESSION) || // Windows Terminal
|
|
155
|
+
Boolean(process.env.TERMINUS_SUBLIME) || // Terminus (<0.2.27)
|
|
156
|
+
process.env.ConEmuTask === "{cmd::Cmder}" || // ConEmu and cmder
|
|
157
|
+
process.env.TERM_PROGRAM === "Terminus-Sublime" || process.env.TERM_PROGRAM === "vscode" || process.env.TERM === "xterm-256color" || process.env.TERM === "alacritty" || process.env.TERM === "rxvt-unicode" || process.env.TERM === "rxvt-unicode-256color" || process.env.TERMINAL_EMULATOR === "JetBrains-JediTerm";
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
// ../config-tools/src/logger/console-icons.ts
|
|
161
|
+
var useIcon = (c, fallback) => isUnicodeSupported() ? c : fallback;
|
|
162
|
+
var CONSOLE_ICONS = {
|
|
163
|
+
[LogLevelLabel.ERROR]: useIcon("\u2718", "\xD7"),
|
|
164
|
+
[LogLevelLabel.FATAL]: useIcon("\u{1F480}", "\xD7"),
|
|
165
|
+
[LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
|
|
166
|
+
[LogLevelLabel.INFO]: useIcon("\u2139", "i"),
|
|
167
|
+
[LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
|
|
168
|
+
[LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
|
|
169
|
+
[LogLevelLabel.TRACE]: useIcon("\u{1F6E0}", "T"),
|
|
170
|
+
[LogLevelLabel.ALL]: useIcon("\u2709", "\u2192")
|
|
171
|
+
};
|
|
172
|
+
|
|
173
|
+
// ../config-tools/src/logger/format-timestamp.ts
|
|
174
|
+
var formatTimestamp = (date = /* @__PURE__ */ new Date()) => {
|
|
175
|
+
return `${date.toLocaleDateString()} ${date.toLocaleTimeString()}`;
|
|
176
|
+
};
|
|
177
|
+
|
|
178
|
+
// ../config-tools/src/logger/console.ts
|
|
179
|
+
var getLogFn = (logLevel = LogLevel.INFO, config = {}, _chalk = getChalk()) => {
|
|
180
|
+
const colors = !config.colors?.dark && !config.colors?.["base"] && !config.colors?.["base"]?.dark ? DEFAULT_COLOR_CONFIG : config.colors?.dark && typeof config.colors.dark === "string" ? config.colors : config.colors?.["base"]?.dark && typeof config.colors["base"].dark === "string" ? config.colors["base"].dark : config.colors?.["base"] ? config.colors?.["base"] : DEFAULT_COLOR_CONFIG;
|
|
181
|
+
const configLogLevel = config.logLevel || process.env.STORM_LOG_LEVEL || LogLevelLabel.INFO;
|
|
182
|
+
if (logLevel > getLogLevel(configLogLevel) || logLevel <= LogLevel.SILENT || getLogLevel(configLogLevel) <= LogLevel.SILENT) {
|
|
183
|
+
return (_) => {
|
|
184
|
+
};
|
|
185
|
+
}
|
|
186
|
+
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel) {
|
|
187
|
+
return (message) => {
|
|
188
|
+
console.error(
|
|
189
|
+
`
|
|
190
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? DEFAULT_COLOR_CONFIG.dark.fatal)(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
191
|
+
`
|
|
192
|
+
);
|
|
193
|
+
};
|
|
194
|
+
}
|
|
195
|
+
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel) {
|
|
196
|
+
return (message) => {
|
|
197
|
+
console.error(
|
|
198
|
+
`
|
|
199
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? DEFAULT_COLOR_CONFIG.dark.danger)(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
200
|
+
`
|
|
201
|
+
);
|
|
202
|
+
};
|
|
203
|
+
}
|
|
204
|
+
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel) {
|
|
205
|
+
return (message) => {
|
|
206
|
+
console.warn(
|
|
207
|
+
`
|
|
208
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? DEFAULT_COLOR_CONFIG.dark.warning)(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
209
|
+
`
|
|
210
|
+
);
|
|
211
|
+
};
|
|
212
|
+
}
|
|
213
|
+
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel) {
|
|
214
|
+
return (message) => {
|
|
215
|
+
console.info(
|
|
216
|
+
`
|
|
217
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? DEFAULT_COLOR_CONFIG.dark.success)(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
218
|
+
`
|
|
219
|
+
);
|
|
220
|
+
};
|
|
221
|
+
}
|
|
222
|
+
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel) {
|
|
223
|
+
return (message) => {
|
|
224
|
+
console.info(
|
|
225
|
+
`
|
|
226
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
227
|
+
`
|
|
228
|
+
);
|
|
229
|
+
};
|
|
230
|
+
}
|
|
231
|
+
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel) {
|
|
232
|
+
return (message) => {
|
|
233
|
+
console.debug(
|
|
234
|
+
`
|
|
235
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
236
|
+
`
|
|
237
|
+
);
|
|
238
|
+
};
|
|
239
|
+
}
|
|
240
|
+
if (typeof logLevel === "number" && LogLevel.TRACE >= logLevel) {
|
|
241
|
+
return (message) => {
|
|
242
|
+
console.debug(
|
|
243
|
+
`
|
|
244
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
245
|
+
`
|
|
246
|
+
);
|
|
247
|
+
};
|
|
248
|
+
}
|
|
249
|
+
return (message) => {
|
|
250
|
+
console.log(
|
|
251
|
+
`
|
|
252
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? DEFAULT_COLOR_CONFIG.dark.brand)(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
253
|
+
`
|
|
254
|
+
);
|
|
255
|
+
};
|
|
256
|
+
};
|
|
257
|
+
var writeFatal = (message, config) => getLogFn(LogLevel.FATAL, config)(message);
|
|
258
|
+
var writeError = (message, config) => getLogFn(LogLevel.ERROR, config)(message);
|
|
259
|
+
var writeWarning = (message, config) => getLogFn(LogLevel.WARN, config)(message);
|
|
260
|
+
var writeInfo = (message, config) => getLogFn(LogLevel.INFO, config)(message);
|
|
261
|
+
var writeSuccess = (message, config) => getLogFn(LogLevel.SUCCESS, config)(message);
|
|
262
|
+
var writeDebug = (message, config) => getLogFn(LogLevel.DEBUG, config)(message);
|
|
263
|
+
var writeTrace = (message, config) => getLogFn(LogLevel.TRACE, config)(message);
|
|
264
|
+
var getStopwatch = (name) => {
|
|
265
|
+
const start = process.hrtime();
|
|
266
|
+
return () => {
|
|
267
|
+
const end = process.hrtime(start);
|
|
268
|
+
console.info(
|
|
269
|
+
`
|
|
270
|
+
> \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(
|
|
271
|
+
end[0] * 1e3 + end[1] / 1e6
|
|
272
|
+
)}ms to complete
|
|
273
|
+
`
|
|
274
|
+
);
|
|
275
|
+
};
|
|
276
|
+
};
|
|
277
|
+
var MAX_DEPTH = 4;
|
|
278
|
+
var formatLogMessage = (message, options = {}, depth = 0) => {
|
|
279
|
+
if (depth > MAX_DEPTH) {
|
|
280
|
+
return "<max depth>";
|
|
281
|
+
}
|
|
282
|
+
const prefix = options.prefix ?? "-";
|
|
283
|
+
const skip = options.skip ?? [];
|
|
284
|
+
return typeof message === "undefined" || message === null || !message && typeof message !== "boolean" ? "<none>" : typeof message === "string" ? message : Array.isArray(message) ? `
|
|
285
|
+
${message.map((item, index) => ` ${prefix}> #${index} = ${formatLogMessage(item, { prefix: `${prefix}-`, skip }, depth + 1)}`).join("\n")}` : typeof message === "object" ? `
|
|
286
|
+
${Object.keys(message).filter((key) => !skip.includes(key)).map(
|
|
287
|
+
(key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? formatLogMessage(
|
|
288
|
+
message[key],
|
|
289
|
+
{ prefix: `${prefix}-`, skip },
|
|
290
|
+
depth + 1
|
|
291
|
+
) : message[key]}`
|
|
292
|
+
).join("\n")}` : message;
|
|
293
|
+
};
|
|
294
|
+
var _isFunction = (value) => {
|
|
295
|
+
try {
|
|
296
|
+
return value instanceof Function || typeof value === "function" || !!(value?.constructor && value?.call && value?.apply);
|
|
297
|
+
} catch {
|
|
298
|
+
return false;
|
|
299
|
+
}
|
|
300
|
+
};
|
|
301
|
+
|
|
302
|
+
export {
|
|
303
|
+
LogLevel,
|
|
304
|
+
LogLevelLabel,
|
|
305
|
+
getLogLevel,
|
|
306
|
+
getLogLevelLabel,
|
|
307
|
+
isVerbose,
|
|
308
|
+
writeFatal,
|
|
309
|
+
writeError,
|
|
310
|
+
writeWarning,
|
|
311
|
+
writeInfo,
|
|
312
|
+
writeSuccess,
|
|
313
|
+
writeDebug,
|
|
314
|
+
writeTrace,
|
|
315
|
+
getStopwatch,
|
|
316
|
+
formatLogMessage
|
|
317
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkKRY2I44Jcjs = require('./chunk-KRY2I44J.cjs');
|
|
4
4
|
|
|
5
5
|
// src/plugins/analyze.ts
|
|
6
6
|
var formatBytes = (bytes) => {
|
|
@@ -17,7 +17,7 @@ var analyzePlugin = (options) => {
|
|
|
17
17
|
renderChunk(source, chunk) {
|
|
18
18
|
const sourceBytes = formatBytes(source.length);
|
|
19
19
|
const fileName = chunk.fileName;
|
|
20
|
-
|
|
20
|
+
_chunkKRY2I44Jcjs.writeInfo.call(void 0, ` - ${fileName} ${sourceBytes}`, options.config);
|
|
21
21
|
}
|
|
22
22
|
};
|
|
23
23
|
};
|
package/dist/clean.cjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('./chunk-
|
|
4
|
+
var _chunk5LYLEQEHcjs = require('./chunk-5LYLEQEH.cjs');
|
|
5
|
+
require('./chunk-KRY2I44J.cjs');
|
|
6
6
|
require('./chunk-OBGZSXTJ.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.clean =
|
|
10
|
+
exports.clean = _chunk5LYLEQEHcjs.clean; exports.cleanDirectories = _chunk5LYLEQEHcjs.cleanDirectories;
|
package/dist/clean.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -5,19 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunkUM5MAKNScjs = require('./chunk-UM5MAKNS.cjs');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
var
|
|
12
|
+
var _chunk5LYLEQEHcjs = require('./chunk-5LYLEQEH.cjs');
|
|
13
13
|
require('./chunk-SFZRYJZ2.cjs');
|
|
14
|
-
require('./chunk-
|
|
15
|
-
require('./chunk-
|
|
14
|
+
require('./chunk-XYM4DLHB.cjs');
|
|
15
|
+
require('./chunk-ULVTNQE3.cjs');
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
var
|
|
20
|
-
require('./chunk-
|
|
19
|
+
var _chunkQRSVSWU2cjs = require('./chunk-QRSVSWU2.cjs');
|
|
20
|
+
require('./chunk-KRY2I44J.cjs');
|
|
21
21
|
require('./chunk-OBGZSXTJ.cjs');
|
|
22
22
|
|
|
23
23
|
|
|
@@ -30,4 +30,4 @@ require('./chunk-OBGZSXTJ.cjs');
|
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
exports.build =
|
|
33
|
+
exports.build = _chunkUM5MAKNScjs.build; exports.clean = _chunk5LYLEQEHcjs.clean; exports.cleanDirectories = _chunk5LYLEQEHcjs.cleanDirectories; exports.cleanOutputPath = _chunkUM5MAKNScjs.cleanOutputPath; exports.copyBuildAssets = _chunkUM5MAKNScjs.copyBuildAssets; exports.createTsCompilerOptions = _chunkQRSVSWU2cjs.createTsCompilerOptions; exports.executeUnbuild = _chunkUM5MAKNScjs.executeUnbuild; exports.generatePackageJson = _chunkUM5MAKNScjs.generatePackageJson; exports.loadConfig = _chunkQRSVSWU2cjs.loadConfig; exports.resolveOptions = _chunkUM5MAKNScjs.resolveOptions;
|
package/dist/index.js
CHANGED
|
@@ -5,19 +5,19 @@ import {
|
|
|
5
5
|
executeUnbuild,
|
|
6
6
|
generatePackageJson,
|
|
7
7
|
resolveOptions
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-5MW4VNSZ.js";
|
|
9
9
|
import {
|
|
10
10
|
clean,
|
|
11
11
|
cleanDirectories
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-QQE3PPKS.js";
|
|
13
13
|
import "./chunk-GGNOJ77I.js";
|
|
14
|
-
import "./chunk-
|
|
15
|
-
import "./chunk-
|
|
14
|
+
import "./chunk-OOFI7BOW.js";
|
|
15
|
+
import "./chunk-NRCPBIXP.js";
|
|
16
16
|
import {
|
|
17
17
|
createTsCompilerOptions,
|
|
18
18
|
loadConfig
|
|
19
|
-
} from "./chunk-
|
|
20
|
-
import "./chunk-
|
|
19
|
+
} from "./chunk-H4F245VJ.js";
|
|
20
|
+
import "./chunk-VKJOPPWJ.js";
|
|
21
21
|
import "./chunk-3RG5ZIWI.js";
|
|
22
22
|
export {
|
|
23
23
|
build,
|
package/dist/plugins/analyze.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var _chunkXYM4DLHBcjs = require('../chunk-XYM4DLHB.cjs');
|
|
4
|
+
require('../chunk-KRY2I44J.cjs');
|
|
5
5
|
require('../chunk-OBGZSXTJ.cjs');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.analyzePlugin =
|
|
8
|
+
exports.analyzePlugin = _chunkXYM4DLHBcjs.analyzePlugin;
|
package/dist/plugins/analyze.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var _chunkULVTNQE3cjs = require('../chunk-ULVTNQE3.cjs');
|
|
4
|
+
require('../chunk-KRY2I44J.cjs');
|
|
5
5
|
require('../chunk-OBGZSXTJ.cjs');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.onErrorPlugin =
|
|
8
|
+
exports.onErrorPlugin = _chunkULVTNQE3cjs.onErrorPlugin;
|
package/dist/plugins/on-error.js
CHANGED
package/dist/plugins/tsc.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var _chunkQRSVSWU2cjs = require('../chunk-QRSVSWU2.cjs');
|
|
4
|
+
require('../chunk-KRY2I44J.cjs');
|
|
5
5
|
require('../chunk-OBGZSXTJ.cjs');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.tscPlugin =
|
|
8
|
+
exports.tscPlugin = _chunkQRSVSWU2cjs.tscPlugin;
|
package/dist/plugins/tsc.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/unbuild",
|
|
3
|
-
"version": "0.49.
|
|
3
|
+
"version": "0.49.66",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing `unbuild` utilities for building Storm Software libraries and applications",
|
|
6
6
|
"repository": {
|
|
@@ -147,9 +147,9 @@
|
|
|
147
147
|
"typescript": { "optional": false }
|
|
148
148
|
},
|
|
149
149
|
"dependencies": {
|
|
150
|
-
"@storm-software/build-tools": "^0.151.
|
|
151
|
-
"@storm-software/config": "^1.
|
|
152
|
-
"@storm-software/config-tools": "^1.
|
|
150
|
+
"@storm-software/build-tools": "^0.151.41",
|
|
151
|
+
"@storm-software/config": "^1.126.4",
|
|
152
|
+
"@storm-software/config-tools": "^1.178.0",
|
|
153
153
|
"commander": "^12.1.0",
|
|
154
154
|
"defu": "6.1.4",
|
|
155
155
|
"esbuild": "^0.25.0",
|
|
@@ -171,5 +171,5 @@
|
|
|
171
171
|
},
|
|
172
172
|
"publishConfig": { "access": "public" },
|
|
173
173
|
"sideEffects": false,
|
|
174
|
-
"gitHead": "
|
|
174
|
+
"gitHead": "902f04f6a16da1efe2a26ba171dfa1050cd93a7b"
|
|
175
175
|
}
|