@storm-software/unbuild 0.49.58 → 0.49.65

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.
@@ -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 _chunkXYJZZ344cjs = require('./chunk-XYJZZ344.cjs');
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
- _chunkXYJZZ344cjs.writeInfo.call(void 0, ` - ${fileName} ${sourceBytes}`, options.config);
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 _chunkPODQ2EOYcjs = require('./chunk-PODQ2EOY.cjs');
5
- require('./chunk-XYJZZ344.cjs');
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 = _chunkPODQ2EOYcjs.clean; exports.cleanDirectories = _chunkPODQ2EOYcjs.cleanDirectories;
10
+ exports.clean = _chunk5LYLEQEHcjs.clean; exports.cleanDirectories = _chunk5LYLEQEHcjs.cleanDirectories;
package/dist/clean.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clean,
3
3
  cleanDirectories
4
- } from "./chunk-DISUG5EB.js";
5
- import "./chunk-FAV5IYU4.js";
4
+ } from "./chunk-QQE3PPKS.js";
5
+ import "./chunk-VKJOPPWJ.js";
6
6
  import "./chunk-3RG5ZIWI.js";
7
7
  export {
8
8
  clean,
package/dist/index.cjs CHANGED
@@ -5,19 +5,19 @@
5
5
 
6
6
 
7
7
 
8
- var _chunkR4X5DZHYcjs = require('./chunk-R4X5DZHY.cjs');
8
+ var _chunkUM5MAKNScjs = require('./chunk-UM5MAKNS.cjs');
9
9
 
10
10
 
11
11
 
12
- var _chunkPODQ2EOYcjs = require('./chunk-PODQ2EOY.cjs');
12
+ var _chunk5LYLEQEHcjs = require('./chunk-5LYLEQEH.cjs');
13
13
  require('./chunk-SFZRYJZ2.cjs');
14
- require('./chunk-OFVF6S56.cjs');
15
- require('./chunk-OLZAJZH3.cjs');
14
+ require('./chunk-XYM4DLHB.cjs');
15
+ require('./chunk-ULVTNQE3.cjs');
16
16
 
17
17
 
18
18
 
19
- var _chunkPVXLVUJOcjs = require('./chunk-PVXLVUJO.cjs');
20
- require('./chunk-XYJZZ344.cjs');
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 = _chunkR4X5DZHYcjs.build; exports.clean = _chunkPODQ2EOYcjs.clean; exports.cleanDirectories = _chunkPODQ2EOYcjs.cleanDirectories; exports.cleanOutputPath = _chunkR4X5DZHYcjs.cleanOutputPath; exports.copyBuildAssets = _chunkR4X5DZHYcjs.copyBuildAssets; exports.createTsCompilerOptions = _chunkPVXLVUJOcjs.createTsCompilerOptions; exports.executeUnbuild = _chunkR4X5DZHYcjs.executeUnbuild; exports.generatePackageJson = _chunkR4X5DZHYcjs.generatePackageJson; exports.loadConfig = _chunkPVXLVUJOcjs.loadConfig; exports.resolveOptions = _chunkR4X5DZHYcjs.resolveOptions;
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-XOTBO2DH.js";
8
+ } from "./chunk-5MW4VNSZ.js";
9
9
  import {
10
10
  clean,
11
11
  cleanDirectories
12
- } from "./chunk-DISUG5EB.js";
12
+ } from "./chunk-QQE3PPKS.js";
13
13
  import "./chunk-GGNOJ77I.js";
14
- import "./chunk-Y7I3BI57.js";
15
- import "./chunk-NND4A432.js";
14
+ import "./chunk-OOFI7BOW.js";
15
+ import "./chunk-NRCPBIXP.js";
16
16
  import {
17
17
  createTsCompilerOptions,
18
18
  loadConfig
19
- } from "./chunk-2JGN6MY2.js";
20
- import "./chunk-FAV5IYU4.js";
19
+ } from "./chunk-H4F245VJ.js";
20
+ import "./chunk-VKJOPPWJ.js";
21
21
  import "./chunk-3RG5ZIWI.js";
22
22
  export {
23
23
  build,
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkOFVF6S56cjs = require('../chunk-OFVF6S56.cjs');
4
- require('../chunk-XYJZZ344.cjs');
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 = _chunkOFVF6S56cjs.analyzePlugin;
8
+ exports.analyzePlugin = _chunkXYM4DLHBcjs.analyzePlugin;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  analyzePlugin
3
- } from "../chunk-Y7I3BI57.js";
4
- import "../chunk-FAV5IYU4.js";
3
+ } from "../chunk-OOFI7BOW.js";
4
+ import "../chunk-VKJOPPWJ.js";
5
5
  import "../chunk-3RG5ZIWI.js";
6
6
  export {
7
7
  analyzePlugin
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkOLZAJZH3cjs = require('../chunk-OLZAJZH3.cjs');
4
- require('../chunk-XYJZZ344.cjs');
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 = _chunkOLZAJZH3cjs.onErrorPlugin;
8
+ exports.onErrorPlugin = _chunkULVTNQE3cjs.onErrorPlugin;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  onErrorPlugin
3
- } from "../chunk-NND4A432.js";
4
- import "../chunk-FAV5IYU4.js";
3
+ } from "../chunk-NRCPBIXP.js";
4
+ import "../chunk-VKJOPPWJ.js";
5
5
  import "../chunk-3RG5ZIWI.js";
6
6
  export {
7
7
  onErrorPlugin
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkPVXLVUJOcjs = require('../chunk-PVXLVUJO.cjs');
4
- require('../chunk-XYJZZ344.cjs');
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 = _chunkPVXLVUJOcjs.tscPlugin;
8
+ exports.tscPlugin = _chunkQRSVSWU2cjs.tscPlugin;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  tscPlugin
3
- } from "../chunk-2JGN6MY2.js";
4
- import "../chunk-FAV5IYU4.js";
3
+ } from "../chunk-H4F245VJ.js";
4
+ import "../chunk-VKJOPPWJ.js";
5
5
  import "../chunk-3RG5ZIWI.js";
6
6
  export {
7
7
  tscPlugin
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/unbuild",
3
- "version": "0.49.58",
3
+ "version": "0.49.65",
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.33",
151
- "@storm-software/config": "^1.125.21",
152
- "@storm-software/config-tools": "^1.176.23",
150
+ "@storm-software/build-tools": "^0.151.40",
151
+ "@storm-software/config": "^1.126.3",
152
+ "@storm-software/config-tools": "^1.177.3",
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": "a4728ac16328228608f32db774e1968a9835b6e1"
174
+ "gitHead": "083ea768c334db192d1dd4126872bbed21bedaef"
175
175
  }