@rolldown/browser 1.0.0-beta.42 → 1.0.0-beta.44
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/dist/cli-setup.d.mts +1 -0
- package/dist/cli-setup.mjs +16 -0
- package/dist/cli.mjs +1046 -67
- package/dist/config.d.mts +2 -2
- package/dist/config.mjs +4 -4
- package/dist/experimental-index.browser.mjs +51 -453
- package/dist/experimental-index.d.mts +26 -5
- package/dist/experimental-index.mjs +56 -16
- package/dist/filter-index.d.mts +2 -2
- package/dist/filter-index.mjs +1 -1
- package/dist/index.browser.mjs +2 -2
- package/dist/index.d.mts +3 -3
- package/dist/index.mjs +4 -4
- package/dist/parallel-plugin-worker.mjs +3 -3
- package/dist/parallel-plugin.d.mts +2 -2
- package/dist/parse-ast-index.d.mts +1 -1
- package/dist/parse-ast-index.mjs +1 -1
- package/dist/rolldown-binding.wasi-browser.js +2 -3
- package/dist/rolldown-binding.wasi.cjs +2 -3
- package/dist/rolldown-binding.wasm32-wasi.wasm +0 -0
- package/dist/shared/{binding-CtbNz6TD.d.mts → binding-0m41EAn-.d.mts} +108 -17
- package/dist/shared/{define-config-xBdWOg15.d.mts → define-config-BbwLmCDX.d.mts} +250 -87
- package/dist/shared/{dist-CU0dSkK2.mjs → dist-DNFKY37q.mjs} +1 -1
- package/dist/shared/{load-config-B4-CoeU7.mjs → load-config-B3FsKQ_6.mjs} +2 -2
- package/dist/shared/{parse-ast-index-Gktxd-oi.mjs → parse-ast-index-Ck5SwMSC.mjs} +37 -6
- package/dist/shared/{prompt-B4e-jZUR.mjs → prompt-BDwA3jSr.mjs} +1 -1
- package/dist/shared/{src-DbG0hppv.mjs → src-BnIhK3nA.mjs} +234 -328
- package/dist/{src-D_rsgcbb.js → src-CIeG_TGR.js} +506 -570
- package/package.json +1 -1
- package/dist/shared/logger-B83ocDok.mjs +0 -985
package/dist/cli.mjs
CHANGED
|
@@ -1,13 +1,992 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import "./shared/parse-ast-index-
|
|
3
|
-
import { arraify } from "./shared/dist-
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import path from "node:path";
|
|
7
|
-
import { parseArgs } from "node:util";
|
|
1
|
+
import { C as version, S as description, _ as getOutputCliKeys, g as getInputCliKeys, h as getCliSchemaInfo, i as watch, o as rolldown, v as validateCliOptions, w as onExit } from "./shared/src-BnIhK3nA.mjs";
|
|
2
|
+
import { h as styleText$1 } from "./shared/parse-ast-index-Ck5SwMSC.mjs";
|
|
3
|
+
import { d as arraify } from "./shared/dist-DNFKY37q.mjs";
|
|
4
|
+
import { t as loadConfig } from "./shared/load-config-B3FsKQ_6.mjs";
|
|
5
|
+
import { formatWithOptions, parseArgs } from "node:util";
|
|
6
|
+
import path, { sep } from "node:path";
|
|
8
7
|
import process$1 from "node:process";
|
|
8
|
+
import * as tty from "node:tty";
|
|
9
9
|
import { performance } from "node:perf_hooks";
|
|
10
10
|
|
|
11
|
+
//#region ../../node_modules/.pnpm/consola@3.4.2/node_modules/consola/dist/core.mjs
|
|
12
|
+
const LogLevels = {
|
|
13
|
+
silent: Number.NEGATIVE_INFINITY,
|
|
14
|
+
fatal: 0,
|
|
15
|
+
error: 0,
|
|
16
|
+
warn: 1,
|
|
17
|
+
log: 2,
|
|
18
|
+
info: 3,
|
|
19
|
+
success: 3,
|
|
20
|
+
fail: 3,
|
|
21
|
+
ready: 3,
|
|
22
|
+
start: 3,
|
|
23
|
+
box: 3,
|
|
24
|
+
debug: 4,
|
|
25
|
+
trace: 5,
|
|
26
|
+
verbose: Number.POSITIVE_INFINITY
|
|
27
|
+
};
|
|
28
|
+
const LogTypes = {
|
|
29
|
+
silent: { level: -1 },
|
|
30
|
+
fatal: { level: LogLevels.fatal },
|
|
31
|
+
error: { level: LogLevels.error },
|
|
32
|
+
warn: { level: LogLevels.warn },
|
|
33
|
+
log: { level: LogLevels.log },
|
|
34
|
+
info: { level: LogLevels.info },
|
|
35
|
+
success: { level: LogLevels.success },
|
|
36
|
+
fail: { level: LogLevels.fail },
|
|
37
|
+
ready: { level: LogLevels.info },
|
|
38
|
+
start: { level: LogLevels.info },
|
|
39
|
+
box: { level: LogLevels.info },
|
|
40
|
+
debug: { level: LogLevels.debug },
|
|
41
|
+
trace: { level: LogLevels.trace },
|
|
42
|
+
verbose: { level: LogLevels.verbose }
|
|
43
|
+
};
|
|
44
|
+
function isPlainObject$1(value) {
|
|
45
|
+
if (value === null || typeof value !== "object") return false;
|
|
46
|
+
const prototype = Object.getPrototypeOf(value);
|
|
47
|
+
if (prototype !== null && prototype !== Object.prototype && Object.getPrototypeOf(prototype) !== null) return false;
|
|
48
|
+
if (Symbol.iterator in value) return false;
|
|
49
|
+
if (Symbol.toStringTag in value) return Object.prototype.toString.call(value) === "[object Module]";
|
|
50
|
+
return true;
|
|
51
|
+
}
|
|
52
|
+
function _defu(baseObject, defaults, namespace = ".", merger) {
|
|
53
|
+
if (!isPlainObject$1(defaults)) return _defu(baseObject, {}, namespace, merger);
|
|
54
|
+
const object = Object.assign({}, defaults);
|
|
55
|
+
for (const key in baseObject) {
|
|
56
|
+
if (key === "__proto__" || key === "constructor") continue;
|
|
57
|
+
const value = baseObject[key];
|
|
58
|
+
if (value === null || value === void 0) continue;
|
|
59
|
+
if (merger && merger(object, key, value, namespace)) continue;
|
|
60
|
+
if (Array.isArray(value) && Array.isArray(object[key])) object[key] = [...value, ...object[key]];
|
|
61
|
+
else if (isPlainObject$1(value) && isPlainObject$1(object[key])) object[key] = _defu(value, object[key], (namespace ? `${namespace}.` : "") + key.toString(), merger);
|
|
62
|
+
else object[key] = value;
|
|
63
|
+
}
|
|
64
|
+
return object;
|
|
65
|
+
}
|
|
66
|
+
function createDefu(merger) {
|
|
67
|
+
return (...arguments_) => arguments_.reduce((p, c$1) => _defu(p, c$1, "", merger), {});
|
|
68
|
+
}
|
|
69
|
+
const defu = createDefu();
|
|
70
|
+
function isPlainObject(obj) {
|
|
71
|
+
return Object.prototype.toString.call(obj) === "[object Object]";
|
|
72
|
+
}
|
|
73
|
+
function isLogObj(arg) {
|
|
74
|
+
if (!isPlainObject(arg)) return false;
|
|
75
|
+
if (!arg.message && !arg.args) return false;
|
|
76
|
+
if (arg.stack) return false;
|
|
77
|
+
return true;
|
|
78
|
+
}
|
|
79
|
+
let paused = false;
|
|
80
|
+
const queue = [];
|
|
81
|
+
var Consola = class Consola {
|
|
82
|
+
options;
|
|
83
|
+
_lastLog;
|
|
84
|
+
_mockFn;
|
|
85
|
+
/**
|
|
86
|
+
* Creates an instance of Consola with specified options or defaults.
|
|
87
|
+
*
|
|
88
|
+
* @param {Partial<ConsolaOptions>} [options={}] - Configuration options for the Consola instance.
|
|
89
|
+
*/
|
|
90
|
+
constructor(options$1 = {}) {
|
|
91
|
+
const types = options$1.types || LogTypes;
|
|
92
|
+
this.options = defu({
|
|
93
|
+
...options$1,
|
|
94
|
+
defaults: { ...options$1.defaults },
|
|
95
|
+
level: _normalizeLogLevel(options$1.level, types),
|
|
96
|
+
reporters: [...options$1.reporters || []]
|
|
97
|
+
}, {
|
|
98
|
+
types: LogTypes,
|
|
99
|
+
throttle: 1e3,
|
|
100
|
+
throttleMin: 5,
|
|
101
|
+
formatOptions: {
|
|
102
|
+
date: true,
|
|
103
|
+
colors: false,
|
|
104
|
+
compact: true
|
|
105
|
+
}
|
|
106
|
+
});
|
|
107
|
+
for (const type in types) {
|
|
108
|
+
const defaults = {
|
|
109
|
+
type,
|
|
110
|
+
...this.options.defaults,
|
|
111
|
+
...types[type]
|
|
112
|
+
};
|
|
113
|
+
this[type] = this._wrapLogFn(defaults);
|
|
114
|
+
this[type].raw = this._wrapLogFn(defaults, true);
|
|
115
|
+
}
|
|
116
|
+
if (this.options.mockFn) this.mockTypes();
|
|
117
|
+
this._lastLog = {};
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* Gets the current log level of the Consola instance.
|
|
121
|
+
*
|
|
122
|
+
* @returns {number} The current log level.
|
|
123
|
+
*/
|
|
124
|
+
get level() {
|
|
125
|
+
return this.options.level;
|
|
126
|
+
}
|
|
127
|
+
/**
|
|
128
|
+
* Sets the minimum log level that will be output by the instance.
|
|
129
|
+
*
|
|
130
|
+
* @param {number} level - The new log level to set.
|
|
131
|
+
*/
|
|
132
|
+
set level(level) {
|
|
133
|
+
this.options.level = _normalizeLogLevel(level, this.options.types, this.options.level);
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* Displays a prompt to the user and returns the response.
|
|
137
|
+
* Throw an error if `prompt` is not supported by the current configuration.
|
|
138
|
+
*
|
|
139
|
+
* @template T
|
|
140
|
+
* @param {string} message - The message to display in the prompt.
|
|
141
|
+
* @param {T} [opts] - Optional options for the prompt. See {@link PromptOptions}.
|
|
142
|
+
* @returns {promise<T>} A promise that infer with the prompt options. See {@link PromptOptions}.
|
|
143
|
+
*/
|
|
144
|
+
prompt(message, opts) {
|
|
145
|
+
if (!this.options.prompt) throw new Error("prompt is not supported!");
|
|
146
|
+
return this.options.prompt(message, opts);
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* Creates a new instance of Consola, inheriting options from the current instance, with possible overrides.
|
|
150
|
+
*
|
|
151
|
+
* @param {Partial<ConsolaOptions>} options - Optional overrides for the new instance. See {@link ConsolaOptions}.
|
|
152
|
+
* @returns {ConsolaInstance} A new Consola instance. See {@link ConsolaInstance}.
|
|
153
|
+
*/
|
|
154
|
+
create(options$1) {
|
|
155
|
+
const instance = new Consola({
|
|
156
|
+
...this.options,
|
|
157
|
+
...options$1
|
|
158
|
+
});
|
|
159
|
+
if (this._mockFn) instance.mockTypes(this._mockFn);
|
|
160
|
+
return instance;
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* Creates a new Consola instance with the specified default log object properties.
|
|
164
|
+
*
|
|
165
|
+
* @param {InputLogObject} defaults - Default properties to include in any log from the new instance. See {@link InputLogObject}.
|
|
166
|
+
* @returns {ConsolaInstance} A new Consola instance. See {@link ConsolaInstance}.
|
|
167
|
+
*/
|
|
168
|
+
withDefaults(defaults) {
|
|
169
|
+
return this.create({
|
|
170
|
+
...this.options,
|
|
171
|
+
defaults: {
|
|
172
|
+
...this.options.defaults,
|
|
173
|
+
...defaults
|
|
174
|
+
}
|
|
175
|
+
});
|
|
176
|
+
}
|
|
177
|
+
/**
|
|
178
|
+
* Creates a new Consola instance with a specified tag, which will be included in every log.
|
|
179
|
+
*
|
|
180
|
+
* @param {string} tag - The tag to include in each log of the new instance.
|
|
181
|
+
* @returns {ConsolaInstance} A new Consola instance. See {@link ConsolaInstance}.
|
|
182
|
+
*/
|
|
183
|
+
withTag(tag) {
|
|
184
|
+
return this.withDefaults({ tag: this.options.defaults.tag ? this.options.defaults.tag + ":" + tag : tag });
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* Adds a custom reporter to the Consola instance.
|
|
188
|
+
* Reporters will be called for each log message, depending on their implementation and log level.
|
|
189
|
+
*
|
|
190
|
+
* @param {ConsolaReporter} reporter - The reporter to add. See {@link ConsolaReporter}.
|
|
191
|
+
* @returns {Consola} The current Consola instance.
|
|
192
|
+
*/
|
|
193
|
+
addReporter(reporter) {
|
|
194
|
+
this.options.reporters.push(reporter);
|
|
195
|
+
return this;
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
* Removes a custom reporter from the Consola instance.
|
|
199
|
+
* If no reporter is specified, all reporters will be removed.
|
|
200
|
+
*
|
|
201
|
+
* @param {ConsolaReporter} reporter - The reporter to remove. See {@link ConsolaReporter}.
|
|
202
|
+
* @returns {Consola} The current Consola instance.
|
|
203
|
+
*/
|
|
204
|
+
removeReporter(reporter) {
|
|
205
|
+
if (reporter) {
|
|
206
|
+
const i$1 = this.options.reporters.indexOf(reporter);
|
|
207
|
+
if (i$1 !== -1) return this.options.reporters.splice(i$1, 1);
|
|
208
|
+
} else this.options.reporters.splice(0);
|
|
209
|
+
return this;
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
* Replaces all reporters of the Consola instance with the specified array of reporters.
|
|
213
|
+
*
|
|
214
|
+
* @param {ConsolaReporter[]} reporters - The new reporters to set. See {@link ConsolaReporter}.
|
|
215
|
+
* @returns {Consola} The current Consola instance.
|
|
216
|
+
*/
|
|
217
|
+
setReporters(reporters) {
|
|
218
|
+
this.options.reporters = Array.isArray(reporters) ? reporters : [reporters];
|
|
219
|
+
return this;
|
|
220
|
+
}
|
|
221
|
+
wrapAll() {
|
|
222
|
+
this.wrapConsole();
|
|
223
|
+
this.wrapStd();
|
|
224
|
+
}
|
|
225
|
+
restoreAll() {
|
|
226
|
+
this.restoreConsole();
|
|
227
|
+
this.restoreStd();
|
|
228
|
+
}
|
|
229
|
+
/**
|
|
230
|
+
* Overrides console methods with Consola logging methods for consistent logging.
|
|
231
|
+
*/
|
|
232
|
+
wrapConsole() {
|
|
233
|
+
for (const type in this.options.types) {
|
|
234
|
+
if (!console["__" + type]) console["__" + type] = console[type];
|
|
235
|
+
console[type] = this[type].raw;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
/**
|
|
239
|
+
* Restores the original console methods, removing Consola overrides.
|
|
240
|
+
*/
|
|
241
|
+
restoreConsole() {
|
|
242
|
+
for (const type in this.options.types) if (console["__" + type]) {
|
|
243
|
+
console[type] = console["__" + type];
|
|
244
|
+
delete console["__" + type];
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
/**
|
|
248
|
+
* Overrides standard output and error streams to redirect them through Consola.
|
|
249
|
+
*/
|
|
250
|
+
wrapStd() {
|
|
251
|
+
this._wrapStream(this.options.stdout, "log");
|
|
252
|
+
this._wrapStream(this.options.stderr, "log");
|
|
253
|
+
}
|
|
254
|
+
_wrapStream(stream, type) {
|
|
255
|
+
if (!stream) return;
|
|
256
|
+
if (!stream.__write) stream.__write = stream.write;
|
|
257
|
+
stream.write = (data) => {
|
|
258
|
+
this[type].raw(String(data).trim());
|
|
259
|
+
};
|
|
260
|
+
}
|
|
261
|
+
/**
|
|
262
|
+
* Restores the original standard output and error streams, removing the Consola redirection.
|
|
263
|
+
*/
|
|
264
|
+
restoreStd() {
|
|
265
|
+
this._restoreStream(this.options.stdout);
|
|
266
|
+
this._restoreStream(this.options.stderr);
|
|
267
|
+
}
|
|
268
|
+
_restoreStream(stream) {
|
|
269
|
+
if (!stream) return;
|
|
270
|
+
if (stream.__write) {
|
|
271
|
+
stream.write = stream.__write;
|
|
272
|
+
delete stream.__write;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
/**
|
|
276
|
+
* Pauses logging, queues incoming logs until resumed.
|
|
277
|
+
*/
|
|
278
|
+
pauseLogs() {
|
|
279
|
+
paused = true;
|
|
280
|
+
}
|
|
281
|
+
/**
|
|
282
|
+
* Resumes logging, processing any queued logs.
|
|
283
|
+
*/
|
|
284
|
+
resumeLogs() {
|
|
285
|
+
paused = false;
|
|
286
|
+
const _queue = queue.splice(0);
|
|
287
|
+
for (const item of _queue) item[0]._logFn(item[1], item[2]);
|
|
288
|
+
}
|
|
289
|
+
/**
|
|
290
|
+
* Replaces logging methods with mocks if a mock function is provided.
|
|
291
|
+
*
|
|
292
|
+
* @param {ConsolaOptions["mockFn"]} mockFn - The function to use for mocking logging methods. See {@link ConsolaOptions["mockFn"]}.
|
|
293
|
+
*/
|
|
294
|
+
mockTypes(mockFn) {
|
|
295
|
+
const _mockFn = mockFn || this.options.mockFn;
|
|
296
|
+
this._mockFn = _mockFn;
|
|
297
|
+
if (typeof _mockFn !== "function") return;
|
|
298
|
+
for (const type in this.options.types) {
|
|
299
|
+
this[type] = _mockFn(type, this.options.types[type]) || this[type];
|
|
300
|
+
this[type].raw = this[type];
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
_wrapLogFn(defaults, isRaw) {
|
|
304
|
+
return (...args) => {
|
|
305
|
+
if (paused) {
|
|
306
|
+
queue.push([
|
|
307
|
+
this,
|
|
308
|
+
defaults,
|
|
309
|
+
args,
|
|
310
|
+
isRaw
|
|
311
|
+
]);
|
|
312
|
+
return;
|
|
313
|
+
}
|
|
314
|
+
return this._logFn(defaults, args, isRaw);
|
|
315
|
+
};
|
|
316
|
+
}
|
|
317
|
+
_logFn(defaults, args, isRaw) {
|
|
318
|
+
if ((defaults.level || 0) > this.level) return false;
|
|
319
|
+
const logObj = {
|
|
320
|
+
date: /* @__PURE__ */ new Date(),
|
|
321
|
+
args: [],
|
|
322
|
+
...defaults,
|
|
323
|
+
level: _normalizeLogLevel(defaults.level, this.options.types)
|
|
324
|
+
};
|
|
325
|
+
if (!isRaw && args.length === 1 && isLogObj(args[0])) Object.assign(logObj, args[0]);
|
|
326
|
+
else logObj.args = [...args];
|
|
327
|
+
if (logObj.message) {
|
|
328
|
+
logObj.args.unshift(logObj.message);
|
|
329
|
+
delete logObj.message;
|
|
330
|
+
}
|
|
331
|
+
if (logObj.additional) {
|
|
332
|
+
if (!Array.isArray(logObj.additional)) logObj.additional = logObj.additional.split("\n");
|
|
333
|
+
logObj.args.push("\n" + logObj.additional.join("\n"));
|
|
334
|
+
delete logObj.additional;
|
|
335
|
+
}
|
|
336
|
+
logObj.type = typeof logObj.type === "string" ? logObj.type.toLowerCase() : "log";
|
|
337
|
+
logObj.tag = typeof logObj.tag === "string" ? logObj.tag : "";
|
|
338
|
+
const resolveLog = (newLog = false) => {
|
|
339
|
+
const repeated = (this._lastLog.count || 0) - this.options.throttleMin;
|
|
340
|
+
if (this._lastLog.object && repeated > 0) {
|
|
341
|
+
const args2 = [...this._lastLog.object.args];
|
|
342
|
+
if (repeated > 1) args2.push(`(repeated ${repeated} times)`);
|
|
343
|
+
this._log({
|
|
344
|
+
...this._lastLog.object,
|
|
345
|
+
args: args2
|
|
346
|
+
});
|
|
347
|
+
this._lastLog.count = 1;
|
|
348
|
+
}
|
|
349
|
+
if (newLog) {
|
|
350
|
+
this._lastLog.object = logObj;
|
|
351
|
+
this._log(logObj);
|
|
352
|
+
}
|
|
353
|
+
};
|
|
354
|
+
clearTimeout(this._lastLog.timeout);
|
|
355
|
+
const diffTime = this._lastLog.time && logObj.date ? logObj.date.getTime() - this._lastLog.time.getTime() : 0;
|
|
356
|
+
this._lastLog.time = logObj.date;
|
|
357
|
+
if (diffTime < this.options.throttle) try {
|
|
358
|
+
const serializedLog = JSON.stringify([
|
|
359
|
+
logObj.type,
|
|
360
|
+
logObj.tag,
|
|
361
|
+
logObj.args
|
|
362
|
+
]);
|
|
363
|
+
const isSameLog = this._lastLog.serialized === serializedLog;
|
|
364
|
+
this._lastLog.serialized = serializedLog;
|
|
365
|
+
if (isSameLog) {
|
|
366
|
+
this._lastLog.count = (this._lastLog.count || 0) + 1;
|
|
367
|
+
if (this._lastLog.count > this.options.throttleMin) {
|
|
368
|
+
this._lastLog.timeout = setTimeout(resolveLog, this.options.throttle);
|
|
369
|
+
return;
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
} catch {}
|
|
373
|
+
resolveLog(true);
|
|
374
|
+
}
|
|
375
|
+
_log(logObj) {
|
|
376
|
+
for (const reporter of this.options.reporters) reporter.log(logObj, { options: this.options });
|
|
377
|
+
}
|
|
378
|
+
};
|
|
379
|
+
function _normalizeLogLevel(input, types = {}, defaultLevel = 3) {
|
|
380
|
+
if (input === void 0) return defaultLevel;
|
|
381
|
+
if (typeof input === "number") return input;
|
|
382
|
+
if (types[input] && types[input].level !== void 0) return types[input].level;
|
|
383
|
+
return defaultLevel;
|
|
384
|
+
}
|
|
385
|
+
Consola.prototype.add = Consola.prototype.addReporter;
|
|
386
|
+
Consola.prototype.remove = Consola.prototype.removeReporter;
|
|
387
|
+
Consola.prototype.clear = Consola.prototype.removeReporter;
|
|
388
|
+
Consola.prototype.withScope = Consola.prototype.withTag;
|
|
389
|
+
Consola.prototype.mock = Consola.prototype.mockTypes;
|
|
390
|
+
Consola.prototype.pause = Consola.prototype.pauseLogs;
|
|
391
|
+
Consola.prototype.resume = Consola.prototype.resumeLogs;
|
|
392
|
+
function createConsola$1(options$1 = {}) {
|
|
393
|
+
return new Consola(options$1);
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
//#endregion
|
|
397
|
+
//#region ../../node_modules/.pnpm/consola@3.4.2/node_modules/consola/dist/shared/consola.DRwqZj3T.mjs
|
|
398
|
+
function parseStack(stack, message) {
|
|
399
|
+
const cwd$1 = process.cwd() + sep;
|
|
400
|
+
return stack.split("\n").splice(message.split("\n").length).map((l$1) => l$1.trim().replace("file://", "").replace(cwd$1, ""));
|
|
401
|
+
}
|
|
402
|
+
function writeStream(data, stream) {
|
|
403
|
+
return (stream.__write || stream.write).call(stream, data);
|
|
404
|
+
}
|
|
405
|
+
const bracket = (x) => x ? `[${x}]` : "";
|
|
406
|
+
var BasicReporter = class {
|
|
407
|
+
formatStack(stack, message, opts) {
|
|
408
|
+
const indent = " ".repeat((opts?.errorLevel || 0) + 1);
|
|
409
|
+
return indent + parseStack(stack, message).join(`
|
|
410
|
+
${indent}`);
|
|
411
|
+
}
|
|
412
|
+
formatError(err, opts) {
|
|
413
|
+
const message = err.message ?? formatWithOptions(opts, err);
|
|
414
|
+
const stack = err.stack ? this.formatStack(err.stack, message, opts) : "";
|
|
415
|
+
const level = opts?.errorLevel || 0;
|
|
416
|
+
const causedPrefix = level > 0 ? `${" ".repeat(level)}[cause]: ` : "";
|
|
417
|
+
const causedError = err.cause ? "\n\n" + this.formatError(err.cause, {
|
|
418
|
+
...opts,
|
|
419
|
+
errorLevel: level + 1
|
|
420
|
+
}) : "";
|
|
421
|
+
return causedPrefix + message + "\n" + stack + causedError;
|
|
422
|
+
}
|
|
423
|
+
formatArgs(args, opts) {
|
|
424
|
+
return formatWithOptions(opts, ...args.map((arg) => {
|
|
425
|
+
if (arg && typeof arg.stack === "string") return this.formatError(arg, opts);
|
|
426
|
+
return arg;
|
|
427
|
+
}));
|
|
428
|
+
}
|
|
429
|
+
formatDate(date, opts) {
|
|
430
|
+
return opts.date ? date.toLocaleTimeString() : "";
|
|
431
|
+
}
|
|
432
|
+
filterAndJoin(arr) {
|
|
433
|
+
return arr.filter(Boolean).join(" ");
|
|
434
|
+
}
|
|
435
|
+
formatLogObj(logObj, opts) {
|
|
436
|
+
const message = this.formatArgs(logObj.args, opts);
|
|
437
|
+
if (logObj.type === "box") return "\n" + [
|
|
438
|
+
bracket(logObj.tag),
|
|
439
|
+
logObj.title && logObj.title,
|
|
440
|
+
...message.split("\n")
|
|
441
|
+
].filter(Boolean).map((l$1) => " > " + l$1).join("\n") + "\n";
|
|
442
|
+
return this.filterAndJoin([
|
|
443
|
+
bracket(logObj.type),
|
|
444
|
+
bracket(logObj.tag),
|
|
445
|
+
message
|
|
446
|
+
]);
|
|
447
|
+
}
|
|
448
|
+
log(logObj, ctx) {
|
|
449
|
+
return writeStream(this.formatLogObj(logObj, {
|
|
450
|
+
columns: ctx.options.stdout.columns || 0,
|
|
451
|
+
...ctx.options.formatOptions
|
|
452
|
+
}) + "\n", logObj.level < 2 ? ctx.options.stderr || process.stderr : ctx.options.stdout || process.stdout);
|
|
453
|
+
}
|
|
454
|
+
};
|
|
455
|
+
|
|
456
|
+
//#endregion
|
|
457
|
+
//#region ../../node_modules/.pnpm/consola@3.4.2/node_modules/consola/dist/shared/consola.DXBYu-KD.mjs
|
|
458
|
+
const { env = {}, argv = [], platform = "" } = typeof process === "undefined" ? {} : process;
|
|
459
|
+
const isDisabled = "NO_COLOR" in env || argv.includes("--no-color");
|
|
460
|
+
const isForced = "FORCE_COLOR" in env || argv.includes("--color");
|
|
461
|
+
const isWindows = platform === "win32";
|
|
462
|
+
const isDumbTerminal = env.TERM === "dumb";
|
|
463
|
+
const isCompatibleTerminal = tty && tty.isatty && tty.isatty(1) && env.TERM && !isDumbTerminal;
|
|
464
|
+
const isCI = "CI" in env && ("GITHUB_ACTIONS" in env || "GITLAB_CI" in env || "CIRCLECI" in env);
|
|
465
|
+
const isColorSupported = !isDisabled && (isForced || isWindows && !isDumbTerminal || isCompatibleTerminal || isCI);
|
|
466
|
+
function replaceClose(index, string, close, replace, head = string.slice(0, Math.max(0, index)) + replace, tail = string.slice(Math.max(0, index + close.length)), next = tail.indexOf(close)) {
|
|
467
|
+
return head + (next < 0 ? tail : replaceClose(next, tail, close, replace));
|
|
468
|
+
}
|
|
469
|
+
function clearBleed(index, string, open, close, replace) {
|
|
470
|
+
return index < 0 ? open + string + close : open + replaceClose(index, string, close, replace) + close;
|
|
471
|
+
}
|
|
472
|
+
function filterEmpty(open, close, replace = open, at = open.length + 1) {
|
|
473
|
+
return (string) => string || !(string === "" || string === void 0) ? clearBleed(("" + string).indexOf(close, at), string, open, close, replace) : "";
|
|
474
|
+
}
|
|
475
|
+
function init(open, close, replace) {
|
|
476
|
+
return filterEmpty(`\x1B[${open}m`, `\x1B[${close}m`, replace);
|
|
477
|
+
}
|
|
478
|
+
const colorDefs = {
|
|
479
|
+
reset: init(0, 0),
|
|
480
|
+
bold: init(1, 22, "\x1B[22m\x1B[1m"),
|
|
481
|
+
dim: init(2, 22, "\x1B[22m\x1B[2m"),
|
|
482
|
+
italic: init(3, 23),
|
|
483
|
+
underline: init(4, 24),
|
|
484
|
+
inverse: init(7, 27),
|
|
485
|
+
hidden: init(8, 28),
|
|
486
|
+
strikethrough: init(9, 29),
|
|
487
|
+
black: init(30, 39),
|
|
488
|
+
red: init(31, 39),
|
|
489
|
+
green: init(32, 39),
|
|
490
|
+
yellow: init(33, 39),
|
|
491
|
+
blue: init(34, 39),
|
|
492
|
+
magenta: init(35, 39),
|
|
493
|
+
cyan: init(36, 39),
|
|
494
|
+
white: init(37, 39),
|
|
495
|
+
gray: init(90, 39),
|
|
496
|
+
bgBlack: init(40, 49),
|
|
497
|
+
bgRed: init(41, 49),
|
|
498
|
+
bgGreen: init(42, 49),
|
|
499
|
+
bgYellow: init(43, 49),
|
|
500
|
+
bgBlue: init(44, 49),
|
|
501
|
+
bgMagenta: init(45, 49),
|
|
502
|
+
bgCyan: init(46, 49),
|
|
503
|
+
bgWhite: init(47, 49),
|
|
504
|
+
blackBright: init(90, 39),
|
|
505
|
+
redBright: init(91, 39),
|
|
506
|
+
greenBright: init(92, 39),
|
|
507
|
+
yellowBright: init(93, 39),
|
|
508
|
+
blueBright: init(94, 39),
|
|
509
|
+
magentaBright: init(95, 39),
|
|
510
|
+
cyanBright: init(96, 39),
|
|
511
|
+
whiteBright: init(97, 39),
|
|
512
|
+
bgBlackBright: init(100, 49),
|
|
513
|
+
bgRedBright: init(101, 49),
|
|
514
|
+
bgGreenBright: init(102, 49),
|
|
515
|
+
bgYellowBright: init(103, 49),
|
|
516
|
+
bgBlueBright: init(104, 49),
|
|
517
|
+
bgMagentaBright: init(105, 49),
|
|
518
|
+
bgCyanBright: init(106, 49),
|
|
519
|
+
bgWhiteBright: init(107, 49)
|
|
520
|
+
};
|
|
521
|
+
function createColors(useColor = isColorSupported) {
|
|
522
|
+
return useColor ? colorDefs : Object.fromEntries(Object.keys(colorDefs).map((key) => [key, String]));
|
|
523
|
+
}
|
|
524
|
+
const colors = createColors();
|
|
525
|
+
function getColor$1(color, fallback = "reset") {
|
|
526
|
+
return colors[color] || colors[fallback];
|
|
527
|
+
}
|
|
528
|
+
const ansiRegex$1 = [String.raw`[\u001B\u009B][[\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\d\/#&.:=?%@~_]+)*|[a-zA-Z\d]+(?:;[-a-zA-Z\d\/#&.:=?%@~_]*)*)?\u0007)`, String.raw`(?:(?:\d{1,4}(?:;\d{0,4})*)?[\dA-PR-TZcf-nq-uy=><~]))`].join("|");
|
|
529
|
+
function stripAnsi(text) {
|
|
530
|
+
return text.replace(new RegExp(ansiRegex$1, "g"), "");
|
|
531
|
+
}
|
|
532
|
+
const boxStylePresets = {
|
|
533
|
+
solid: {
|
|
534
|
+
tl: "┌",
|
|
535
|
+
tr: "┐",
|
|
536
|
+
bl: "└",
|
|
537
|
+
br: "┘",
|
|
538
|
+
h: "─",
|
|
539
|
+
v: "│"
|
|
540
|
+
},
|
|
541
|
+
double: {
|
|
542
|
+
tl: "╔",
|
|
543
|
+
tr: "╗",
|
|
544
|
+
bl: "╚",
|
|
545
|
+
br: "╝",
|
|
546
|
+
h: "═",
|
|
547
|
+
v: "║"
|
|
548
|
+
},
|
|
549
|
+
doubleSingle: {
|
|
550
|
+
tl: "╓",
|
|
551
|
+
tr: "╖",
|
|
552
|
+
bl: "╙",
|
|
553
|
+
br: "╜",
|
|
554
|
+
h: "─",
|
|
555
|
+
v: "║"
|
|
556
|
+
},
|
|
557
|
+
doubleSingleRounded: {
|
|
558
|
+
tl: "╭",
|
|
559
|
+
tr: "╮",
|
|
560
|
+
bl: "╰",
|
|
561
|
+
br: "╯",
|
|
562
|
+
h: "─",
|
|
563
|
+
v: "║"
|
|
564
|
+
},
|
|
565
|
+
singleThick: {
|
|
566
|
+
tl: "┏",
|
|
567
|
+
tr: "┓",
|
|
568
|
+
bl: "┗",
|
|
569
|
+
br: "┛",
|
|
570
|
+
h: "━",
|
|
571
|
+
v: "┃"
|
|
572
|
+
},
|
|
573
|
+
singleDouble: {
|
|
574
|
+
tl: "╒",
|
|
575
|
+
tr: "╕",
|
|
576
|
+
bl: "╘",
|
|
577
|
+
br: "╛",
|
|
578
|
+
h: "═",
|
|
579
|
+
v: "│"
|
|
580
|
+
},
|
|
581
|
+
singleDoubleRounded: {
|
|
582
|
+
tl: "╭",
|
|
583
|
+
tr: "╮",
|
|
584
|
+
bl: "╰",
|
|
585
|
+
br: "╯",
|
|
586
|
+
h: "═",
|
|
587
|
+
v: "│"
|
|
588
|
+
},
|
|
589
|
+
rounded: {
|
|
590
|
+
tl: "╭",
|
|
591
|
+
tr: "╮",
|
|
592
|
+
bl: "╰",
|
|
593
|
+
br: "╯",
|
|
594
|
+
h: "─",
|
|
595
|
+
v: "│"
|
|
596
|
+
}
|
|
597
|
+
};
|
|
598
|
+
const defaultStyle = {
|
|
599
|
+
borderColor: "white",
|
|
600
|
+
borderStyle: "rounded",
|
|
601
|
+
valign: "center",
|
|
602
|
+
padding: 2,
|
|
603
|
+
marginLeft: 1,
|
|
604
|
+
marginTop: 1,
|
|
605
|
+
marginBottom: 1
|
|
606
|
+
};
|
|
607
|
+
function box(text, _opts = {}) {
|
|
608
|
+
const opts = {
|
|
609
|
+
..._opts,
|
|
610
|
+
style: {
|
|
611
|
+
...defaultStyle,
|
|
612
|
+
..._opts.style
|
|
613
|
+
}
|
|
614
|
+
};
|
|
615
|
+
const textLines = text.split("\n");
|
|
616
|
+
const boxLines = [];
|
|
617
|
+
const _color = getColor$1(opts.style.borderColor);
|
|
618
|
+
const borderStyle = { ...typeof opts.style.borderStyle === "string" ? boxStylePresets[opts.style.borderStyle] || boxStylePresets.solid : opts.style.borderStyle };
|
|
619
|
+
if (_color) for (const key in borderStyle) borderStyle[key] = _color(borderStyle[key]);
|
|
620
|
+
const paddingOffset = opts.style.padding % 2 === 0 ? opts.style.padding : opts.style.padding + 1;
|
|
621
|
+
const height = textLines.length + paddingOffset;
|
|
622
|
+
const width = Math.max(...textLines.map((line) => stripAnsi(line).length), opts.title ? stripAnsi(opts.title).length : 0) + paddingOffset;
|
|
623
|
+
const widthOffset = width + paddingOffset;
|
|
624
|
+
const leftSpace = opts.style.marginLeft > 0 ? " ".repeat(opts.style.marginLeft) : "";
|
|
625
|
+
if (opts.style.marginTop > 0) boxLines.push("".repeat(opts.style.marginTop));
|
|
626
|
+
if (opts.title) {
|
|
627
|
+
const title = _color ? _color(opts.title) : opts.title;
|
|
628
|
+
const left = borderStyle.h.repeat(Math.floor((width - stripAnsi(opts.title).length) / 2));
|
|
629
|
+
const right = borderStyle.h.repeat(width - stripAnsi(opts.title).length - stripAnsi(left).length + paddingOffset);
|
|
630
|
+
boxLines.push(`${leftSpace}${borderStyle.tl}${left}${title}${right}${borderStyle.tr}`);
|
|
631
|
+
} else boxLines.push(`${leftSpace}${borderStyle.tl}${borderStyle.h.repeat(widthOffset)}${borderStyle.tr}`);
|
|
632
|
+
const valignOffset = opts.style.valign === "center" ? Math.floor((height - textLines.length) / 2) : opts.style.valign === "top" ? height - textLines.length - paddingOffset : height - textLines.length;
|
|
633
|
+
for (let i$1 = 0; i$1 < height; i$1++) if (i$1 < valignOffset || i$1 >= valignOffset + textLines.length) boxLines.push(`${leftSpace}${borderStyle.v}${" ".repeat(widthOffset)}${borderStyle.v}`);
|
|
634
|
+
else {
|
|
635
|
+
const line = textLines[i$1 - valignOffset];
|
|
636
|
+
const left = " ".repeat(paddingOffset);
|
|
637
|
+
const right = " ".repeat(width - stripAnsi(line).length);
|
|
638
|
+
boxLines.push(`${leftSpace}${borderStyle.v}${left}${line}${right}${borderStyle.v}`);
|
|
639
|
+
}
|
|
640
|
+
boxLines.push(`${leftSpace}${borderStyle.bl}${borderStyle.h.repeat(widthOffset)}${borderStyle.br}`);
|
|
641
|
+
if (opts.style.marginBottom > 0) boxLines.push("".repeat(opts.style.marginBottom));
|
|
642
|
+
return boxLines.join("\n");
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
//#endregion
|
|
646
|
+
//#region ../../node_modules/.pnpm/consola@3.4.2/node_modules/consola/dist/index.mjs
|
|
647
|
+
const r = Object.create(null), i = (e) => globalThis.process?.env || import.meta.env || globalThis.Deno?.env.toObject() || globalThis.__env__ || (e ? r : globalThis), o = new Proxy(r, {
|
|
648
|
+
get(e, s$1) {
|
|
649
|
+
return i()[s$1] ?? r[s$1];
|
|
650
|
+
},
|
|
651
|
+
has(e, s$1) {
|
|
652
|
+
return s$1 in i() || s$1 in r;
|
|
653
|
+
},
|
|
654
|
+
set(e, s$1, E) {
|
|
655
|
+
const B = i(true);
|
|
656
|
+
return B[s$1] = E, true;
|
|
657
|
+
},
|
|
658
|
+
deleteProperty(e, s$1) {
|
|
659
|
+
if (!s$1) return false;
|
|
660
|
+
const E = i(true);
|
|
661
|
+
return delete E[s$1], true;
|
|
662
|
+
},
|
|
663
|
+
ownKeys() {
|
|
664
|
+
const e = i(true);
|
|
665
|
+
return Object.keys(e);
|
|
666
|
+
}
|
|
667
|
+
}), t = typeof process < "u" && process.env && process.env.NODE_ENV || "", f = [
|
|
668
|
+
["APPVEYOR"],
|
|
669
|
+
[
|
|
670
|
+
"AWS_AMPLIFY",
|
|
671
|
+
"AWS_APP_ID",
|
|
672
|
+
{ ci: true }
|
|
673
|
+
],
|
|
674
|
+
["AZURE_PIPELINES", "SYSTEM_TEAMFOUNDATIONCOLLECTIONURI"],
|
|
675
|
+
["AZURE_STATIC", "INPUT_AZURE_STATIC_WEB_APPS_API_TOKEN"],
|
|
676
|
+
["APPCIRCLE", "AC_APPCIRCLE"],
|
|
677
|
+
["BAMBOO", "bamboo_planKey"],
|
|
678
|
+
["BITBUCKET", "BITBUCKET_COMMIT"],
|
|
679
|
+
["BITRISE", "BITRISE_IO"],
|
|
680
|
+
["BUDDY", "BUDDY_WORKSPACE_ID"],
|
|
681
|
+
["BUILDKITE"],
|
|
682
|
+
["CIRCLE", "CIRCLECI"],
|
|
683
|
+
["CIRRUS", "CIRRUS_CI"],
|
|
684
|
+
[
|
|
685
|
+
"CLOUDFLARE_PAGES",
|
|
686
|
+
"CF_PAGES",
|
|
687
|
+
{ ci: true }
|
|
688
|
+
],
|
|
689
|
+
["CODEBUILD", "CODEBUILD_BUILD_ARN"],
|
|
690
|
+
["CODEFRESH", "CF_BUILD_ID"],
|
|
691
|
+
["DRONE"],
|
|
692
|
+
["DRONE", "DRONE_BUILD_EVENT"],
|
|
693
|
+
["DSARI"],
|
|
694
|
+
["GITHUB_ACTIONS"],
|
|
695
|
+
["GITLAB", "GITLAB_CI"],
|
|
696
|
+
["GITLAB", "CI_MERGE_REQUEST_ID"],
|
|
697
|
+
["GOCD", "GO_PIPELINE_LABEL"],
|
|
698
|
+
["LAYERCI"],
|
|
699
|
+
["HUDSON", "HUDSON_URL"],
|
|
700
|
+
["JENKINS", "JENKINS_URL"],
|
|
701
|
+
["MAGNUM"],
|
|
702
|
+
["NETLIFY"],
|
|
703
|
+
[
|
|
704
|
+
"NETLIFY",
|
|
705
|
+
"NETLIFY_LOCAL",
|
|
706
|
+
{ ci: false }
|
|
707
|
+
],
|
|
708
|
+
["NEVERCODE"],
|
|
709
|
+
["RENDER"],
|
|
710
|
+
["SAIL", "SAILCI"],
|
|
711
|
+
["SEMAPHORE"],
|
|
712
|
+
["SCREWDRIVER"],
|
|
713
|
+
["SHIPPABLE"],
|
|
714
|
+
["SOLANO", "TDDIUM"],
|
|
715
|
+
["STRIDER"],
|
|
716
|
+
["TEAMCITY", "TEAMCITY_VERSION"],
|
|
717
|
+
["TRAVIS"],
|
|
718
|
+
["VERCEL", "NOW_BUILDER"],
|
|
719
|
+
[
|
|
720
|
+
"VERCEL",
|
|
721
|
+
"VERCEL",
|
|
722
|
+
{ ci: false }
|
|
723
|
+
],
|
|
724
|
+
[
|
|
725
|
+
"VERCEL",
|
|
726
|
+
"VERCEL_ENV",
|
|
727
|
+
{ ci: false }
|
|
728
|
+
],
|
|
729
|
+
["APPCENTER", "APPCENTER_BUILD_ID"],
|
|
730
|
+
[
|
|
731
|
+
"CODESANDBOX",
|
|
732
|
+
"CODESANDBOX_SSE",
|
|
733
|
+
{ ci: false }
|
|
734
|
+
],
|
|
735
|
+
[
|
|
736
|
+
"CODESANDBOX",
|
|
737
|
+
"CODESANDBOX_HOST",
|
|
738
|
+
{ ci: false }
|
|
739
|
+
],
|
|
740
|
+
["STACKBLITZ"],
|
|
741
|
+
["STORMKIT"],
|
|
742
|
+
["CLEAVR"],
|
|
743
|
+
["ZEABUR"],
|
|
744
|
+
[
|
|
745
|
+
"CODESPHERE",
|
|
746
|
+
"CODESPHERE_APP_ID",
|
|
747
|
+
{ ci: true }
|
|
748
|
+
],
|
|
749
|
+
["RAILWAY", "RAILWAY_PROJECT_ID"],
|
|
750
|
+
["RAILWAY", "RAILWAY_SERVICE_ID"],
|
|
751
|
+
["DENO-DEPLOY", "DENO_DEPLOYMENT_ID"],
|
|
752
|
+
[
|
|
753
|
+
"FIREBASE_APP_HOSTING",
|
|
754
|
+
"FIREBASE_APP_HOSTING",
|
|
755
|
+
{ ci: true }
|
|
756
|
+
]
|
|
757
|
+
];
|
|
758
|
+
function b() {
|
|
759
|
+
if (globalThis.process?.env) for (const e of f) {
|
|
760
|
+
const s$1 = e[1] || e[0];
|
|
761
|
+
if (globalThis.process?.env[s$1]) return {
|
|
762
|
+
name: e[0].toLowerCase(),
|
|
763
|
+
...e[2]
|
|
764
|
+
};
|
|
765
|
+
}
|
|
766
|
+
return globalThis.process?.env?.SHELL === "/bin/jsh" && globalThis.process?.versions?.webcontainer ? {
|
|
767
|
+
name: "stackblitz",
|
|
768
|
+
ci: false
|
|
769
|
+
} : {
|
|
770
|
+
name: "",
|
|
771
|
+
ci: false
|
|
772
|
+
};
|
|
773
|
+
}
|
|
774
|
+
const l = b();
|
|
775
|
+
l.name;
|
|
776
|
+
function n(e) {
|
|
777
|
+
return e ? e !== "false" : false;
|
|
778
|
+
}
|
|
779
|
+
const I = globalThis.process?.platform || "", T = n(o.CI) || l.ci !== false, a = n(globalThis.process?.stdout && globalThis.process?.stdout.isTTY), g = n(o.DEBUG), R = t === "test" || n(o.TEST);
|
|
780
|
+
n(o.MINIMAL);
|
|
781
|
+
const A = /^win/i.test(I);
|
|
782
|
+
!n(o.NO_COLOR) && (n(o.FORCE_COLOR) || (a || A) && o.TERM);
|
|
783
|
+
const C = (globalThis.process?.versions?.node || "").replace(/^v/, "") || null;
|
|
784
|
+
Number(C?.split(".")[0]);
|
|
785
|
+
const y = globalThis.process || Object.create(null), _ = { versions: {} };
|
|
786
|
+
new Proxy(y, { get(e, s$1) {
|
|
787
|
+
if (s$1 === "env") return o;
|
|
788
|
+
if (s$1 in e) return e[s$1];
|
|
789
|
+
if (s$1 in _) return _[s$1];
|
|
790
|
+
} });
|
|
791
|
+
const c = globalThis.process?.release?.name === "node", O = !!globalThis.Bun || !!globalThis.process?.versions?.bun, D = !!globalThis.Deno, L = !!globalThis.fastly, S = !!globalThis.Netlify, u = !!globalThis.EdgeRuntime, N = globalThis.navigator?.userAgent === "Cloudflare-Workers", F = [
|
|
792
|
+
[S, "netlify"],
|
|
793
|
+
[u, "edge-light"],
|
|
794
|
+
[N, "workerd"],
|
|
795
|
+
[L, "fastly"],
|
|
796
|
+
[D, "deno"],
|
|
797
|
+
[O, "bun"],
|
|
798
|
+
[c, "node"]
|
|
799
|
+
];
|
|
800
|
+
function G() {
|
|
801
|
+
const e = F.find((s$1) => s$1[0]);
|
|
802
|
+
if (e) return { name: e[1] };
|
|
803
|
+
}
|
|
804
|
+
G()?.name;
|
|
805
|
+
function ansiRegex({ onlyFirst = false } = {}) {
|
|
806
|
+
const pattern = [`[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?(?:\\u0007|\\u001B\\u005C|\\u009C))`, "(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-nq-uy=><~]))"].join("|");
|
|
807
|
+
return new RegExp(pattern, onlyFirst ? void 0 : "g");
|
|
808
|
+
}
|
|
809
|
+
const regex = ansiRegex();
|
|
810
|
+
function stripAnsi$1(string) {
|
|
811
|
+
if (typeof string !== "string") throw new TypeError(`Expected a \`string\`, got \`${typeof string}\``);
|
|
812
|
+
return string.replace(regex, "");
|
|
813
|
+
}
|
|
814
|
+
function isAmbiguous(x) {
|
|
815
|
+
return x === 161 || x === 164 || x === 167 || x === 168 || x === 170 || x === 173 || x === 174 || x >= 176 && x <= 180 || x >= 182 && x <= 186 || x >= 188 && x <= 191 || x === 198 || x === 208 || x === 215 || x === 216 || x >= 222 && x <= 225 || x === 230 || x >= 232 && x <= 234 || x === 236 || x === 237 || x === 240 || x === 242 || x === 243 || x >= 247 && x <= 250 || x === 252 || x === 254 || x === 257 || x === 273 || x === 275 || x === 283 || x === 294 || x === 295 || x === 299 || x >= 305 && x <= 307 || x === 312 || x >= 319 && x <= 322 || x === 324 || x >= 328 && x <= 331 || x === 333 || x === 338 || x === 339 || x === 358 || x === 359 || x === 363 || x === 462 || x === 464 || x === 466 || x === 468 || x === 470 || x === 472 || x === 474 || x === 476 || x === 593 || x === 609 || x === 708 || x === 711 || x >= 713 && x <= 715 || x === 717 || x === 720 || x >= 728 && x <= 731 || x === 733 || x === 735 || x >= 768 && x <= 879 || x >= 913 && x <= 929 || x >= 931 && x <= 937 || x >= 945 && x <= 961 || x >= 963 && x <= 969 || x === 1025 || x >= 1040 && x <= 1103 || x === 1105 || x === 8208 || x >= 8211 && x <= 8214 || x === 8216 || x === 8217 || x === 8220 || x === 8221 || x >= 8224 && x <= 8226 || x >= 8228 && x <= 8231 || x === 8240 || x === 8242 || x === 8243 || x === 8245 || x === 8251 || x === 8254 || x === 8308 || x === 8319 || x >= 8321 && x <= 8324 || x === 8364 || x === 8451 || x === 8453 || x === 8457 || x === 8467 || x === 8470 || x === 8481 || x === 8482 || x === 8486 || x === 8491 || x === 8531 || x === 8532 || x >= 8539 && x <= 8542 || x >= 8544 && x <= 8555 || x >= 8560 && x <= 8569 || x === 8585 || x >= 8592 && x <= 8601 || x === 8632 || x === 8633 || x === 8658 || x === 8660 || x === 8679 || x === 8704 || x === 8706 || x === 8707 || x === 8711 || x === 8712 || x === 8715 || x === 8719 || x === 8721 || x === 8725 || x === 8730 || x >= 8733 && x <= 8736 || x === 8739 || x === 8741 || x >= 8743 && x <= 8748 || x === 8750 || x >= 8756 && x <= 8759 || x === 8764 || x === 8765 || x === 8776 || x === 8780 || x === 8786 || x === 8800 || x === 8801 || x >= 8804 && x <= 8807 || x === 8810 || x === 8811 || x === 8814 || x === 8815 || x === 8834 || x === 8835 || x === 8838 || x === 8839 || x === 8853 || x === 8857 || x === 8869 || x === 8895 || x === 8978 || x >= 9312 && x <= 9449 || x >= 9451 && x <= 9547 || x >= 9552 && x <= 9587 || x >= 9600 && x <= 9615 || x >= 9618 && x <= 9621 || x === 9632 || x === 9633 || x >= 9635 && x <= 9641 || x === 9650 || x === 9651 || x === 9654 || x === 9655 || x === 9660 || x === 9661 || x === 9664 || x === 9665 || x >= 9670 && x <= 9672 || x === 9675 || x >= 9678 && x <= 9681 || x >= 9698 && x <= 9701 || x === 9711 || x === 9733 || x === 9734 || x === 9737 || x === 9742 || x === 9743 || x === 9756 || x === 9758 || x === 9792 || x === 9794 || x === 9824 || x === 9825 || x >= 9827 && x <= 9829 || x >= 9831 && x <= 9834 || x === 9836 || x === 9837 || x === 9839 || x === 9886 || x === 9887 || x === 9919 || x >= 9926 && x <= 9933 || x >= 9935 && x <= 9939 || x >= 9941 && x <= 9953 || x === 9955 || x === 9960 || x === 9961 || x >= 9963 && x <= 9969 || x === 9972 || x >= 9974 && x <= 9977 || x === 9979 || x === 9980 || x === 9982 || x === 9983 || x === 10045 || x >= 10102 && x <= 10111 || x >= 11094 && x <= 11097 || x >= 12872 && x <= 12879 || x >= 57344 && x <= 63743 || x >= 65024 && x <= 65039 || x === 65533 || x >= 127232 && x <= 127242 || x >= 127248 && x <= 127277 || x >= 127280 && x <= 127337 || x >= 127344 && x <= 127373 || x === 127375 || x === 127376 || x >= 127387 && x <= 127404 || x >= 917760 && x <= 917999 || x >= 983040 && x <= 1048573 || x >= 1048576 && x <= 1114109;
|
|
816
|
+
}
|
|
817
|
+
function isFullWidth(x) {
|
|
818
|
+
return x === 12288 || x >= 65281 && x <= 65376 || x >= 65504 && x <= 65510;
|
|
819
|
+
}
|
|
820
|
+
function isWide(x) {
|
|
821
|
+
return x >= 4352 && x <= 4447 || x === 8986 || x === 8987 || x === 9001 || x === 9002 || x >= 9193 && x <= 9196 || x === 9200 || x === 9203 || x === 9725 || x === 9726 || x === 9748 || x === 9749 || x >= 9776 && x <= 9783 || x >= 9800 && x <= 9811 || x === 9855 || x >= 9866 && x <= 9871 || x === 9875 || x === 9889 || x === 9898 || x === 9899 || x === 9917 || x === 9918 || x === 9924 || x === 9925 || x === 9934 || x === 9940 || x === 9962 || x === 9970 || x === 9971 || x === 9973 || x === 9978 || x === 9981 || x === 9989 || x === 9994 || x === 9995 || x === 10024 || x === 10060 || x === 10062 || x >= 10067 && x <= 10069 || x === 10071 || x >= 10133 && x <= 10135 || x === 10160 || x === 10175 || x === 11035 || x === 11036 || x === 11088 || x === 11093 || x >= 11904 && x <= 11929 || x >= 11931 && x <= 12019 || x >= 12032 && x <= 12245 || x >= 12272 && x <= 12287 || x >= 12289 && x <= 12350 || x >= 12353 && x <= 12438 || x >= 12441 && x <= 12543 || x >= 12549 && x <= 12591 || x >= 12593 && x <= 12686 || x >= 12688 && x <= 12773 || x >= 12783 && x <= 12830 || x >= 12832 && x <= 12871 || x >= 12880 && x <= 42124 || x >= 42128 && x <= 42182 || x >= 43360 && x <= 43388 || x >= 44032 && x <= 55203 || x >= 63744 && x <= 64255 || x >= 65040 && x <= 65049 || x >= 65072 && x <= 65106 || x >= 65108 && x <= 65126 || x >= 65128 && x <= 65131 || x >= 94176 && x <= 94180 || x === 94192 || x === 94193 || x >= 94208 && x <= 100343 || x >= 100352 && x <= 101589 || x >= 101631 && x <= 101640 || x >= 110576 && x <= 110579 || x >= 110581 && x <= 110587 || x === 110589 || x === 110590 || x >= 110592 && x <= 110882 || x === 110898 || x >= 110928 && x <= 110930 || x === 110933 || x >= 110948 && x <= 110951 || x >= 110960 && x <= 111355 || x >= 119552 && x <= 119638 || x >= 119648 && x <= 119670 || x === 126980 || x === 127183 || x === 127374 || x >= 127377 && x <= 127386 || x >= 127488 && x <= 127490 || x >= 127504 && x <= 127547 || x >= 127552 && x <= 127560 || x === 127568 || x === 127569 || x >= 127584 && x <= 127589 || x >= 127744 && x <= 127776 || x >= 127789 && x <= 127797 || x >= 127799 && x <= 127868 || x >= 127870 && x <= 127891 || x >= 127904 && x <= 127946 || x >= 127951 && x <= 127955 || x >= 127968 && x <= 127984 || x === 127988 || x >= 127992 && x <= 128062 || x === 128064 || x >= 128066 && x <= 128252 || x >= 128255 && x <= 128317 || x >= 128331 && x <= 128334 || x >= 128336 && x <= 128359 || x === 128378 || x === 128405 || x === 128406 || x === 128420 || x >= 128507 && x <= 128591 || x >= 128640 && x <= 128709 || x === 128716 || x >= 128720 && x <= 128722 || x >= 128725 && x <= 128727 || x >= 128732 && x <= 128735 || x === 128747 || x === 128748 || x >= 128756 && x <= 128764 || x >= 128992 && x <= 129003 || x === 129008 || x >= 129292 && x <= 129338 || x >= 129340 && x <= 129349 || x >= 129351 && x <= 129535 || x >= 129648 && x <= 129660 || x >= 129664 && x <= 129673 || x >= 129679 && x <= 129734 || x >= 129742 && x <= 129756 || x >= 129759 && x <= 129769 || x >= 129776 && x <= 129784 || x >= 131072 && x <= 196605 || x >= 196608 && x <= 262141;
|
|
822
|
+
}
|
|
823
|
+
function validate(codePoint) {
|
|
824
|
+
if (!Number.isSafeInteger(codePoint)) throw new TypeError(`Expected a code point, got \`${typeof codePoint}\`.`);
|
|
825
|
+
}
|
|
826
|
+
function eastAsianWidth(codePoint, { ambiguousAsWide = false } = {}) {
|
|
827
|
+
validate(codePoint);
|
|
828
|
+
if (isFullWidth(codePoint) || isWide(codePoint) || ambiguousAsWide && isAmbiguous(codePoint)) return 2;
|
|
829
|
+
return 1;
|
|
830
|
+
}
|
|
831
|
+
const emojiRegex = () => {
|
|
832
|
+
return /[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE])))?))?|\uDC6F(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDD75(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE89\uDE8F-\uDEC2\uDEC6\uDECE-\uDEDC\uDEDF-\uDEE9]|\uDD3C(?:\u200D[\u2640\u2642]\uFE0F?|\uD83C[\uDFFB-\uDFFF])?|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g;
|
|
833
|
+
};
|
|
834
|
+
const segmenter = globalThis.Intl?.Segmenter ? new Intl.Segmenter() : { segment: (str) => str.split("") };
|
|
835
|
+
const defaultIgnorableCodePointRegex = /^\p{Default_Ignorable_Code_Point}$/u;
|
|
836
|
+
function stringWidth$1(string, options$1 = {}) {
|
|
837
|
+
if (typeof string !== "string" || string.length === 0) return 0;
|
|
838
|
+
const { ambiguousIsNarrow = true, countAnsiEscapeCodes = false } = options$1;
|
|
839
|
+
if (!countAnsiEscapeCodes) string = stripAnsi$1(string);
|
|
840
|
+
if (string.length === 0) return 0;
|
|
841
|
+
let width = 0;
|
|
842
|
+
const eastAsianWidthOptions = { ambiguousAsWide: !ambiguousIsNarrow };
|
|
843
|
+
for (const { segment: character } of segmenter.segment(string)) {
|
|
844
|
+
const codePoint = character.codePointAt(0);
|
|
845
|
+
if (codePoint <= 31 || codePoint >= 127 && codePoint <= 159) continue;
|
|
846
|
+
if (codePoint >= 8203 && codePoint <= 8207 || codePoint === 65279) continue;
|
|
847
|
+
if (codePoint >= 768 && codePoint <= 879 || codePoint >= 6832 && codePoint <= 6911 || codePoint >= 7616 && codePoint <= 7679 || codePoint >= 8400 && codePoint <= 8447 || codePoint >= 65056 && codePoint <= 65071) continue;
|
|
848
|
+
if (codePoint >= 55296 && codePoint <= 57343) continue;
|
|
849
|
+
if (codePoint >= 65024 && codePoint <= 65039) continue;
|
|
850
|
+
if (defaultIgnorableCodePointRegex.test(character)) continue;
|
|
851
|
+
if (emojiRegex().test(character)) {
|
|
852
|
+
width += 2;
|
|
853
|
+
continue;
|
|
854
|
+
}
|
|
855
|
+
width += eastAsianWidth(codePoint, eastAsianWidthOptions);
|
|
856
|
+
}
|
|
857
|
+
return width;
|
|
858
|
+
}
|
|
859
|
+
function isUnicodeSupported() {
|
|
860
|
+
const { env: env$1 } = process$1;
|
|
861
|
+
const { TERM, TERM_PROGRAM } = env$1;
|
|
862
|
+
if (process$1.platform !== "win32") return TERM !== "linux";
|
|
863
|
+
return Boolean(env$1.WT_SESSION) || Boolean(env$1.TERMINUS_SUBLIME) || env$1.ConEmuTask === "{cmd::Cmder}" || TERM_PROGRAM === "Terminus-Sublime" || TERM_PROGRAM === "vscode" || TERM === "xterm-256color" || TERM === "alacritty" || TERM === "rxvt-unicode" || TERM === "rxvt-unicode-256color" || env$1.TERMINAL_EMULATOR === "JetBrains-JediTerm";
|
|
864
|
+
}
|
|
865
|
+
const TYPE_COLOR_MAP = {
|
|
866
|
+
info: "cyan",
|
|
867
|
+
fail: "red",
|
|
868
|
+
success: "green",
|
|
869
|
+
ready: "green",
|
|
870
|
+
start: "magenta"
|
|
871
|
+
};
|
|
872
|
+
const LEVEL_COLOR_MAP = {
|
|
873
|
+
0: "red",
|
|
874
|
+
1: "yellow"
|
|
875
|
+
};
|
|
876
|
+
const unicode = isUnicodeSupported();
|
|
877
|
+
const s = (c$1, fallback) => unicode ? c$1 : fallback;
|
|
878
|
+
const TYPE_ICONS = {
|
|
879
|
+
error: s("✖", "×"),
|
|
880
|
+
fatal: s("✖", "×"),
|
|
881
|
+
ready: s("✔", "√"),
|
|
882
|
+
warn: s("⚠", "‼"),
|
|
883
|
+
info: s("ℹ", "i"),
|
|
884
|
+
success: s("✔", "√"),
|
|
885
|
+
debug: s("⚙", "D"),
|
|
886
|
+
trace: s("→", "→"),
|
|
887
|
+
fail: s("✖", "×"),
|
|
888
|
+
start: s("◐", "o"),
|
|
889
|
+
log: ""
|
|
890
|
+
};
|
|
891
|
+
function stringWidth(str) {
|
|
892
|
+
if (!(typeof Intl === "object") || !Intl.Segmenter) return stripAnsi(str).length;
|
|
893
|
+
return stringWidth$1(str);
|
|
894
|
+
}
|
|
895
|
+
var FancyReporter = class extends BasicReporter {
|
|
896
|
+
formatStack(stack, message, opts) {
|
|
897
|
+
const indent = " ".repeat((opts?.errorLevel || 0) + 1);
|
|
898
|
+
return `
|
|
899
|
+
${indent}` + parseStack(stack, message).map((line) => " " + line.replace(/^at +/, (m) => colors.gray(m)).replace(/\((.+)\)/, (_$1, m) => `(${colors.cyan(m)})`)).join(`
|
|
900
|
+
${indent}`);
|
|
901
|
+
}
|
|
902
|
+
formatType(logObj, isBadge, opts) {
|
|
903
|
+
const typeColor = TYPE_COLOR_MAP[logObj.type] || LEVEL_COLOR_MAP[logObj.level] || "gray";
|
|
904
|
+
if (isBadge) return getBgColor(typeColor)(colors.black(` ${logObj.type.toUpperCase()} `));
|
|
905
|
+
const _type = typeof TYPE_ICONS[logObj.type] === "string" ? TYPE_ICONS[logObj.type] : logObj.icon || logObj.type;
|
|
906
|
+
return _type ? getColor(typeColor)(_type) : "";
|
|
907
|
+
}
|
|
908
|
+
formatLogObj(logObj, opts) {
|
|
909
|
+
const [message, ...additional] = this.formatArgs(logObj.args, opts).split("\n");
|
|
910
|
+
if (logObj.type === "box") return box(characterFormat(message + (additional.length > 0 ? "\n" + additional.join("\n") : "")), {
|
|
911
|
+
title: logObj.title ? characterFormat(logObj.title) : void 0,
|
|
912
|
+
style: logObj.style
|
|
913
|
+
});
|
|
914
|
+
const date = this.formatDate(logObj.date, opts);
|
|
915
|
+
const coloredDate = date && colors.gray(date);
|
|
916
|
+
const isBadge = logObj.badge ?? logObj.level < 2;
|
|
917
|
+
const type = this.formatType(logObj, isBadge, opts);
|
|
918
|
+
const tag = logObj.tag ? colors.gray(logObj.tag) : "";
|
|
919
|
+
let line;
|
|
920
|
+
const left = this.filterAndJoin([type, characterFormat(message)]);
|
|
921
|
+
const right = this.filterAndJoin(opts.columns ? [tag, coloredDate] : [tag]);
|
|
922
|
+
const space = (opts.columns || 0) - stringWidth(left) - stringWidth(right) - 2;
|
|
923
|
+
line = space > 0 && (opts.columns || 0) >= 80 ? left + " ".repeat(space) + right : (right ? `${colors.gray(`[${right}]`)} ` : "") + left;
|
|
924
|
+
line += characterFormat(additional.length > 0 ? "\n" + additional.join("\n") : "");
|
|
925
|
+
if (logObj.type === "trace") {
|
|
926
|
+
const _err = /* @__PURE__ */ new Error("Trace: " + logObj.message);
|
|
927
|
+
line += this.formatStack(_err.stack || "", _err.message);
|
|
928
|
+
}
|
|
929
|
+
return isBadge ? "\n" + line + "\n" : line;
|
|
930
|
+
}
|
|
931
|
+
};
|
|
932
|
+
function characterFormat(str) {
|
|
933
|
+
return str.replace(/`([^`]+)`/gm, (_$1, m) => colors.cyan(m)).replace(/\s+_([^_]+)_\s+/gm, (_$1, m) => ` ${colors.underline(m)} `);
|
|
934
|
+
}
|
|
935
|
+
function getColor(color = "white") {
|
|
936
|
+
return colors[color] || colors.white;
|
|
937
|
+
}
|
|
938
|
+
function getBgColor(color = "bgWhite") {
|
|
939
|
+
return colors[`bg${color[0].toUpperCase()}${color.slice(1)}`] || colors.bgWhite;
|
|
940
|
+
}
|
|
941
|
+
function createConsola(options$1 = {}) {
|
|
942
|
+
let level = _getDefaultLogLevel();
|
|
943
|
+
if (process.env.CONSOLA_LEVEL) level = Number.parseInt(process.env.CONSOLA_LEVEL) ?? level;
|
|
944
|
+
return createConsola$1({
|
|
945
|
+
level,
|
|
946
|
+
defaults: { level },
|
|
947
|
+
stdout: process.stdout,
|
|
948
|
+
stderr: process.stderr,
|
|
949
|
+
prompt: (...args) => import("./shared/prompt-BDwA3jSr.mjs").then((m) => m.prompt(...args)),
|
|
950
|
+
reporters: options$1.reporters || [options$1.fancy ?? !(T || R) ? new FancyReporter() : new BasicReporter()],
|
|
951
|
+
...options$1
|
|
952
|
+
});
|
|
953
|
+
}
|
|
954
|
+
function _getDefaultLogLevel() {
|
|
955
|
+
if (g) return LogLevels.debug;
|
|
956
|
+
if (R) return LogLevels.warn;
|
|
957
|
+
return LogLevels.info;
|
|
958
|
+
}
|
|
959
|
+
const consola = createConsola();
|
|
960
|
+
|
|
961
|
+
//#endregion
|
|
962
|
+
//#region src/cli/logger.ts
|
|
963
|
+
/**
|
|
964
|
+
* Console logger
|
|
965
|
+
*/
|
|
966
|
+
const logger = process.env.ROLLDOWN_TEST ? createTestingLogger() : createConsola({ formatOptions: { date: false } });
|
|
967
|
+
function createTestingLogger() {
|
|
968
|
+
const types = [
|
|
969
|
+
"silent",
|
|
970
|
+
"fatal",
|
|
971
|
+
"error",
|
|
972
|
+
"warn",
|
|
973
|
+
"log",
|
|
974
|
+
"info",
|
|
975
|
+
"success",
|
|
976
|
+
"fail",
|
|
977
|
+
"ready",
|
|
978
|
+
"start",
|
|
979
|
+
"box",
|
|
980
|
+
"debug",
|
|
981
|
+
"trace",
|
|
982
|
+
"verbose"
|
|
983
|
+
];
|
|
984
|
+
const ret = Object.create(null);
|
|
985
|
+
for (const type of types) ret[type] = console.log;
|
|
986
|
+
return ret;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
//#endregion
|
|
11
990
|
//#region src/cli/arguments/alias.ts
|
|
12
991
|
const alias = {
|
|
13
992
|
config: {
|
|
@@ -52,9 +1031,9 @@ const alias = {
|
|
|
52
1031
|
function setNestedProperty(obj, path$1, value) {
|
|
53
1032
|
const keys = path$1.split(".");
|
|
54
1033
|
let current = obj;
|
|
55
|
-
for (let i = 0; i < keys.length - 1; i++) {
|
|
56
|
-
if (!current[keys[i]]) current[keys[i]] = {};
|
|
57
|
-
current = current[keys[i]];
|
|
1034
|
+
for (let i$1 = 0; i$1 < keys.length - 1; i$1++) {
|
|
1035
|
+
if (!current[keys[i$1]]) current[keys[i$1]] = {};
|
|
1036
|
+
current = current[keys[i$1]];
|
|
58
1037
|
}
|
|
59
1038
|
const finalKey = keys[keys.length - 1];
|
|
60
1039
|
Object.defineProperty(current, finalKey, {
|
|
@@ -211,8 +1190,8 @@ function parseCliArguments() {
|
|
|
211
1190
|
}).filter((item) => {
|
|
212
1191
|
return item !== void 0;
|
|
213
1192
|
});
|
|
214
|
-
invalid_options.sort((a, b) => {
|
|
215
|
-
return a.name.localeCompare(b.name);
|
|
1193
|
+
invalid_options.sort((a$1, b$1) => {
|
|
1194
|
+
return a$1.name.localeCompare(b$1.name);
|
|
216
1195
|
});
|
|
217
1196
|
if (invalid_options.length !== 0) {
|
|
218
1197
|
let single = invalid_options.length === 1;
|
|
@@ -243,32 +1222,32 @@ function getClearScreenFunction(options$1) {
|
|
|
243
1222
|
}
|
|
244
1223
|
|
|
245
1224
|
//#endregion
|
|
246
|
-
//#region \0@oxc-project+runtime@0.
|
|
1225
|
+
//#region \0@oxc-project+runtime@0.95.0/helpers/usingCtx.js
|
|
247
1226
|
function _usingCtx() {
|
|
248
|
-
var r = "function" == typeof SuppressedError ? SuppressedError : function(r$
|
|
249
|
-
var n$
|
|
250
|
-
return n$
|
|
251
|
-
}, e = {}, n = [];
|
|
252
|
-
function using(r$
|
|
1227
|
+
var r$1 = "function" == typeof SuppressedError ? SuppressedError : function(r$2, e$1) {
|
|
1228
|
+
var n$2 = Error();
|
|
1229
|
+
return n$2.name = "SuppressedError", n$2.error = r$2, n$2.suppressed = e$1, n$2;
|
|
1230
|
+
}, e = {}, n$1 = [];
|
|
1231
|
+
function using(r$2, e$1) {
|
|
253
1232
|
if (null != e$1) {
|
|
254
1233
|
if (Object(e$1) !== e$1) throw new TypeError("using declarations can only be used with objects, functions, null, or undefined.");
|
|
255
|
-
if (r$
|
|
256
|
-
if (void 0 === o && (o = e$1[Symbol.dispose || Symbol["for"]("Symbol.dispose")], r$
|
|
257
|
-
if ("function" != typeof o) throw new TypeError("Object is not disposable.");
|
|
258
|
-
t && (o = function o$
|
|
1234
|
+
if (r$2) var o$1 = e$1[Symbol.asyncDispose || Symbol["for"]("Symbol.asyncDispose")];
|
|
1235
|
+
if (void 0 === o$1 && (o$1 = e$1[Symbol.dispose || Symbol["for"]("Symbol.dispose")], r$2)) var t$1 = o$1;
|
|
1236
|
+
if ("function" != typeof o$1) throw new TypeError("Object is not disposable.");
|
|
1237
|
+
t$1 && (o$1 = function o$2() {
|
|
259
1238
|
try {
|
|
260
|
-
t.call(e$1);
|
|
261
|
-
} catch (r$
|
|
262
|
-
return Promise.reject(r$
|
|
1239
|
+
t$1.call(e$1);
|
|
1240
|
+
} catch (r$3) {
|
|
1241
|
+
return Promise.reject(r$3);
|
|
263
1242
|
}
|
|
264
|
-
}), n.push({
|
|
1243
|
+
}), n$1.push({
|
|
265
1244
|
v: e$1,
|
|
266
|
-
d: o,
|
|
267
|
-
a: r$
|
|
1245
|
+
d: o$1,
|
|
1246
|
+
a: r$2
|
|
268
1247
|
});
|
|
269
|
-
} else r$
|
|
1248
|
+
} else r$2 && n$1.push({
|
|
270
1249
|
d: e$1,
|
|
271
|
-
a: r$
|
|
1250
|
+
a: r$2
|
|
272
1251
|
});
|
|
273
1252
|
return e$1;
|
|
274
1253
|
}
|
|
@@ -277,22 +1256,22 @@ function _usingCtx() {
|
|
|
277
1256
|
u: using.bind(null, !1),
|
|
278
1257
|
a: using.bind(null, !0),
|
|
279
1258
|
d: function d() {
|
|
280
|
-
var o, t = this.e, s = 0;
|
|
1259
|
+
var o$1, t$1 = this.e, s$1 = 0;
|
|
281
1260
|
function next() {
|
|
282
|
-
for (; o = n.pop();) try {
|
|
283
|
-
if (!o.a && 1 === s) return s = 0, n.push(o), Promise.resolve().then(next);
|
|
284
|
-
if (o.d) {
|
|
285
|
-
var r$
|
|
286
|
-
if (o.a) return s |= 2, Promise.resolve(r$
|
|
287
|
-
} else s |= 1;
|
|
288
|
-
} catch (r$
|
|
289
|
-
return err(r$
|
|
1261
|
+
for (; o$1 = n$1.pop();) try {
|
|
1262
|
+
if (!o$1.a && 1 === s$1) return s$1 = 0, n$1.push(o$1), Promise.resolve().then(next);
|
|
1263
|
+
if (o$1.d) {
|
|
1264
|
+
var r$2 = o$1.d.call(o$1.v);
|
|
1265
|
+
if (o$1.a) return s$1 |= 2, Promise.resolve(r$2).then(next, err);
|
|
1266
|
+
} else s$1 |= 1;
|
|
1267
|
+
} catch (r$3) {
|
|
1268
|
+
return err(r$3);
|
|
290
1269
|
}
|
|
291
|
-
if (1 === s) return t !== e ? Promise.reject(t) : Promise.resolve();
|
|
292
|
-
if (t !== e) throw t;
|
|
1270
|
+
if (1 === s$1) return t$1 !== e ? Promise.reject(t$1) : Promise.resolve();
|
|
1271
|
+
if (t$1 !== e) throw t$1;
|
|
293
1272
|
}
|
|
294
|
-
function err(n$
|
|
295
|
-
return t = t !== e ? new r(n$
|
|
1273
|
+
function err(n$2) {
|
|
1274
|
+
return t$1 = t$1 !== e ? new r$1(n$2, t$1) : n$2, next();
|
|
296
1275
|
}
|
|
297
1276
|
return next();
|
|
298
1277
|
}
|
|
@@ -332,11 +1311,11 @@ async function bundleWithCliOptions(cliOptions) {
|
|
|
332
1311
|
process.exit(1);
|
|
333
1312
|
}
|
|
334
1313
|
for (const file of outputs) {
|
|
335
|
-
if (outputs.length > 1) logger.log(`\n${
|
|
1314
|
+
if (outputs.length > 1) logger.log(`\n${styleText$1(["cyan", "bold"], `|→ ${file.fileName}:`)}\n`);
|
|
336
1315
|
console.log(file.type === "asset" ? file.source : file.code);
|
|
337
1316
|
}
|
|
338
|
-
} catch (_) {
|
|
339
|
-
_usingCtx$1.e = _;
|
|
1317
|
+
} catch (_$1) {
|
|
1318
|
+
_usingCtx$1.e = _$1;
|
|
340
1319
|
} finally {
|
|
341
1320
|
await _usingCtx$1.d();
|
|
342
1321
|
}
|
|
@@ -372,12 +1351,12 @@ async function watchInner(config, cliOptions) {
|
|
|
372
1351
|
clearScreen?.();
|
|
373
1352
|
break;
|
|
374
1353
|
case "BUNDLE_START":
|
|
375
|
-
if (changedFile.length > 0) logger.log(`Found ${
|
|
1354
|
+
if (changedFile.length > 0) logger.log(`Found ${styleText$1("bold", changedFile.map(relativeId).join(", "))} changed, rebuilding...`);
|
|
376
1355
|
changedFile.length = 0;
|
|
377
1356
|
break;
|
|
378
1357
|
case "BUNDLE_END":
|
|
379
1358
|
await event.result.close();
|
|
380
|
-
logger.success(`Rebuilt ${
|
|
1359
|
+
logger.success(`Rebuilt ${styleText$1("bold", relativeId(event.output[0]))} in ${styleText$1("green", ms(event.duration))}.`);
|
|
381
1360
|
break;
|
|
382
1361
|
case "ERROR":
|
|
383
1362
|
await event.result.close();
|
|
@@ -410,7 +1389,7 @@ async function bundleInner(config, cliOptions) {
|
|
|
410
1389
|
result.forEach(printBundleOutputPretty);
|
|
411
1390
|
logger.log(``);
|
|
412
1391
|
const duration = performance.now() - startTime;
|
|
413
|
-
logger.success(`rolldown v${version} Finished in ${
|
|
1392
|
+
logger.success(`rolldown v${version} Finished in ${styleText$1("green", ms(duration))}`);
|
|
414
1393
|
}
|
|
415
1394
|
function printBundleOutputPretty(output) {
|
|
416
1395
|
const outputEntries = collectOutputEntries(output.output);
|
|
@@ -455,11 +1434,11 @@ function printOutputEntries(entries, sizeAdjustment, distPath) {
|
|
|
455
1434
|
for (const group of CHUNK_GROUPS) {
|
|
456
1435
|
const filtered = entries.filter((e) => e.type === group.type);
|
|
457
1436
|
if (!filtered.length) continue;
|
|
458
|
-
for (const entry of filtered.sort((a, z) => a.size - z.size)) {
|
|
459
|
-
let log =
|
|
460
|
-
log +=
|
|
461
|
-
log +=
|
|
462
|
-
log +=
|
|
1437
|
+
for (const entry of filtered.sort((a$1, z) => a$1.size - z.size)) {
|
|
1438
|
+
let log = styleText$1("dim", withTrailingSlash(distPath));
|
|
1439
|
+
log += styleText$1(group.color, entry.fileName.padEnd(sizeAdjustment.longest + 2));
|
|
1440
|
+
log += styleText$1("dim", entry.type);
|
|
1441
|
+
log += styleText$1("dim", ` │ size: ${displaySize(entry.size).padStart(sizeAdjustment.sizePad)}`);
|
|
463
1442
|
logger.log(log);
|
|
464
1443
|
}
|
|
465
1444
|
}
|
|
@@ -478,9 +1457,9 @@ function relativeId(id) {
|
|
|
478
1457
|
|
|
479
1458
|
//#endregion
|
|
480
1459
|
//#region src/cli/commands/help.ts
|
|
481
|
-
const introduction = `${
|
|
1460
|
+
const introduction = `${styleText$1("gray", `${description} (rolldown v${version})`)}
|
|
482
1461
|
|
|
483
|
-
${
|
|
1462
|
+
${styleText$1(["bold", "underline"], "USAGE")} ${styleText$1("cyan", "rolldown -c <config>")} or ${styleText$1("cyan", "rolldown <input> <options>")}`;
|
|
484
1463
|
const examples = [
|
|
485
1464
|
{
|
|
486
1465
|
title: "Bundle with a config file `rolldown.config.mjs`",
|
|
@@ -512,33 +1491,33 @@ const notes = [
|
|
|
512
1491
|
function showHelp() {
|
|
513
1492
|
logger.log(introduction);
|
|
514
1493
|
logger.log("");
|
|
515
|
-
logger.log(`${
|
|
1494
|
+
logger.log(`${styleText$1(["bold", "underline"], "OPTIONS")}`);
|
|
516
1495
|
logger.log("");
|
|
517
|
-
logger.log(Object.entries(options).sort(([a], [b]) => {
|
|
518
|
-
if (options[a].short && !options[b].short) return -1;
|
|
519
|
-
if (!options[a].short && options[b].short) return 1;
|
|
520
|
-
if (options[a].short && options[b].short) return options[a].short.localeCompare(options[b].short);
|
|
521
|
-
return a.localeCompare(b);
|
|
1496
|
+
logger.log(Object.entries(options).sort(([a$1], [b$1]) => {
|
|
1497
|
+
if (options[a$1].short && !options[b$1].short) return -1;
|
|
1498
|
+
if (!options[a$1].short && options[b$1].short) return 1;
|
|
1499
|
+
if (options[a$1].short && options[b$1].short) return options[a$1].short.localeCompare(options[b$1].short);
|
|
1500
|
+
return a$1.localeCompare(b$1);
|
|
522
1501
|
}).map(([option, { type, short, hint, description: description$1 }]) => {
|
|
523
1502
|
let optionStr = ` --${option} `;
|
|
524
1503
|
option = camelCaseToKebabCase(option);
|
|
525
1504
|
if (short) optionStr += `-${short}, `;
|
|
526
1505
|
if (type === "string") optionStr += `<${hint ?? option}>`;
|
|
527
1506
|
if (description$1 && description$1.length > 0) description$1 = description$1[0].toUpperCase() + description$1.slice(1);
|
|
528
|
-
return
|
|
1507
|
+
return styleText$1("cyan", optionStr.padEnd(30)) + description$1 + (description$1 && description$1?.endsWith(".") ? "" : ".");
|
|
529
1508
|
}).join("\n"));
|
|
530
1509
|
logger.log("");
|
|
531
|
-
logger.log(`${
|
|
1510
|
+
logger.log(`${styleText$1(["bold", "underline"], "EXAMPLES")}`);
|
|
532
1511
|
logger.log("");
|
|
533
1512
|
examples.forEach(({ title, command }, ord) => {
|
|
534
1513
|
logger.log(` ${ord + 1}. ${title}:`);
|
|
535
|
-
logger.log(` ${
|
|
1514
|
+
logger.log(` ${styleText$1("cyan", command)}`);
|
|
536
1515
|
logger.log("");
|
|
537
1516
|
});
|
|
538
|
-
logger.log(`${
|
|
1517
|
+
logger.log(`${styleText$1(["bold", "underline"], "NOTES")}`);
|
|
539
1518
|
logger.log("");
|
|
540
1519
|
notes.forEach((note) => {
|
|
541
|
-
logger.log(` * ${
|
|
1520
|
+
logger.log(` * ${styleText$1("gray", note)}`);
|
|
542
1521
|
});
|
|
543
1522
|
}
|
|
544
1523
|
|