@rollipop/rolldown 0.0.0 → 1.0.0-rc.10
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/LICENSE +25 -0
- package/README.md +11 -1
- package/bin/cli.mjs +2 -0
- package/dist/cli.d.mts +1 -0
- package/dist/cli.mjs +1191 -0
- package/dist/config.d.mts +14 -0
- package/dist/config.mjs +4 -0
- package/dist/experimental-index.d.mts +316 -0
- package/dist/experimental-index.mjs +350 -0
- package/dist/experimental-runtime-types.d.ts +98 -0
- package/dist/filter-index.d.mts +196 -0
- package/dist/filter-index.mjs +386 -0
- package/dist/get-log-filter.d.mts +3 -0
- package/dist/get-log-filter.mjs +68 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.mjs +50 -0
- package/dist/parallel-plugin-worker.d.mts +1 -0
- package/dist/parallel-plugin-worker.mjs +28 -0
- package/dist/parallel-plugin.d.mts +13 -0
- package/dist/parallel-plugin.mjs +6 -0
- package/dist/parse-ast-index.d.mts +32 -0
- package/dist/parse-ast-index.mjs +60 -0
- package/dist/plugins-index.d.mts +33 -0
- package/dist/plugins-index.mjs +40 -0
- package/dist/shared/binding-D_jQsHun.mjs +583 -0
- package/dist/shared/binding-hSQGgsUz.d.mts +1877 -0
- package/dist/shared/bindingify-input-options-DfXGy4QO.mjs +2193 -0
- package/dist/shared/constructors-B-HbV10G.mjs +68 -0
- package/dist/shared/constructors-DMl58KN5.d.mts +37 -0
- package/dist/shared/define-config-BSxBeCq6.d.mts +3810 -0
- package/dist/shared/define-config-DJOr6Iwt.mjs +6 -0
- package/dist/shared/error-D5tMcn3l.mjs +85 -0
- package/dist/shared/get-log-filter-semyr3Lj.d.mts +35 -0
- package/dist/shared/load-config-CNjYgiQv.mjs +120 -0
- package/dist/shared/logging-C6h4g8dA.d.mts +50 -0
- package/dist/shared/logs-D80CXhvg.mjs +180 -0
- package/dist/shared/misc-DJYbNKZX.mjs +21 -0
- package/dist/shared/normalize-string-or-regex-B8PEhdn1.mjs +66 -0
- package/dist/shared/parse-iQx2ihYn.mjs +74 -0
- package/dist/shared/prompt-BYQIwEjg.mjs +845 -0
- package/dist/shared/resolve-tsconfig-CxoM-bno.mjs +113 -0
- package/dist/shared/rolldown-C0o3hS3w.mjs +40 -0
- package/dist/shared/rolldown-build-80GULIOI.mjs +3326 -0
- package/dist/shared/transform-DY2pi3Qm.d.mts +149 -0
- package/dist/shared/watch-C2am0Ahc.mjs +374 -0
- package/dist/utils-index.d.mts +376 -0
- package/dist/utils-index.mjs +2414 -0
- package/package.json +130 -2
- package/.editorconfig +0 -10
- package/.gitattributes +0 -4
package/dist/cli.mjs
ADDED
|
@@ -0,0 +1,1191 @@
|
|
|
1
|
+
import { n as onExit, t as watch } from "./shared/watch-C2am0Ahc.mjs";
|
|
2
|
+
import { C as version, S as description } from "./shared/bindingify-input-options-DfXGy4QO.mjs";
|
|
3
|
+
import { t as arraify } from "./shared/misc-DJYbNKZX.mjs";
|
|
4
|
+
import { a as getInputCliKeys, i as getCliSchemaInfo, l as styleText, o as getOutputCliKeys, r as logger, s as validateCliOptions } from "./shared/rolldown-build-80GULIOI.mjs";
|
|
5
|
+
import { t as rolldown } from "./shared/rolldown-C0o3hS3w.mjs";
|
|
6
|
+
import { t as loadConfig } from "./shared/load-config-CNjYgiQv.mjs";
|
|
7
|
+
import path from "node:path";
|
|
8
|
+
import process$1 from "node:process";
|
|
9
|
+
import { performance } from "node:perf_hooks";
|
|
10
|
+
//#region ../../node_modules/.pnpm/cac@7.0.0/node_modules/cac/dist/index.js
|
|
11
|
+
function toArr(any) {
|
|
12
|
+
return any == null ? [] : Array.isArray(any) ? any : [any];
|
|
13
|
+
}
|
|
14
|
+
function toVal(out, key, val, opts) {
|
|
15
|
+
var x, old = out[key], nxt = !!~opts.string.indexOf(key) ? val == null || val === true ? "" : String(val) : typeof val === "boolean" ? val : !!~opts.boolean.indexOf(key) ? val === "false" ? false : val === "true" || (out._.push((x = +val, x * 0 === 0) ? x : val), !!val) : (x = +val, x * 0 === 0) ? x : val;
|
|
16
|
+
out[key] = old == null ? nxt : Array.isArray(old) ? old.concat(nxt) : [old, nxt];
|
|
17
|
+
}
|
|
18
|
+
function lib_default(args, opts) {
|
|
19
|
+
args = args || [];
|
|
20
|
+
opts = opts || {};
|
|
21
|
+
var k, arr, arg, name, val, out = { _: [] };
|
|
22
|
+
var i = 0, j = 0, idx = 0, len = args.length;
|
|
23
|
+
const alibi = opts.alias !== void 0;
|
|
24
|
+
const strict = opts.unknown !== void 0;
|
|
25
|
+
const defaults = opts.default !== void 0;
|
|
26
|
+
opts.alias = opts.alias || {};
|
|
27
|
+
opts.string = toArr(opts.string);
|
|
28
|
+
opts.boolean = toArr(opts.boolean);
|
|
29
|
+
if (alibi) for (k in opts.alias) {
|
|
30
|
+
arr = opts.alias[k] = toArr(opts.alias[k]);
|
|
31
|
+
for (i = 0; i < arr.length; i++) (opts.alias[arr[i]] = arr.concat(k)).splice(i, 1);
|
|
32
|
+
}
|
|
33
|
+
for (i = opts.boolean.length; i-- > 0;) {
|
|
34
|
+
arr = opts.alias[opts.boolean[i]] || [];
|
|
35
|
+
for (j = arr.length; j-- > 0;) opts.boolean.push(arr[j]);
|
|
36
|
+
}
|
|
37
|
+
for (i = opts.string.length; i-- > 0;) {
|
|
38
|
+
arr = opts.alias[opts.string[i]] || [];
|
|
39
|
+
for (j = arr.length; j-- > 0;) opts.string.push(arr[j]);
|
|
40
|
+
}
|
|
41
|
+
if (defaults) for (k in opts.default) {
|
|
42
|
+
name = typeof opts.default[k];
|
|
43
|
+
arr = opts.alias[k] = opts.alias[k] || [];
|
|
44
|
+
if (opts[name] !== void 0) {
|
|
45
|
+
opts[name].push(k);
|
|
46
|
+
for (i = 0; i < arr.length; i++) opts[name].push(arr[i]);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
const keys = strict ? Object.keys(opts.alias) : [];
|
|
50
|
+
for (i = 0; i < len; i++) {
|
|
51
|
+
arg = args[i];
|
|
52
|
+
if (arg === "--") {
|
|
53
|
+
out._ = out._.concat(args.slice(++i));
|
|
54
|
+
break;
|
|
55
|
+
}
|
|
56
|
+
for (j = 0; j < arg.length; j++) if (arg.charCodeAt(j) !== 45) break;
|
|
57
|
+
if (j === 0) out._.push(arg);
|
|
58
|
+
else if (arg.substring(j, j + 3) === "no-") {
|
|
59
|
+
name = arg.substring(j + 3);
|
|
60
|
+
if (strict && !~keys.indexOf(name)) return opts.unknown(arg);
|
|
61
|
+
out[name] = false;
|
|
62
|
+
} else {
|
|
63
|
+
for (idx = j + 1; idx < arg.length; idx++) if (arg.charCodeAt(idx) === 61) break;
|
|
64
|
+
name = arg.substring(j, idx);
|
|
65
|
+
val = arg.substring(++idx) || i + 1 === len || ("" + args[i + 1]).charCodeAt(0) === 45 || args[++i];
|
|
66
|
+
arr = j === 2 ? [name] : name;
|
|
67
|
+
for (idx = 0; idx < arr.length; idx++) {
|
|
68
|
+
name = arr[idx];
|
|
69
|
+
if (strict && !~keys.indexOf(name)) return opts.unknown("-".repeat(j) + name);
|
|
70
|
+
toVal(out, name, idx + 1 < arr.length || val, opts);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
if (defaults) {
|
|
75
|
+
for (k in opts.default) if (out[k] === void 0) out[k] = opts.default[k];
|
|
76
|
+
}
|
|
77
|
+
if (alibi) for (k in out) {
|
|
78
|
+
arr = opts.alias[k] || [];
|
|
79
|
+
while (arr.length > 0) out[arr.shift()] = out[k];
|
|
80
|
+
}
|
|
81
|
+
return out;
|
|
82
|
+
}
|
|
83
|
+
function removeBrackets(v) {
|
|
84
|
+
return v.replace(/[<[].+/, "").trim();
|
|
85
|
+
}
|
|
86
|
+
function findAllBrackets(v) {
|
|
87
|
+
const ANGLED_BRACKET_RE_GLOBAL = /<([^>]+)>/g;
|
|
88
|
+
const SQUARE_BRACKET_RE_GLOBAL = /\[([^\]]+)\]/g;
|
|
89
|
+
const res = [];
|
|
90
|
+
const parse = (match) => {
|
|
91
|
+
let variadic = false;
|
|
92
|
+
let value = match[1];
|
|
93
|
+
if (value.startsWith("...")) {
|
|
94
|
+
value = value.slice(3);
|
|
95
|
+
variadic = true;
|
|
96
|
+
}
|
|
97
|
+
return {
|
|
98
|
+
required: match[0].startsWith("<"),
|
|
99
|
+
value,
|
|
100
|
+
variadic
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
let angledMatch;
|
|
104
|
+
while (angledMatch = ANGLED_BRACKET_RE_GLOBAL.exec(v)) res.push(parse(angledMatch));
|
|
105
|
+
let squareMatch;
|
|
106
|
+
while (squareMatch = SQUARE_BRACKET_RE_GLOBAL.exec(v)) res.push(parse(squareMatch));
|
|
107
|
+
return res;
|
|
108
|
+
}
|
|
109
|
+
function getMriOptions(options) {
|
|
110
|
+
const result = {
|
|
111
|
+
alias: {},
|
|
112
|
+
boolean: []
|
|
113
|
+
};
|
|
114
|
+
for (const [index, option] of options.entries()) {
|
|
115
|
+
if (option.names.length > 1) result.alias[option.names[0]] = option.names.slice(1);
|
|
116
|
+
if (option.isBoolean) if (option.negated) {
|
|
117
|
+
if (!options.some((o, i) => {
|
|
118
|
+
return i !== index && o.names.some((name) => option.names.includes(name)) && typeof o.required === "boolean";
|
|
119
|
+
})) result.boolean.push(option.names[0]);
|
|
120
|
+
} else result.boolean.push(option.names[0]);
|
|
121
|
+
}
|
|
122
|
+
return result;
|
|
123
|
+
}
|
|
124
|
+
function findLongest(arr) {
|
|
125
|
+
return arr.sort((a, b) => {
|
|
126
|
+
return a.length > b.length ? -1 : 1;
|
|
127
|
+
})[0];
|
|
128
|
+
}
|
|
129
|
+
function padRight(str, length) {
|
|
130
|
+
return str.length >= length ? str : `${str}${" ".repeat(length - str.length)}`;
|
|
131
|
+
}
|
|
132
|
+
function camelcase(input) {
|
|
133
|
+
return input.replaceAll(/([a-z])-([a-z])/g, (_, p1, p2) => {
|
|
134
|
+
return p1 + p2.toUpperCase();
|
|
135
|
+
});
|
|
136
|
+
}
|
|
137
|
+
function setDotProp(obj, keys, val) {
|
|
138
|
+
let current = obj;
|
|
139
|
+
for (let i = 0; i < keys.length; i++) {
|
|
140
|
+
const key = keys[i];
|
|
141
|
+
if (i === keys.length - 1) {
|
|
142
|
+
current[key] = val;
|
|
143
|
+
return;
|
|
144
|
+
}
|
|
145
|
+
if (current[key] == null) {
|
|
146
|
+
const nextKeyIsArrayIndex = +keys[i + 1] > -1;
|
|
147
|
+
current[key] = nextKeyIsArrayIndex ? [] : {};
|
|
148
|
+
}
|
|
149
|
+
current = current[key];
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
function setByType(obj, transforms) {
|
|
153
|
+
for (const key of Object.keys(transforms)) {
|
|
154
|
+
const transform = transforms[key];
|
|
155
|
+
if (transform.shouldTransform) {
|
|
156
|
+
obj[key] = [obj[key]].flat();
|
|
157
|
+
if (typeof transform.transformFunction === "function") obj[key] = obj[key].map(transform.transformFunction);
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
function getFileName(input) {
|
|
162
|
+
const m = /([^\\/]+)$/.exec(input);
|
|
163
|
+
return m ? m[1] : "";
|
|
164
|
+
}
|
|
165
|
+
function camelcaseOptionName(name) {
|
|
166
|
+
return name.split(".").map((v, i) => {
|
|
167
|
+
return i === 0 ? camelcase(v) : v;
|
|
168
|
+
}).join(".");
|
|
169
|
+
}
|
|
170
|
+
var CACError = class extends Error {
|
|
171
|
+
constructor(message) {
|
|
172
|
+
super(message);
|
|
173
|
+
this.name = "CACError";
|
|
174
|
+
if (typeof Error.captureStackTrace !== "function") this.stack = new Error(message).stack;
|
|
175
|
+
}
|
|
176
|
+
};
|
|
177
|
+
var Option = class {
|
|
178
|
+
rawName;
|
|
179
|
+
description;
|
|
180
|
+
/** Option name */
|
|
181
|
+
name;
|
|
182
|
+
/** Option name and aliases */
|
|
183
|
+
names;
|
|
184
|
+
isBoolean;
|
|
185
|
+
required;
|
|
186
|
+
config;
|
|
187
|
+
negated;
|
|
188
|
+
constructor(rawName, description, config) {
|
|
189
|
+
this.rawName = rawName;
|
|
190
|
+
this.description = description;
|
|
191
|
+
this.config = Object.assign({}, config);
|
|
192
|
+
rawName = rawName.replaceAll(".*", "");
|
|
193
|
+
this.negated = false;
|
|
194
|
+
this.names = removeBrackets(rawName).split(",").map((v) => {
|
|
195
|
+
let name = v.trim().replace(/^-{1,2}/, "");
|
|
196
|
+
if (name.startsWith("no-")) {
|
|
197
|
+
this.negated = true;
|
|
198
|
+
name = name.replace(/^no-/, "");
|
|
199
|
+
}
|
|
200
|
+
return camelcaseOptionName(name);
|
|
201
|
+
}).sort((a, b) => a.length > b.length ? 1 : -1);
|
|
202
|
+
this.name = this.names.at(-1);
|
|
203
|
+
if (this.negated && this.config.default == null) this.config.default = true;
|
|
204
|
+
if (rawName.includes("<")) this.required = true;
|
|
205
|
+
else if (rawName.includes("[")) this.required = false;
|
|
206
|
+
else this.isBoolean = true;
|
|
207
|
+
}
|
|
208
|
+
};
|
|
209
|
+
let runtimeProcessArgs;
|
|
210
|
+
let runtimeInfo;
|
|
211
|
+
if (typeof process !== "undefined") {
|
|
212
|
+
let runtimeName;
|
|
213
|
+
if (typeof Deno !== "undefined" && typeof Deno.version?.deno === "string") runtimeName = "deno";
|
|
214
|
+
else if (typeof Bun !== "undefined" && typeof Bun.version === "string") runtimeName = "bun";
|
|
215
|
+
else runtimeName = "node";
|
|
216
|
+
runtimeInfo = `${process.platform}-${process.arch} ${runtimeName}-${process.version}`;
|
|
217
|
+
runtimeProcessArgs = process.argv;
|
|
218
|
+
} else if (typeof navigator === "undefined") runtimeInfo = `unknown`;
|
|
219
|
+
else runtimeInfo = `${navigator.platform} ${navigator.userAgent}`;
|
|
220
|
+
var Command = class {
|
|
221
|
+
rawName;
|
|
222
|
+
description;
|
|
223
|
+
config;
|
|
224
|
+
cli;
|
|
225
|
+
options;
|
|
226
|
+
aliasNames;
|
|
227
|
+
name;
|
|
228
|
+
args;
|
|
229
|
+
commandAction;
|
|
230
|
+
usageText;
|
|
231
|
+
versionNumber;
|
|
232
|
+
examples;
|
|
233
|
+
helpCallback;
|
|
234
|
+
globalCommand;
|
|
235
|
+
constructor(rawName, description, config = {}, cli) {
|
|
236
|
+
this.rawName = rawName;
|
|
237
|
+
this.description = description;
|
|
238
|
+
this.config = config;
|
|
239
|
+
this.cli = cli;
|
|
240
|
+
this.options = [];
|
|
241
|
+
this.aliasNames = [];
|
|
242
|
+
this.name = removeBrackets(rawName);
|
|
243
|
+
this.args = findAllBrackets(rawName);
|
|
244
|
+
this.examples = [];
|
|
245
|
+
}
|
|
246
|
+
usage(text) {
|
|
247
|
+
this.usageText = text;
|
|
248
|
+
return this;
|
|
249
|
+
}
|
|
250
|
+
allowUnknownOptions() {
|
|
251
|
+
this.config.allowUnknownOptions = true;
|
|
252
|
+
return this;
|
|
253
|
+
}
|
|
254
|
+
ignoreOptionDefaultValue() {
|
|
255
|
+
this.config.ignoreOptionDefaultValue = true;
|
|
256
|
+
return this;
|
|
257
|
+
}
|
|
258
|
+
version(version, customFlags = "-v, --version") {
|
|
259
|
+
this.versionNumber = version;
|
|
260
|
+
this.option(customFlags, "Display version number");
|
|
261
|
+
return this;
|
|
262
|
+
}
|
|
263
|
+
example(example) {
|
|
264
|
+
this.examples.push(example);
|
|
265
|
+
return this;
|
|
266
|
+
}
|
|
267
|
+
/**
|
|
268
|
+
* Add a option for this command
|
|
269
|
+
* @param rawName Raw option name(s)
|
|
270
|
+
* @param description Option description
|
|
271
|
+
* @param config Option config
|
|
272
|
+
*/
|
|
273
|
+
option(rawName, description, config) {
|
|
274
|
+
const option = new Option(rawName, description, config);
|
|
275
|
+
this.options.push(option);
|
|
276
|
+
return this;
|
|
277
|
+
}
|
|
278
|
+
alias(name) {
|
|
279
|
+
this.aliasNames.push(name);
|
|
280
|
+
return this;
|
|
281
|
+
}
|
|
282
|
+
action(callback) {
|
|
283
|
+
this.commandAction = callback;
|
|
284
|
+
return this;
|
|
285
|
+
}
|
|
286
|
+
/**
|
|
287
|
+
* Check if a command name is matched by this command
|
|
288
|
+
* @param name Command name
|
|
289
|
+
*/
|
|
290
|
+
isMatched(name) {
|
|
291
|
+
return this.name === name || this.aliasNames.includes(name);
|
|
292
|
+
}
|
|
293
|
+
get isDefaultCommand() {
|
|
294
|
+
return this.name === "" || this.aliasNames.includes("!");
|
|
295
|
+
}
|
|
296
|
+
get isGlobalCommand() {
|
|
297
|
+
return this instanceof GlobalCommand;
|
|
298
|
+
}
|
|
299
|
+
/**
|
|
300
|
+
* Check if an option is registered in this command
|
|
301
|
+
* @param name Option name
|
|
302
|
+
*/
|
|
303
|
+
hasOption(name) {
|
|
304
|
+
name = name.split(".")[0];
|
|
305
|
+
return this.options.find((option) => {
|
|
306
|
+
return option.names.includes(name);
|
|
307
|
+
});
|
|
308
|
+
}
|
|
309
|
+
outputHelp() {
|
|
310
|
+
const { name, commands } = this.cli;
|
|
311
|
+
const { versionNumber, options: globalOptions, helpCallback } = this.cli.globalCommand;
|
|
312
|
+
let sections = [{ body: `${name}${versionNumber ? `/${versionNumber}` : ""}` }];
|
|
313
|
+
sections.push({
|
|
314
|
+
title: "Usage",
|
|
315
|
+
body: ` $ ${name} ${this.usageText || this.rawName}`
|
|
316
|
+
});
|
|
317
|
+
if ((this.isGlobalCommand || this.isDefaultCommand) && commands.length > 0) {
|
|
318
|
+
const longestCommandName = findLongest(commands.map((command) => command.rawName));
|
|
319
|
+
sections.push({
|
|
320
|
+
title: "Commands",
|
|
321
|
+
body: commands.map((command) => {
|
|
322
|
+
return ` ${padRight(command.rawName, longestCommandName.length)} ${command.description}`;
|
|
323
|
+
}).join("\n")
|
|
324
|
+
}, {
|
|
325
|
+
title: `For more info, run any command with the \`--help\` flag`,
|
|
326
|
+
body: commands.map((command) => ` $ ${name}${command.name === "" ? "" : ` ${command.name}`} --help`).join("\n")
|
|
327
|
+
});
|
|
328
|
+
}
|
|
329
|
+
let options = this.isGlobalCommand ? globalOptions : [...this.options, ...globalOptions || []];
|
|
330
|
+
if (!this.isGlobalCommand && !this.isDefaultCommand) options = options.filter((option) => option.name !== "version");
|
|
331
|
+
if (options.length > 0) {
|
|
332
|
+
const longestOptionName = findLongest(options.map((option) => option.rawName));
|
|
333
|
+
sections.push({
|
|
334
|
+
title: "Options",
|
|
335
|
+
body: options.map((option) => {
|
|
336
|
+
return ` ${padRight(option.rawName, longestOptionName.length)} ${option.description} ${option.config.default === void 0 ? "" : `(default: ${option.config.default})`}`;
|
|
337
|
+
}).join("\n")
|
|
338
|
+
});
|
|
339
|
+
}
|
|
340
|
+
if (this.examples.length > 0) sections.push({
|
|
341
|
+
title: "Examples",
|
|
342
|
+
body: this.examples.map((example) => {
|
|
343
|
+
if (typeof example === "function") return example(name);
|
|
344
|
+
return example;
|
|
345
|
+
}).join("\n")
|
|
346
|
+
});
|
|
347
|
+
if (helpCallback) sections = helpCallback(sections) || sections;
|
|
348
|
+
console.info(sections.map((section) => {
|
|
349
|
+
return section.title ? `${section.title}:\n${section.body}` : section.body;
|
|
350
|
+
}).join("\n\n"));
|
|
351
|
+
}
|
|
352
|
+
outputVersion() {
|
|
353
|
+
const { name } = this.cli;
|
|
354
|
+
const { versionNumber } = this.cli.globalCommand;
|
|
355
|
+
if (versionNumber) console.info(`${name}/${versionNumber} ${runtimeInfo}`);
|
|
356
|
+
}
|
|
357
|
+
checkRequiredArgs() {
|
|
358
|
+
const minimalArgsCount = this.args.filter((arg) => arg.required).length;
|
|
359
|
+
if (this.cli.args.length < minimalArgsCount) throw new CACError(`missing required args for command \`${this.rawName}\``);
|
|
360
|
+
}
|
|
361
|
+
/**
|
|
362
|
+
* Check if the parsed options contain any unknown options
|
|
363
|
+
*
|
|
364
|
+
* Exit and output error when true
|
|
365
|
+
*/
|
|
366
|
+
checkUnknownOptions() {
|
|
367
|
+
const { options, globalCommand } = this.cli;
|
|
368
|
+
if (!this.config.allowUnknownOptions) {
|
|
369
|
+
for (const name of Object.keys(options)) if (name !== "--" && !this.hasOption(name) && !globalCommand.hasOption(name)) throw new CACError(`Unknown option \`${name.length > 1 ? `--${name}` : `-${name}`}\``);
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
/**
|
|
373
|
+
* Check if the required string-type options exist
|
|
374
|
+
*/
|
|
375
|
+
checkOptionValue() {
|
|
376
|
+
const { options: parsedOptions, globalCommand } = this.cli;
|
|
377
|
+
const options = [...globalCommand.options, ...this.options];
|
|
378
|
+
for (const option of options) {
|
|
379
|
+
const value = parsedOptions[option.name.split(".")[0]];
|
|
380
|
+
if (option.required) {
|
|
381
|
+
const hasNegated = options.some((o) => o.negated && o.names.includes(option.name));
|
|
382
|
+
if (value === true || value === false && !hasNegated) throw new CACError(`option \`${option.rawName}\` value is missing`);
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
/**
|
|
387
|
+
* Check if the number of args is more than expected
|
|
388
|
+
*/
|
|
389
|
+
checkUnusedArgs() {
|
|
390
|
+
const maximumArgsCount = this.args.some((arg) => arg.variadic) ? Infinity : this.args.length;
|
|
391
|
+
if (maximumArgsCount < this.cli.args.length) throw new CACError(`Unused args: ${this.cli.args.slice(maximumArgsCount).map((arg) => `\`${arg}\``).join(", ")}`);
|
|
392
|
+
}
|
|
393
|
+
};
|
|
394
|
+
var GlobalCommand = class extends Command {
|
|
395
|
+
constructor(cli) {
|
|
396
|
+
super("@@global@@", "", {}, cli);
|
|
397
|
+
}
|
|
398
|
+
};
|
|
399
|
+
var CAC = class extends EventTarget {
|
|
400
|
+
/** The program name to display in help and version message */
|
|
401
|
+
name;
|
|
402
|
+
commands;
|
|
403
|
+
globalCommand;
|
|
404
|
+
matchedCommand;
|
|
405
|
+
matchedCommandName;
|
|
406
|
+
/**
|
|
407
|
+
* Raw CLI arguments
|
|
408
|
+
*/
|
|
409
|
+
rawArgs;
|
|
410
|
+
/**
|
|
411
|
+
* Parsed CLI arguments
|
|
412
|
+
*/
|
|
413
|
+
args;
|
|
414
|
+
/**
|
|
415
|
+
* Parsed CLI options, camelCased
|
|
416
|
+
*/
|
|
417
|
+
options;
|
|
418
|
+
showHelpOnExit;
|
|
419
|
+
showVersionOnExit;
|
|
420
|
+
/**
|
|
421
|
+
* @param name The program name to display in help and version message
|
|
422
|
+
*/
|
|
423
|
+
constructor(name = "") {
|
|
424
|
+
super();
|
|
425
|
+
this.name = name;
|
|
426
|
+
this.commands = [];
|
|
427
|
+
this.rawArgs = [];
|
|
428
|
+
this.args = [];
|
|
429
|
+
this.options = {};
|
|
430
|
+
this.globalCommand = new GlobalCommand(this);
|
|
431
|
+
this.globalCommand.usage("<command> [options]");
|
|
432
|
+
}
|
|
433
|
+
/**
|
|
434
|
+
* Add a global usage text.
|
|
435
|
+
*
|
|
436
|
+
* This is not used by sub-commands.
|
|
437
|
+
*/
|
|
438
|
+
usage(text) {
|
|
439
|
+
this.globalCommand.usage(text);
|
|
440
|
+
return this;
|
|
441
|
+
}
|
|
442
|
+
/**
|
|
443
|
+
* Add a sub-command
|
|
444
|
+
*/
|
|
445
|
+
command(rawName, description, config) {
|
|
446
|
+
const command = new Command(rawName, description || "", config, this);
|
|
447
|
+
command.globalCommand = this.globalCommand;
|
|
448
|
+
this.commands.push(command);
|
|
449
|
+
return command;
|
|
450
|
+
}
|
|
451
|
+
/**
|
|
452
|
+
* Add a global CLI option.
|
|
453
|
+
*
|
|
454
|
+
* Which is also applied to sub-commands.
|
|
455
|
+
*/
|
|
456
|
+
option(rawName, description, config) {
|
|
457
|
+
this.globalCommand.option(rawName, description, config);
|
|
458
|
+
return this;
|
|
459
|
+
}
|
|
460
|
+
/**
|
|
461
|
+
* Show help message when `-h, --help` flags appear.
|
|
462
|
+
*
|
|
463
|
+
*/
|
|
464
|
+
help(callback) {
|
|
465
|
+
this.globalCommand.option("-h, --help", "Display this message");
|
|
466
|
+
this.globalCommand.helpCallback = callback;
|
|
467
|
+
this.showHelpOnExit = true;
|
|
468
|
+
return this;
|
|
469
|
+
}
|
|
470
|
+
/**
|
|
471
|
+
* Show version number when `-v, --version` flags appear.
|
|
472
|
+
*
|
|
473
|
+
*/
|
|
474
|
+
version(version, customFlags = "-v, --version") {
|
|
475
|
+
this.globalCommand.version(version, customFlags);
|
|
476
|
+
this.showVersionOnExit = true;
|
|
477
|
+
return this;
|
|
478
|
+
}
|
|
479
|
+
/**
|
|
480
|
+
* Add a global example.
|
|
481
|
+
*
|
|
482
|
+
* This example added here will not be used by sub-commands.
|
|
483
|
+
*/
|
|
484
|
+
example(example) {
|
|
485
|
+
this.globalCommand.example(example);
|
|
486
|
+
return this;
|
|
487
|
+
}
|
|
488
|
+
/**
|
|
489
|
+
* Output the corresponding help message
|
|
490
|
+
* When a sub-command is matched, output the help message for the command
|
|
491
|
+
* Otherwise output the global one.
|
|
492
|
+
*
|
|
493
|
+
*/
|
|
494
|
+
outputHelp() {
|
|
495
|
+
if (this.matchedCommand) this.matchedCommand.outputHelp();
|
|
496
|
+
else this.globalCommand.outputHelp();
|
|
497
|
+
}
|
|
498
|
+
/**
|
|
499
|
+
* Output the version number.
|
|
500
|
+
*
|
|
501
|
+
*/
|
|
502
|
+
outputVersion() {
|
|
503
|
+
this.globalCommand.outputVersion();
|
|
504
|
+
}
|
|
505
|
+
setParsedInfo({ args, options }, matchedCommand, matchedCommandName) {
|
|
506
|
+
this.args = args;
|
|
507
|
+
this.options = options;
|
|
508
|
+
if (matchedCommand) this.matchedCommand = matchedCommand;
|
|
509
|
+
if (matchedCommandName) this.matchedCommandName = matchedCommandName;
|
|
510
|
+
return this;
|
|
511
|
+
}
|
|
512
|
+
unsetMatchedCommand() {
|
|
513
|
+
this.matchedCommand = void 0;
|
|
514
|
+
this.matchedCommandName = void 0;
|
|
515
|
+
}
|
|
516
|
+
/**
|
|
517
|
+
* Parse argv
|
|
518
|
+
*/
|
|
519
|
+
parse(argv, { run = true } = {}) {
|
|
520
|
+
if (!argv) {
|
|
521
|
+
if (!runtimeProcessArgs) throw new Error("No argv provided and runtime process argv is not available.");
|
|
522
|
+
argv = runtimeProcessArgs;
|
|
523
|
+
}
|
|
524
|
+
this.rawArgs = argv;
|
|
525
|
+
if (!this.name) this.name = argv[1] ? getFileName(argv[1]) : "cli";
|
|
526
|
+
let shouldParse = true;
|
|
527
|
+
for (const command of this.commands) {
|
|
528
|
+
const parsed = this.mri(argv.slice(2), command);
|
|
529
|
+
const commandName = parsed.args[0];
|
|
530
|
+
if (command.isMatched(commandName)) {
|
|
531
|
+
shouldParse = false;
|
|
532
|
+
const parsedInfo = {
|
|
533
|
+
...parsed,
|
|
534
|
+
args: parsed.args.slice(1)
|
|
535
|
+
};
|
|
536
|
+
this.setParsedInfo(parsedInfo, command, commandName);
|
|
537
|
+
this.dispatchEvent(new CustomEvent(`command:${commandName}`, { detail: command }));
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
if (shouldParse) {
|
|
541
|
+
for (const command of this.commands) if (command.isDefaultCommand) {
|
|
542
|
+
shouldParse = false;
|
|
543
|
+
const parsed = this.mri(argv.slice(2), command);
|
|
544
|
+
this.setParsedInfo(parsed, command);
|
|
545
|
+
this.dispatchEvent(new CustomEvent("command:!", { detail: command }));
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
if (shouldParse) {
|
|
549
|
+
const parsed = this.mri(argv.slice(2));
|
|
550
|
+
this.setParsedInfo(parsed);
|
|
551
|
+
}
|
|
552
|
+
if (this.options.help && this.showHelpOnExit) {
|
|
553
|
+
this.outputHelp();
|
|
554
|
+
run = false;
|
|
555
|
+
this.unsetMatchedCommand();
|
|
556
|
+
}
|
|
557
|
+
if (this.options.version && this.showVersionOnExit && this.matchedCommandName == null) {
|
|
558
|
+
this.outputVersion();
|
|
559
|
+
run = false;
|
|
560
|
+
this.unsetMatchedCommand();
|
|
561
|
+
}
|
|
562
|
+
const parsedArgv = {
|
|
563
|
+
args: this.args,
|
|
564
|
+
options: this.options
|
|
565
|
+
};
|
|
566
|
+
if (run) this.runMatchedCommand();
|
|
567
|
+
if (!this.matchedCommand && this.args[0]) this.dispatchEvent(new CustomEvent("command:*", { detail: this.args[0] }));
|
|
568
|
+
return parsedArgv;
|
|
569
|
+
}
|
|
570
|
+
mri(argv, command) {
|
|
571
|
+
const cliOptions = [...this.globalCommand.options, ...command ? command.options : []];
|
|
572
|
+
const mriOptions = getMriOptions(cliOptions);
|
|
573
|
+
let argsAfterDoubleDashes = [];
|
|
574
|
+
const doubleDashesIndex = argv.indexOf("--");
|
|
575
|
+
if (doubleDashesIndex !== -1) {
|
|
576
|
+
argsAfterDoubleDashes = argv.slice(doubleDashesIndex + 1);
|
|
577
|
+
argv = argv.slice(0, doubleDashesIndex);
|
|
578
|
+
}
|
|
579
|
+
let parsed = lib_default(argv, mriOptions);
|
|
580
|
+
parsed = Object.keys(parsed).reduce((res, name) => {
|
|
581
|
+
return {
|
|
582
|
+
...res,
|
|
583
|
+
[camelcaseOptionName(name)]: parsed[name]
|
|
584
|
+
};
|
|
585
|
+
}, { _: [] });
|
|
586
|
+
const args = parsed._;
|
|
587
|
+
const options = { "--": argsAfterDoubleDashes };
|
|
588
|
+
const ignoreDefault = command && command.config.ignoreOptionDefaultValue ? command.config.ignoreOptionDefaultValue : this.globalCommand.config.ignoreOptionDefaultValue;
|
|
589
|
+
const transforms = Object.create(null);
|
|
590
|
+
for (const cliOption of cliOptions) {
|
|
591
|
+
if (!ignoreDefault && cliOption.config.default !== void 0) for (const name of cliOption.names) options[name] = cliOption.config.default;
|
|
592
|
+
if (Array.isArray(cliOption.config.type) && transforms[cliOption.name] === void 0) {
|
|
593
|
+
transforms[cliOption.name] = Object.create(null);
|
|
594
|
+
transforms[cliOption.name].shouldTransform = true;
|
|
595
|
+
transforms[cliOption.name].transformFunction = cliOption.config.type[0];
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
for (const key of Object.keys(parsed)) if (key !== "_") {
|
|
599
|
+
setDotProp(options, key.split("."), parsed[key]);
|
|
600
|
+
setByType(options, transforms);
|
|
601
|
+
}
|
|
602
|
+
return {
|
|
603
|
+
args,
|
|
604
|
+
options
|
|
605
|
+
};
|
|
606
|
+
}
|
|
607
|
+
runMatchedCommand() {
|
|
608
|
+
const { args, options, matchedCommand: command } = this;
|
|
609
|
+
if (!command || !command.commandAction) return;
|
|
610
|
+
command.checkUnknownOptions();
|
|
611
|
+
command.checkOptionValue();
|
|
612
|
+
command.checkRequiredArgs();
|
|
613
|
+
command.checkUnusedArgs();
|
|
614
|
+
const actionArgs = [];
|
|
615
|
+
command.args.forEach((arg, index) => {
|
|
616
|
+
if (arg.variadic) actionArgs.push(args.slice(index));
|
|
617
|
+
else actionArgs.push(args[index]);
|
|
618
|
+
});
|
|
619
|
+
actionArgs.push(options);
|
|
620
|
+
return command.commandAction.apply(this, actionArgs);
|
|
621
|
+
}
|
|
622
|
+
};
|
|
623
|
+
/**
|
|
624
|
+
* @param name The program name to display in help and version message
|
|
625
|
+
*/
|
|
626
|
+
const cac = (name = "") => new CAC(name);
|
|
627
|
+
//#endregion
|
|
628
|
+
//#region src/cli/arguments/alias.ts
|
|
629
|
+
const alias = {
|
|
630
|
+
config: {
|
|
631
|
+
abbreviation: "c",
|
|
632
|
+
hint: "filename"
|
|
633
|
+
},
|
|
634
|
+
help: { abbreviation: "h" },
|
|
635
|
+
version: { abbreviation: "v" },
|
|
636
|
+
watch: { abbreviation: "w" },
|
|
637
|
+
dir: {
|
|
638
|
+
abbreviation: "d",
|
|
639
|
+
requireValue: true
|
|
640
|
+
},
|
|
641
|
+
file: {
|
|
642
|
+
abbreviation: "o",
|
|
643
|
+
requireValue: true
|
|
644
|
+
},
|
|
645
|
+
external: { abbreviation: "e" },
|
|
646
|
+
format: { abbreviation: "f" },
|
|
647
|
+
name: { abbreviation: "n" },
|
|
648
|
+
globals: { abbreviation: "g" },
|
|
649
|
+
sourcemap: { abbreviation: "s" },
|
|
650
|
+
minify: { abbreviation: "m" },
|
|
651
|
+
platform: { abbreviation: "p" },
|
|
652
|
+
assetFileNames: { hint: "name" },
|
|
653
|
+
chunkFileNames: { hint: "name" },
|
|
654
|
+
entryFileNames: { hint: "name" },
|
|
655
|
+
externalLiveBindings: { reverse: true },
|
|
656
|
+
treeshake: { reverse: true },
|
|
657
|
+
preserveEntrySignatures: { reverse: true },
|
|
658
|
+
moduleTypes: { hint: "types" }
|
|
659
|
+
};
|
|
660
|
+
//#endregion
|
|
661
|
+
//#region src/cli/arguments/utils.ts
|
|
662
|
+
function setNestedProperty(obj, path, value) {
|
|
663
|
+
const keys = path.split(".");
|
|
664
|
+
let current = obj;
|
|
665
|
+
for (let i = 0; i < keys.length - 1; i++) {
|
|
666
|
+
if (!current[keys[i]]) current[keys[i]] = {};
|
|
667
|
+
current = current[keys[i]];
|
|
668
|
+
}
|
|
669
|
+
const finalKey = keys[keys.length - 1];
|
|
670
|
+
Object.defineProperty(current, finalKey, {
|
|
671
|
+
value,
|
|
672
|
+
writable: true,
|
|
673
|
+
enumerable: true,
|
|
674
|
+
configurable: true
|
|
675
|
+
});
|
|
676
|
+
}
|
|
677
|
+
function camelCaseToKebabCase(str) {
|
|
678
|
+
return str.replace(/[A-Z]/g, (match) => `-${match.toLowerCase()}`);
|
|
679
|
+
}
|
|
680
|
+
//#endregion
|
|
681
|
+
//#region src/cli/arguments/normalize.ts
|
|
682
|
+
const reservedKeys = new Set([
|
|
683
|
+
"help",
|
|
684
|
+
"version",
|
|
685
|
+
"config",
|
|
686
|
+
"watch",
|
|
687
|
+
"environment"
|
|
688
|
+
]);
|
|
689
|
+
function normalizeCliOptions(cliOptions, positionals) {
|
|
690
|
+
const [data, errors] = validateCliOptions(cliOptions);
|
|
691
|
+
if (errors?.length) {
|
|
692
|
+
errors.forEach((error) => {
|
|
693
|
+
logger.error(`${error}. You can use \`rolldown -h\` to see the help.`);
|
|
694
|
+
});
|
|
695
|
+
process.exit(1);
|
|
696
|
+
}
|
|
697
|
+
const options = data ?? {};
|
|
698
|
+
const result = {
|
|
699
|
+
input: {},
|
|
700
|
+
output: {},
|
|
701
|
+
help: options.help ?? false,
|
|
702
|
+
version: options.version ?? false,
|
|
703
|
+
watch: options.watch ?? false
|
|
704
|
+
};
|
|
705
|
+
if (typeof options.config === "string") result.config = options.config;
|
|
706
|
+
else if (options.config === true) result.config = "";
|
|
707
|
+
if (options.environment !== void 0) result.environment = options.environment;
|
|
708
|
+
const keysOfInput = new Set(getInputCliKeys());
|
|
709
|
+
const keysOfOutput = new Set(getOutputCliKeys());
|
|
710
|
+
for (let [key, value] of Object.entries(options)) {
|
|
711
|
+
const [primary] = key.split(".");
|
|
712
|
+
if (keysOfInput.has(primary)) setNestedProperty(result.input, key, value);
|
|
713
|
+
else if (keysOfOutput.has(primary)) setNestedProperty(result.output, key, value);
|
|
714
|
+
else if (!reservedKeys.has(key)) {
|
|
715
|
+
logger.error(`Unknown option: ${key}`);
|
|
716
|
+
process.exit(1);
|
|
717
|
+
}
|
|
718
|
+
}
|
|
719
|
+
if (!result.config && positionals.length > 0) if (Array.isArray(result.input.input)) result.input.input.push(...positionals);
|
|
720
|
+
else result.input.input = positionals;
|
|
721
|
+
return result;
|
|
722
|
+
}
|
|
723
|
+
//#endregion
|
|
724
|
+
//#region src/cli/arguments/index.ts
|
|
725
|
+
const schemaInfo = getCliSchemaInfo();
|
|
726
|
+
const options = Object.fromEntries(Object.entries(schemaInfo).filter(([_key, info]) => info.type !== "never").map(([key, info]) => {
|
|
727
|
+
const config = alias[key];
|
|
728
|
+
let description = info?.description ?? config?.description ?? "";
|
|
729
|
+
if (config?.reverse) {
|
|
730
|
+
if (description.startsWith("enable")) description = description.replace("enable", "disable");
|
|
731
|
+
else if (!description.startsWith("Avoid")) description = `disable ${description}`;
|
|
732
|
+
}
|
|
733
|
+
const result = {
|
|
734
|
+
type: info.type === "boolean" ? "boolean" : "string",
|
|
735
|
+
description
|
|
736
|
+
};
|
|
737
|
+
if (config?.abbreviation) result.short = config.abbreviation;
|
|
738
|
+
if (config?.hint) result.hint = config.hint;
|
|
739
|
+
const kebabKey = camelCaseToKebabCase(key);
|
|
740
|
+
return [config?.reverse ? `no-${kebabKey}` : kebabKey, result];
|
|
741
|
+
}));
|
|
742
|
+
const knownKeys = new Set(Object.keys(schemaInfo));
|
|
743
|
+
for (const key of Object.keys(schemaInfo)) {
|
|
744
|
+
const dotIdx = key.indexOf(".");
|
|
745
|
+
if (dotIdx > 0) knownKeys.add(key.substring(0, dotIdx));
|
|
746
|
+
}
|
|
747
|
+
const shortAliases = /* @__PURE__ */ new Set();
|
|
748
|
+
for (const config of Object.values(alias)) if (config?.abbreviation) shortAliases.add(config.abbreviation);
|
|
749
|
+
function parseCliArguments() {
|
|
750
|
+
const cli = cac("rolldown");
|
|
751
|
+
for (const [key, info] of Object.entries(schemaInfo)) {
|
|
752
|
+
if (info.type === "never") continue;
|
|
753
|
+
const config = alias[key];
|
|
754
|
+
let rawName = "";
|
|
755
|
+
if (config?.abbreviation) rawName += `-${config.abbreviation}, `;
|
|
756
|
+
if (config?.reverse) rawName += `--no-${key}`;
|
|
757
|
+
else rawName += `--${key}`;
|
|
758
|
+
if (info.type !== "boolean" && !config?.reverse) if (config?.requireValue) rawName += ` <${config?.hint ?? key}>`;
|
|
759
|
+
else rawName += ` [${config?.hint ?? key}]`;
|
|
760
|
+
cli.option(rawName, info.description ?? config?.description ?? "");
|
|
761
|
+
}
|
|
762
|
+
let parsedInput = [];
|
|
763
|
+
let parsedOptions = {};
|
|
764
|
+
const cmd = cli.command("[...input]", "");
|
|
765
|
+
cmd.allowUnknownOptions();
|
|
766
|
+
cmd.ignoreOptionDefaultValue();
|
|
767
|
+
cmd.action((input, opts) => {
|
|
768
|
+
parsedInput = input;
|
|
769
|
+
parsedOptions = opts;
|
|
770
|
+
});
|
|
771
|
+
try {
|
|
772
|
+
cli.parse(process.argv, { run: true });
|
|
773
|
+
} catch (err) {
|
|
774
|
+
if (err?.name === "CACError") {
|
|
775
|
+
const match = err.message.match(/option `(.+?)` value is missing/);
|
|
776
|
+
if (match) {
|
|
777
|
+
const optName = match[1].replace(/ [<[].*/, "").replace(/^-\w, /, "");
|
|
778
|
+
logger.error(`Option \`${optName}\` requires a value but none was provided.`);
|
|
779
|
+
} else logger.error(err.message);
|
|
780
|
+
process.exit(1);
|
|
781
|
+
}
|
|
782
|
+
throw err;
|
|
783
|
+
}
|
|
784
|
+
delete parsedOptions["--"];
|
|
785
|
+
for (const short of shortAliases) delete parsedOptions[short];
|
|
786
|
+
for (const key of Object.keys(parsedOptions)) if (key === "__proto__" || key === "constructor" || key === "prototype" || key.startsWith("__proto__.") || key.startsWith("constructor.") || key.startsWith("prototype.")) delete parsedOptions[key];
|
|
787
|
+
const unknownKeys = Object.keys(parsedOptions).filter((k) => !knownKeys.has(k));
|
|
788
|
+
if (unknownKeys.length > 0) {
|
|
789
|
+
unknownKeys.sort();
|
|
790
|
+
const single = unknownKeys.length === 1;
|
|
791
|
+
logger.warn(`Option \`${unknownKeys.join(",")}\` ${single ? "is" : "are"} unrecognized. We will ignore ${single ? "this" : "those"} option${single ? "" : "s"}.`);
|
|
792
|
+
}
|
|
793
|
+
const rawArgs = { ...parsedOptions };
|
|
794
|
+
for (const key of unknownKeys) delete parsedOptions[key];
|
|
795
|
+
for (const [key, value] of Object.entries(parsedOptions)) {
|
|
796
|
+
const type = schemaInfo[key]?.type;
|
|
797
|
+
if (Array.isArray(value)) {
|
|
798
|
+
if (type !== "array" && type !== "object") parsedOptions[key] = value[value.length - 1];
|
|
799
|
+
} else if (type === "array" && typeof value === "string") parsedOptions[key] = [value];
|
|
800
|
+
}
|
|
801
|
+
for (const [schemaKey, info] of Object.entries(schemaInfo)) {
|
|
802
|
+
if (info.type !== "object") continue;
|
|
803
|
+
const parts = schemaKey.split(".");
|
|
804
|
+
let parent = parsedOptions;
|
|
805
|
+
for (let i = 0; i < parts.length - 1; i++) parent = parent?.[parts[i]];
|
|
806
|
+
const leafKey = parts[parts.length - 1];
|
|
807
|
+
const value = parent?.[leafKey];
|
|
808
|
+
if (value === void 0) continue;
|
|
809
|
+
const values = Array.isArray(value) ? value : [value];
|
|
810
|
+
if (typeof values[0] !== "string") continue;
|
|
811
|
+
let usedDeprecatedSyntax = false;
|
|
812
|
+
const result = {};
|
|
813
|
+
for (const v of values) for (const pair of String(v).split(",")) {
|
|
814
|
+
const colonIdx = pair.indexOf(":");
|
|
815
|
+
const eqIdx = pair.indexOf("=");
|
|
816
|
+
let k;
|
|
817
|
+
let val;
|
|
818
|
+
if (colonIdx > 0 && (eqIdx === -1 || colonIdx < eqIdx)) {
|
|
819
|
+
k = pair.slice(0, colonIdx);
|
|
820
|
+
val = pair.slice(colonIdx + 1);
|
|
821
|
+
} else if (eqIdx > 0) {
|
|
822
|
+
k = pair.slice(0, eqIdx);
|
|
823
|
+
val = pair.slice(eqIdx + 1);
|
|
824
|
+
usedDeprecatedSyntax = true;
|
|
825
|
+
} else continue;
|
|
826
|
+
result[k] = val;
|
|
827
|
+
}
|
|
828
|
+
if (usedDeprecatedSyntax) {
|
|
829
|
+
const optionName = camelCaseToKebabCase(schemaKey);
|
|
830
|
+
logger.warn(`Using \`key=value\` syntax for \`--${optionName}\` is deprecated. Use \`key:value\` instead.`);
|
|
831
|
+
}
|
|
832
|
+
parent[leafKey] = result;
|
|
833
|
+
}
|
|
834
|
+
return {
|
|
835
|
+
...normalizeCliOptions(parsedOptions, parsedInput),
|
|
836
|
+
rawArgs
|
|
837
|
+
};
|
|
838
|
+
}
|
|
839
|
+
//#endregion
|
|
840
|
+
//#region src/utils/clear-screen.ts
|
|
841
|
+
const CLEAR_SCREEN = "\x1Bc";
|
|
842
|
+
function getClearScreenFunction(options) {
|
|
843
|
+
const isTTY = process.stdout.isTTY;
|
|
844
|
+
const isAnyOptionNotAllowingClearScreen = arraify(options).some(({ watch }) => watch === false || watch?.clearScreen === false);
|
|
845
|
+
if (isTTY && !isAnyOptionNotAllowingClearScreen) return () => {
|
|
846
|
+
process.stdout.write(CLEAR_SCREEN);
|
|
847
|
+
};
|
|
848
|
+
}
|
|
849
|
+
//#endregion
|
|
850
|
+
//#region \0@oxc-project+runtime@0.121.0/helpers/usingCtx.js
|
|
851
|
+
function _usingCtx() {
|
|
852
|
+
var r = "function" == typeof SuppressedError ? SuppressedError : function(r, e) {
|
|
853
|
+
var n = Error();
|
|
854
|
+
return n.name = "SuppressedError", n.error = r, n.suppressed = e, n;
|
|
855
|
+
}, e = {}, n = [];
|
|
856
|
+
function using(r, e) {
|
|
857
|
+
if (null != e) {
|
|
858
|
+
if (Object(e) !== e) throw new TypeError("using declarations can only be used with objects, functions, null, or undefined.");
|
|
859
|
+
if (r) var o = e[Symbol.asyncDispose || Symbol["for"]("Symbol.asyncDispose")];
|
|
860
|
+
if (void 0 === o && (o = e[Symbol.dispose || Symbol["for"]("Symbol.dispose")], r)) var t = o;
|
|
861
|
+
if ("function" != typeof o) throw new TypeError("Object is not disposable.");
|
|
862
|
+
t && (o = function o() {
|
|
863
|
+
try {
|
|
864
|
+
t.call(e);
|
|
865
|
+
} catch (r) {
|
|
866
|
+
return Promise.reject(r);
|
|
867
|
+
}
|
|
868
|
+
}), n.push({
|
|
869
|
+
v: e,
|
|
870
|
+
d: o,
|
|
871
|
+
a: r
|
|
872
|
+
});
|
|
873
|
+
} else r && n.push({
|
|
874
|
+
d: e,
|
|
875
|
+
a: r
|
|
876
|
+
});
|
|
877
|
+
return e;
|
|
878
|
+
}
|
|
879
|
+
return {
|
|
880
|
+
e,
|
|
881
|
+
u: using.bind(null, !1),
|
|
882
|
+
a: using.bind(null, !0),
|
|
883
|
+
d: function d() {
|
|
884
|
+
var o, t = this.e, s = 0;
|
|
885
|
+
function next() {
|
|
886
|
+
for (; o = n.pop();) try {
|
|
887
|
+
if (!o.a && 1 === s) return s = 0, n.push(o), Promise.resolve().then(next);
|
|
888
|
+
if (o.d) {
|
|
889
|
+
var r = o.d.call(o.v);
|
|
890
|
+
if (o.a) return s |= 2, Promise.resolve(r).then(next, err);
|
|
891
|
+
} else s |= 1;
|
|
892
|
+
} catch (r) {
|
|
893
|
+
return err(r);
|
|
894
|
+
}
|
|
895
|
+
if (1 === s) return t !== e ? Promise.reject(t) : Promise.resolve();
|
|
896
|
+
if (t !== e) throw t;
|
|
897
|
+
}
|
|
898
|
+
function err(n) {
|
|
899
|
+
return t = t !== e ? new r(n, t) : n, next();
|
|
900
|
+
}
|
|
901
|
+
return next();
|
|
902
|
+
}
|
|
903
|
+
};
|
|
904
|
+
}
|
|
905
|
+
//#endregion
|
|
906
|
+
//#region src/cli/commands/bundle.ts
|
|
907
|
+
async function bundleWithConfig(configPath, cliOptions, rawArgs = {}) {
|
|
908
|
+
if (cliOptions.watch) {
|
|
909
|
+
process.env.ROLLUP_WATCH = "true";
|
|
910
|
+
process.env.ROLLDOWN_WATCH = "true";
|
|
911
|
+
}
|
|
912
|
+
const config = await loadConfig(configPath);
|
|
913
|
+
const resolvedConfig = typeof config === "function" ? await config(rawArgs) : config;
|
|
914
|
+
if (typeof resolvedConfig !== "object" || resolvedConfig === null) {
|
|
915
|
+
logger.error(`Invalid configuration from ${configPath}: expected object or array, got ${resolvedConfig}`);
|
|
916
|
+
process.exit(1);
|
|
917
|
+
}
|
|
918
|
+
if (cliOptions.watch) await watchInner(resolvedConfig, cliOptions);
|
|
919
|
+
else await bundleInner(resolvedConfig, cliOptions);
|
|
920
|
+
}
|
|
921
|
+
async function bundleWithCliOptions(cliOptions) {
|
|
922
|
+
try {
|
|
923
|
+
var _usingCtx$1 = _usingCtx();
|
|
924
|
+
if (cliOptions.output.dir || cliOptions.output.file) {
|
|
925
|
+
await (cliOptions.watch ? watchInner : bundleInner)({}, cliOptions);
|
|
926
|
+
return;
|
|
927
|
+
}
|
|
928
|
+
if (cliOptions.watch) {
|
|
929
|
+
logger.error("You must specify `output.dir` to use watch mode");
|
|
930
|
+
process.exit(1);
|
|
931
|
+
}
|
|
932
|
+
const { output: outputs } = await _usingCtx$1.a(await rolldown(cliOptions.input)).generate(cliOptions.output);
|
|
933
|
+
if (outputs.length === 0) {
|
|
934
|
+
logger.error("No output generated");
|
|
935
|
+
process.exit(1);
|
|
936
|
+
}
|
|
937
|
+
for (const file of outputs) {
|
|
938
|
+
if (outputs.length > 1) logger.log(`\n${styleText(["cyan", "bold"], `|→ ${file.fileName}:`)}\n`);
|
|
939
|
+
console.log(file.type === "asset" ? file.source : file.code);
|
|
940
|
+
}
|
|
941
|
+
} catch (_) {
|
|
942
|
+
_usingCtx$1.e = _;
|
|
943
|
+
} finally {
|
|
944
|
+
await _usingCtx$1.d();
|
|
945
|
+
}
|
|
946
|
+
}
|
|
947
|
+
async function watchInner(config, cliOptions) {
|
|
948
|
+
let normalizedConfig = arraify(config).map((option) => {
|
|
949
|
+
return {
|
|
950
|
+
...option,
|
|
951
|
+
...cliOptions.input,
|
|
952
|
+
output: arraify(option.output || {}).map((output) => {
|
|
953
|
+
return {
|
|
954
|
+
...output,
|
|
955
|
+
...cliOptions.output
|
|
956
|
+
};
|
|
957
|
+
})
|
|
958
|
+
};
|
|
959
|
+
});
|
|
960
|
+
const watcher = watch(normalizedConfig);
|
|
961
|
+
onExit((code) => {
|
|
962
|
+
Promise.resolve(watcher.close()).finally(() => {
|
|
963
|
+
process.exit(typeof code === "number" ? code : 0);
|
|
964
|
+
});
|
|
965
|
+
return true;
|
|
966
|
+
});
|
|
967
|
+
const changedFile = [];
|
|
968
|
+
watcher.on("change", (id, event) => {
|
|
969
|
+
if (event.event === "update") changedFile.push(id);
|
|
970
|
+
});
|
|
971
|
+
const clearScreen = getClearScreenFunction(normalizedConfig);
|
|
972
|
+
watcher.on("event", async (event) => {
|
|
973
|
+
switch (event.code) {
|
|
974
|
+
case "START":
|
|
975
|
+
clearScreen?.();
|
|
976
|
+
break;
|
|
977
|
+
case "BUNDLE_START":
|
|
978
|
+
if (changedFile.length > 0) logger.log(`Found ${styleText("bold", changedFile.map(relativeId).join(", "))} changed, rebuilding...`);
|
|
979
|
+
changedFile.length = 0;
|
|
980
|
+
break;
|
|
981
|
+
case "BUNDLE_END":
|
|
982
|
+
await event.result.close();
|
|
983
|
+
logger.success(`Rebuilt ${styleText("bold", relativeId(event.output[0]))} in ${styleText("green", ms(event.duration))}.`);
|
|
984
|
+
break;
|
|
985
|
+
case "ERROR":
|
|
986
|
+
await event.result.close();
|
|
987
|
+
logger.error(event.error);
|
|
988
|
+
break;
|
|
989
|
+
default: break;
|
|
990
|
+
}
|
|
991
|
+
});
|
|
992
|
+
logger.log(`Waiting for changes...`);
|
|
993
|
+
}
|
|
994
|
+
async function bundleInner(config, cliOptions) {
|
|
995
|
+
const startTime = performance.now();
|
|
996
|
+
const result = [];
|
|
997
|
+
const configList = arraify(config);
|
|
998
|
+
for (const config of configList) {
|
|
999
|
+
const outputList = arraify(config.output || {});
|
|
1000
|
+
const build = await rolldown({
|
|
1001
|
+
...config,
|
|
1002
|
+
...cliOptions.input
|
|
1003
|
+
});
|
|
1004
|
+
try {
|
|
1005
|
+
for (const output of outputList) result.push(await build.write({
|
|
1006
|
+
...output,
|
|
1007
|
+
...cliOptions.output
|
|
1008
|
+
}));
|
|
1009
|
+
} finally {
|
|
1010
|
+
await build.close();
|
|
1011
|
+
}
|
|
1012
|
+
}
|
|
1013
|
+
result.forEach(printBundleOutputPretty);
|
|
1014
|
+
logger.log(``);
|
|
1015
|
+
const duration = performance.now() - startTime;
|
|
1016
|
+
logger.success(`rolldown v${version} Finished in ${styleText("green", ms(duration))}`);
|
|
1017
|
+
}
|
|
1018
|
+
function printBundleOutputPretty(output) {
|
|
1019
|
+
const outputEntries = collectOutputEntries(output.output);
|
|
1020
|
+
printOutputEntries(outputEntries, collectOutputLayoutAdjustmentSizes(outputEntries), "<DIR>");
|
|
1021
|
+
}
|
|
1022
|
+
function collectOutputEntries(output) {
|
|
1023
|
+
return output.map((chunk) => ({
|
|
1024
|
+
type: chunk.type,
|
|
1025
|
+
fileName: chunk.fileName,
|
|
1026
|
+
size: chunk.type === "chunk" ? Buffer.byteLength(chunk.code) : Buffer.byteLength(chunk.source)
|
|
1027
|
+
}));
|
|
1028
|
+
}
|
|
1029
|
+
function collectOutputLayoutAdjustmentSizes(entries) {
|
|
1030
|
+
let longest = 0;
|
|
1031
|
+
let biggestSize = 0;
|
|
1032
|
+
for (const entry of entries) {
|
|
1033
|
+
if (entry.fileName.length > longest) longest = entry.fileName.length;
|
|
1034
|
+
if (entry.size > biggestSize) biggestSize = entry.size;
|
|
1035
|
+
}
|
|
1036
|
+
const sizePad = displaySize(biggestSize).length;
|
|
1037
|
+
return {
|
|
1038
|
+
longest,
|
|
1039
|
+
biggestSize,
|
|
1040
|
+
sizePad
|
|
1041
|
+
};
|
|
1042
|
+
}
|
|
1043
|
+
const numberFormatter = new Intl.NumberFormat("en", {
|
|
1044
|
+
maximumFractionDigits: 2,
|
|
1045
|
+
minimumFractionDigits: 2
|
|
1046
|
+
});
|
|
1047
|
+
function displaySize(bytes) {
|
|
1048
|
+
return `${numberFormatter.format(bytes / 1e3)} kB`;
|
|
1049
|
+
}
|
|
1050
|
+
const CHUNK_GROUPS = [{
|
|
1051
|
+
type: "asset",
|
|
1052
|
+
color: "green"
|
|
1053
|
+
}, {
|
|
1054
|
+
type: "chunk",
|
|
1055
|
+
color: "cyan"
|
|
1056
|
+
}];
|
|
1057
|
+
function printOutputEntries(entries, sizeAdjustment, distPath) {
|
|
1058
|
+
for (const group of CHUNK_GROUPS) {
|
|
1059
|
+
const filtered = entries.filter((e) => e.type === group.type);
|
|
1060
|
+
if (!filtered.length) continue;
|
|
1061
|
+
for (const entry of filtered.sort((a, z) => a.size - z.size)) {
|
|
1062
|
+
let log = styleText("dim", withTrailingSlash(distPath));
|
|
1063
|
+
log += styleText(group.color, entry.fileName.padEnd(sizeAdjustment.longest + 2));
|
|
1064
|
+
log += styleText("dim", entry.type);
|
|
1065
|
+
log += styleText("dim", ` │ size: ${displaySize(entry.size).padStart(sizeAdjustment.sizePad)}`);
|
|
1066
|
+
logger.log(log);
|
|
1067
|
+
}
|
|
1068
|
+
}
|
|
1069
|
+
}
|
|
1070
|
+
function withTrailingSlash(path) {
|
|
1071
|
+
if (path[path.length - 1] !== "/") return `${path}/`;
|
|
1072
|
+
return path;
|
|
1073
|
+
}
|
|
1074
|
+
function ms(duration) {
|
|
1075
|
+
return duration < 1e3 ? `${duration.toFixed(2)} ms` : `${(duration / 1e3).toFixed(2)} s`;
|
|
1076
|
+
}
|
|
1077
|
+
function relativeId(id) {
|
|
1078
|
+
if (!path.isAbsolute(id)) return id;
|
|
1079
|
+
return path.relative(path.resolve(), id);
|
|
1080
|
+
}
|
|
1081
|
+
//#endregion
|
|
1082
|
+
//#region src/cli/commands/help.ts
|
|
1083
|
+
const examples = [
|
|
1084
|
+
{
|
|
1085
|
+
title: "Bundle with a config file `rolldown.config.mjs`",
|
|
1086
|
+
command: "rolldown -c rolldown.config.mjs"
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
title: "Bundle the `src/main.ts` to `dist` with `cjs` format",
|
|
1090
|
+
command: "rolldown src/main.ts -d dist -f cjs"
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
title: "Bundle the `src/main.ts` and handle the `.png` assets to Data URL",
|
|
1094
|
+
command: "rolldown src/main.ts -d dist --moduleTypes .png=dataurl"
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
title: "Bundle the `src/main.tsx` and minify the output with sourcemap",
|
|
1098
|
+
command: "rolldown src/main.tsx -d dist -m -s"
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
title: "Create self-executing IIFE using external jQuery as `$` and `_`",
|
|
1102
|
+
command: "rolldown src/main.ts -d dist -n bundle -f iife -e jQuery,window._ -g jQuery=$"
|
|
1103
|
+
}
|
|
1104
|
+
];
|
|
1105
|
+
const notes = ["CLI options will override the configuration file.", "For more information, please visit https://rolldown.rs/."];
|
|
1106
|
+
/**
|
|
1107
|
+
* Generates the CLI help text as a string.
|
|
1108
|
+
*/
|
|
1109
|
+
function generateHelpText() {
|
|
1110
|
+
const lines = [];
|
|
1111
|
+
lines.push(`${styleText("gray", `${description} (rolldown v${version})`)}`);
|
|
1112
|
+
lines.push("");
|
|
1113
|
+
lines.push(`${styleText(["bold", "underline"], "USAGE")} ${styleText("cyan", "rolldown -c <config>")} or ${styleText("cyan", "rolldown <input> <options>")}`);
|
|
1114
|
+
lines.push("");
|
|
1115
|
+
lines.push(`${styleText(["bold", "underline"], "OPTIONS")}`);
|
|
1116
|
+
lines.push("");
|
|
1117
|
+
lines.push(Object.entries(options).sort(([a], [b]) => {
|
|
1118
|
+
if (options[a].short && !options[b].short) return -1;
|
|
1119
|
+
if (!options[a].short && options[b].short) return 1;
|
|
1120
|
+
if (options[a].short && options[b].short) return options[a].short.localeCompare(options[b].short);
|
|
1121
|
+
return a.localeCompare(b);
|
|
1122
|
+
}).map(([option, { type, short, hint, description }]) => {
|
|
1123
|
+
let optionStr = ` --${option} `;
|
|
1124
|
+
option = camelCaseToKebabCase(option);
|
|
1125
|
+
if (short) optionStr += `-${short}, `;
|
|
1126
|
+
if (type === "string") optionStr += `<${hint ?? option}>`;
|
|
1127
|
+
if (description && description.length > 0) description = description[0].toUpperCase() + description.slice(1);
|
|
1128
|
+
return styleText("cyan", optionStr.padEnd(30)) + description + (description && description?.endsWith(".") ? "" : ".");
|
|
1129
|
+
}).join("\n"));
|
|
1130
|
+
lines.push("");
|
|
1131
|
+
lines.push(`${styleText(["bold", "underline"], "EXAMPLES")}`);
|
|
1132
|
+
lines.push("");
|
|
1133
|
+
examples.forEach(({ title, command }, ord) => {
|
|
1134
|
+
lines.push(` ${ord + 1}. ${title}:`);
|
|
1135
|
+
lines.push(` ${styleText("cyan", command)}`);
|
|
1136
|
+
lines.push("");
|
|
1137
|
+
});
|
|
1138
|
+
lines.push(`${styleText(["bold", "underline"], "NOTES")}`);
|
|
1139
|
+
lines.push("");
|
|
1140
|
+
notes.forEach((note) => {
|
|
1141
|
+
lines.push(` * ${styleText("gray", note)}`);
|
|
1142
|
+
});
|
|
1143
|
+
return lines.join("\n");
|
|
1144
|
+
}
|
|
1145
|
+
function showHelp() {
|
|
1146
|
+
logger.log(generateHelpText());
|
|
1147
|
+
}
|
|
1148
|
+
//#endregion
|
|
1149
|
+
//#region src/cli/version-check.ts
|
|
1150
|
+
function checkNodeVersion(nodeVersion) {
|
|
1151
|
+
const currentVersion = nodeVersion.split(".");
|
|
1152
|
+
const major = parseInt(currentVersion[0], 10);
|
|
1153
|
+
const minor = parseInt(currentVersion[1], 10);
|
|
1154
|
+
return major === 20 && minor >= 19 || major === 22 && minor >= 12 || major > 22;
|
|
1155
|
+
}
|
|
1156
|
+
//#endregion
|
|
1157
|
+
//#region src/cli/index.ts
|
|
1158
|
+
if (!checkNodeVersion(process$1.versions.node)) logger.warn(`You are using Node.js ${process$1.versions.node}. Rolldown requires Node.js version 20.19+ or 22.12+. Please upgrade your Node.js version.`);
|
|
1159
|
+
async function main() {
|
|
1160
|
+
const { rawArgs, ...cliOptions } = parseCliArguments();
|
|
1161
|
+
if (cliOptions.environment) {
|
|
1162
|
+
const environment = Array.isArray(cliOptions.environment) ? cliOptions.environment : [cliOptions.environment];
|
|
1163
|
+
for (const argument of environment) for (const pair of argument.split(",")) {
|
|
1164
|
+
const [key, ...value] = pair.split(":");
|
|
1165
|
+
process$1.env[key] = value.length === 0 ? String(true) : value.join(":");
|
|
1166
|
+
}
|
|
1167
|
+
}
|
|
1168
|
+
if (cliOptions.help) {
|
|
1169
|
+
showHelp();
|
|
1170
|
+
return;
|
|
1171
|
+
}
|
|
1172
|
+
if (cliOptions.version) {
|
|
1173
|
+
logger.log(`rolldown v${version}`);
|
|
1174
|
+
return;
|
|
1175
|
+
}
|
|
1176
|
+
if (cliOptions.config || cliOptions.config === "") {
|
|
1177
|
+
await bundleWithConfig(cliOptions.config, cliOptions, rawArgs);
|
|
1178
|
+
return;
|
|
1179
|
+
}
|
|
1180
|
+
if ("input" in cliOptions.input) {
|
|
1181
|
+
await bundleWithCliOptions(cliOptions);
|
|
1182
|
+
return;
|
|
1183
|
+
}
|
|
1184
|
+
showHelp();
|
|
1185
|
+
}
|
|
1186
|
+
main().catch((err) => {
|
|
1187
|
+
logger.error(err);
|
|
1188
|
+
process$1.exit(1);
|
|
1189
|
+
});
|
|
1190
|
+
//#endregion
|
|
1191
|
+
export {};
|