AK-21/Graphite-Industrial-Intelligence
0
1import { n as onExit, t as watch } from "./shared/watch-FrHSqg24.mjs";2import { C as version, S as description } from "./shared/bindingify-input-options-CzVhGygm.mjs";3import { t as arraify } from "./shared/misc-CoQm4NHO.mjs";4import { a as getInputCliKeys, i as getCliSchemaInfo, l as styleText, o as getOutputCliKeys, r as logger, s as validateCliOptions } from "./shared/rolldown-build-DR0wzp0V.mjs";5import { t as rolldown } from "./shared/rolldown-Brph2NSU.mjs";6import { t as loadConfig } from "./shared/load-config-BvPPEM7l.mjs";7import path from "node:path";8import g$1 from "node:process";9import { performance } from "node:perf_hooks";10//#region ../../node_modules/.pnpm/cac@7.0.0/node_modules/cac/dist/index.js11function toArr(any) {12 return any == null ? [] : Array.isArray(any) ? any : [any];13}14function 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}18function 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}83function removeBrackets(v) {84 return v.replace(/[<[].+/, "").trim();85}86function 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 variadic101 };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}109function 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}124function findLongest(arr) {125 return arr.sort((a, b) => {126 return a.length > b.length ? -1 : 1;127 })[0];128}129function padRight(str, length) {130 return str.length >= length ? str : `${str}${" ".repeat(length - str.length)}`;131}132function camelcase(input) {133 return input.replaceAll(/([a-z])-([a-z])/g, (_, p1, p2) => {134 return p1 + p2.toUpperCase();135 });136}137function 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}152function 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}161function getFileName(input) {162 const m = /([^\\/]+)$/.exec(input);163 return m ? m[1] : "";164}165function camelcaseOptionName(name) {166 return name.split(".").map((v, i) => {167 return i === 0 ? camelcase(v) : v;168 }).join(".");169}170var 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};177var 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};209let runtimeProcessArgs;210let runtimeInfo;211if (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`;219else runtimeInfo = `${navigator.platform} ${navigator.userAgent}`;220var 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 command269 * @param rawName Raw option name(s)270 * @param description Option description271 * @param config Option config272 */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 command288 * @param name Command name289 */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 command301 * @param name Option name302 */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 options363 *364 * Exit and output error when true365 */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 exist374 */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 expected388 */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};394var GlobalCommand = class extends Command {395 constructor(cli) {396 super("@@global@@", "", {}, cli);397 }398};399var 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 arguments408 */409 rawArgs;410 /**411 * Parsed CLI arguments412 */413 args;414 /**415 * Parsed CLI options, camelCased416 */417 options;418 showHelpOnExit;419 showVersionOnExit;420 /**421 * @param name The program name to display in help and version message422 */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-command444 */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 message490 * When a sub-command is matched, output the help message for the command491 * 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 argv518 */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.options565 };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 options605 };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 message625*/626const cac = (name = "") => new CAC(name);627//#endregion628//#region src/cli/arguments/alias.ts629const 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: true640 },641 file: {642 abbreviation: "o",643 requireValue: true644 },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//#endregion661//#region src/cli/arguments/utils.ts662function 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: true675 });676}677function camelCaseToKebabCase(str) {678 return str.replace(/[A-Z]/g, (match) => `-${match.toLowerCase()}`);679}680//#endregion681//#region src/cli/arguments/normalize.ts682const reservedKeys = /* @__PURE__ */ new Set([683 "help",684 "version",685 "config",686 "watch",687 "environment"688]);689function 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 ?? false704 };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//#endregion724//#region src/cli/arguments/index.ts725const schemaInfo = getCliSchemaInfo();726const 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 description736 };737 if (config?.abbreviation) result.short = config.abbreviation;738 if (config?.hint) result.hint = config.hint;739 return [config?.reverse ? `no-${key}` : key, result];740}));741const knownKeys = new Set(Object.keys(schemaInfo));742for (const key of Object.keys(schemaInfo)) {743 const dotIdx = key.indexOf(".");744 if (dotIdx > 0) knownKeys.add(key.substring(0, dotIdx));745}746const shortAliases = /* @__PURE__ */ new Set();747for (const config of Object.values(alias)) if (config?.abbreviation) shortAliases.add(config.abbreviation);748function kebabToCamelCase(input) {749 return input.replaceAll(/([a-z])-([a-z])/g, (_, p1, p2) => {750 return p1 + p2.toUpperCase();751 });752}753function camelizeNestedKeys(value) {754 const result = {};755 for (const [key, nestedValue] of Object.entries(value)) if (Array.isArray(nestedValue)) result[kebabToCamelCase(key)] = nestedValue;756 else if (nestedValue && typeof nestedValue === "object") result[kebabToCamelCase(key)] = camelizeNestedKeys(nestedValue);757 else result[kebabToCamelCase(key)] = nestedValue;758 return result;759}760function parseCliArguments() {761 const cli = cac("rolldown");762 for (const [key, info] of Object.entries(schemaInfo)) {763 if (info.type === "never") continue;764 const config = alias[key];765 let rawName = "";766 if (config?.abbreviation) rawName += `-${config.abbreviation}, `;767 if (config?.reverse) rawName += `--no-${key}`;768 else rawName += `--${key}`;769 if (info.type !== "boolean" && !config?.reverse) if (config?.requireValue) rawName += ` <${config?.hint ?? key}>`;770 else rawName += ` [${config?.hint ?? key}]`;771 cli.option(rawName, info.description ?? config?.description ?? "");772 }773 let parsedInput = [];774 let parsedOptions = {};775 const cmd = cli.command("[...input]", "");776 cmd.allowUnknownOptions();777 cmd.ignoreOptionDefaultValue();778 cmd.action((input, opts) => {779 parsedInput = input;780 parsedOptions = opts;781 });782 try {783 cli.parse(process.argv, { run: true });784 } catch (err) {785 if (err?.name === "CACError") {786 const match = err.message.match(/option `(.+?)` value is missing/);787 if (match) {788 const optName = match[1].replace(/ [<[].*/, "").replace(/^-\w, /, "");789 logger.error(`Option \`${optName}\` requires a value but none was provided.`);790 } else logger.error(err.message);791 process.exit(1);792 }793 throw err;794 }795 delete parsedOptions["--"];796 for (const short of shortAliases) delete parsedOptions[short];797 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];798 const unknownKeys = Object.keys(parsedOptions).filter((k) => !knownKeys.has(k));799 if (unknownKeys.length > 0) {800 unknownKeys.sort();801 const single = unknownKeys.length === 1;802 logger.warn(`Option \`${unknownKeys.join(",")}\` ${single ? "is" : "are"} unrecognized. We will ignore ${single ? "this" : "those"} option${single ? "" : "s"}.`);803 }804 parsedOptions = camelizeNestedKeys(parsedOptions);805 const rawArgs = { ...parsedOptions };806 for (const key of unknownKeys) delete parsedOptions[key];807 for (const [key, value] of Object.entries(parsedOptions)) {808 const type = schemaInfo[key]?.type;809 if (Array.isArray(value)) {810 if (type !== "array" && type !== "object") parsedOptions[key] = value[value.length - 1];811 } else if (type === "array" && typeof value === "string") parsedOptions[key] = [value];812 }813 for (const [schemaKey, info] of Object.entries(schemaInfo)) {814 if (info.type !== "object") continue;815 const parts = schemaKey.split(".");816 let parent = parsedOptions;817 for (let i = 0; i < parts.length - 1; i++) parent = parent?.[parts[i]];818 const leafKey = parts[parts.length - 1];819 const value = parent?.[leafKey];820 if (value === void 0) continue;821 const values = Array.isArray(value) ? value : [value];822 if (typeof values[0] !== "string") continue;823 let usedDeprecatedSyntax = false;824 const result = {};825 for (const v of values) for (const pair of String(v).split(",")) {826 const colonIdx = pair.indexOf(":");827 const eqIdx = pair.indexOf("=");828 let k;829 let val;830 if (colonIdx > 0 && (eqIdx === -1 || colonIdx < eqIdx)) {831 k = pair.slice(0, colonIdx);832 val = pair.slice(colonIdx + 1);833 } else if (eqIdx > 0) {834 k = pair.slice(0, eqIdx);835 val = pair.slice(eqIdx + 1);836 usedDeprecatedSyntax = true;837 } else continue;838 result[k] = val;839 }840 if (usedDeprecatedSyntax) {841 const optionName = camelCaseToKebabCase(schemaKey);842 logger.warn(`Using \`key=value\` syntax for \`--${optionName}\` is deprecated. Use \`key:value\` instead.`);843 }844 parent[leafKey] = result;845 }846 return {847 ...normalizeCliOptions(parsedOptions, parsedInput),848 rawArgs849 };850}851//#endregion852//#region src/utils/clear-screen.ts853const CLEAR_SCREEN = "\x1Bc";854function getClearScreenFunction(options) {855 const isTTY = process.stdout.isTTY;856 const isAnyOptionNotAllowingClearScreen = arraify(options).some(({ watch }) => watch === false || watch?.clearScreen === false);857 if (isTTY && !isAnyOptionNotAllowingClearScreen) return () => {858 process.stdout.write(CLEAR_SCREEN);859 };860}861//#endregion862//#region \0@oxc-project+runtime@0.137.0/helpers/esm/usingCtx.js863function _usingCtx() {864 var r = "function" == typeof SuppressedError ? SuppressedError : function(r, e) {865 var n = Error();866 return n.name = "SuppressedError", n.error = r, n.suppressed = e, n;867 }, e = {}, n = [];868 function using(r, e) {869 if (null != e) {870 if (Object(e) !== e) throw new TypeError("using declarations can only be used with objects, functions, null, or undefined.");871 if (r) var o = e[Symbol.asyncDispose || Symbol["for"]("Symbol.asyncDispose")];872 if (void 0 === o && (o = e[Symbol.dispose || Symbol["for"]("Symbol.dispose")], r)) var t = o;873 if ("function" != typeof o) throw new TypeError("Object is not disposable.");874 t && (o = function o() {875 try {876 t.call(e);877 } catch (r) {878 return Promise.reject(r);879 }880 }), n.push({881 v: e,882 d: o,883 a: r884 });885 } else r && n.push({886 d: e,887 a: r888 });889 return e;890 }891 return {892 e,893 u: using.bind(null, !1),894 a: using.bind(null, !0),895 d: function d() {896 var o, t = this.e, s = 0;897 function next() {898 for (; o = n.pop();) try {899 if (!o.a && 1 === s) return s = 0, n.push(o), Promise.resolve().then(next);900 if (o.d) {901 var r = o.d.call(o.v);902 if (o.a) return s |= 2, Promise.resolve(r).then(next, err);903 } else s |= 1;904 } catch (r) {905 return err(r);906 }907 if (1 === s) return t !== e ? Promise.reject(t) : Promise.resolve();908 if (t !== e) throw t;909 }910 function err(n) {911 return t = t !== e ? new r(n, t) : n, next();912 }913 return next();914 }915 };916}917//#endregion918//#region src/cli/commands/bundle.ts919async function bundleWithConfig(configPath, cliOptions, rawArgs = {}) {920 if (cliOptions.watch) {921 process.env.ROLLUP_WATCH = "true";922 process.env.ROLLDOWN_WATCH = "true";923 }924 const config = await loadConfig(configPath);925 const resolvedConfig = typeof config === "function" ? await config(rawArgs) : config;926 if (typeof resolvedConfig !== "object" || resolvedConfig === null) {927 logger.error(`Invalid configuration from ${configPath}: expected object or array, got ${resolvedConfig}`);928 process.exit(1);929 }930 if (cliOptions.watch) await watchInner(resolvedConfig, cliOptions);931 else await bundleInner(resolvedConfig, cliOptions);932}933async function bundleWithCliOptions(cliOptions) {934 try {935 var _usingCtx$1 = _usingCtx();936 if (cliOptions.output.dir || cliOptions.output.file) {937 await (cliOptions.watch ? watchInner : bundleInner)({}, cliOptions);938 return;939 }940 if (cliOptions.watch) {941 logger.error("You must specify `output.dir` to use watch mode");942 process.exit(1);943 }944 const { output: outputs } = await _usingCtx$1.a(await rolldown(cliOptions.input)).generate(cliOptions.output);945 if (outputs.length === 0) {946 logger.error("No output generated");947 process.exit(1);948 }949 for (const file of outputs) {950 if (outputs.length > 1) logger.log(`\n${styleText(["cyan", "bold"], `|โ ${file.fileName}:`)}\n`);951 console.log(file.type === "asset" ? file.source : file.code);952 }953 } catch (_) {954 _usingCtx$1.e = _;955 } finally {956 await _usingCtx$1.d();957 }958}959async function watchInner(config, cliOptions) {960 let normalizedConfig = arraify(config).map((option) => {961 return {962 ...option,963 ...cliOptions.input,964 output: arraify(option.output || {}).map((output) => {965 return {966 ...output,967 ...cliOptions.output968 };969 })970 };971 });972 const watcher = watch(normalizedConfig);973 onExit((code) => {974 Promise.resolve(watcher.close()).finally(() => {975 process.exit(typeof code === "number" ? code : 0);976 });977 return true;978 });979 const changedFile = [];980 watcher.on("change", (id, event) => {981 if (event.event === "update") changedFile.push(id);982 });983 const clearScreen = getClearScreenFunction(normalizedConfig);984 watcher.on("event", async (event) => {985 switch (event.code) {986 case "START":987 clearScreen?.();988 break;989 case "BUNDLE_START":990 if (changedFile.length > 0) logger.log(`Found ${styleText("bold", changedFile.map(relativeId).join(", "))} changed, rebuilding...`);991 changedFile.length = 0;992 break;993 case "BUNDLE_END":994 await event.result.close();995 logger.success(`Rebuilt ${styleText("bold", relativeId(event.output[0]))} in ${styleText("green", ms(event.duration))}.`);996 break;997 case "ERROR":998 await event.result.close();999 logger.error(event.error);1000 break;1001 default: break;1002 }1003 });1004 logger.log(`Waiting for changes...`);1005}1006async function bundleInner(config, cliOptions) {1007 const startTime = performance.now();1008 const result = [];1009 const configList = arraify(config);1010 for (const config of configList) {1011 const outputList = arraify(config.output || {});1012 const build = await rolldown({1013 ...config,1014 ...cliOptions.input1015 });1016 try {1017 for (const output of outputList) result.push(await build.write({1018 ...output,1019 ...cliOptions.output1020 }));1021 } finally {1022 await build.close();1023 }1024 }1025 result.forEach(printBundleOutputPretty);1026 logger.log(``);1027 const duration = performance.now() - startTime;1028 logger.success(`rolldown v${version} Finished in ${styleText("green", ms(duration))}`);1029}1030function printBundleOutputPretty(output) {1031 const outputEntries = collectOutputEntries(output.output);1032 printOutputEntries(outputEntries, collectOutputLayoutAdjustmentSizes(outputEntries), "<DIR>");1033}1034function collectOutputEntries(output) {1035 return output.map((chunk) => ({1036 type: chunk.type,1037 fileName: chunk.fileName,1038 size: chunk.type === "chunk" ? Buffer.byteLength(chunk.code) : Buffer.byteLength(chunk.source)1039 }));1040}1041function collectOutputLayoutAdjustmentSizes(entries) {1042 let longest = 0;1043 let biggestSize = 0;1044 for (const entry of entries) {1045 if (entry.fileName.length > longest) longest = entry.fileName.length;1046 if (entry.size > biggestSize) biggestSize = entry.size;1047 }1048 const sizePad = displaySize(biggestSize).length;1049 return {1050 longest,1051 biggestSize,1052 sizePad1053 };1054}1055const numberFormatter = new Intl.NumberFormat("en", {1056 maximumFractionDigits: 2,1057 minimumFractionDigits: 21058});1059function displaySize(bytes) {1060 return `${numberFormatter.format(bytes / 1e3)} kB`;1061}1062const CHUNK_GROUPS = [{1063 type: "asset",1064 color: "green"1065}, {1066 type: "chunk",1067 color: "cyan"1068}];1069function printOutputEntries(entries, sizeAdjustment, distPath) {1070 for (const group of CHUNK_GROUPS) {1071 const filtered = entries.filter((e) => e.type === group.type);1072 if (!filtered.length) continue;1073 for (const entry of filtered.sort((a, z) => a.size - z.size)) {1074 let log = styleText("dim", withTrailingSlash(distPath));1075 log += styleText(group.color, entry.fileName.padEnd(sizeAdjustment.longest + 2));1076 log += styleText("dim", entry.type);1077 log += styleText("dim", ` โ size: ${displaySize(entry.size).padStart(sizeAdjustment.sizePad)}`);1078 logger.log(log);1079 }1080 }1081}1082function withTrailingSlash(path) {1083 if (path[path.length - 1] !== "/") return `${path}/`;1084 return path;1085}1086function ms(duration) {1087 return duration < 1e3 ? `${duration.toFixed(2)} ms` : `${(duration / 1e3).toFixed(2)} s`;1088}1089function relativeId(id) {1090 if (!path.isAbsolute(id)) return id;1091 return path.relative(path.resolve(), id);1092}1093//#endregion1094//#region src/cli/commands/help.ts1095const examples = [1096 {1097 title: "Bundle with a config file `rolldown.config.mjs`",1098 command: "rolldown -c rolldown.config.mjs"1099 },1100 {1101 title: "Bundle the `src/main.ts` to `dist` with `cjs` format",1102 command: "rolldown src/main.ts -d dist -f cjs"1103 },1104 {1105 title: "Bundle the `src/main.ts` and handle the `.png` assets to Data URL",1106 command: "rolldown src/main.ts -d dist --moduleTypes .png=dataurl"1107 },1108 {1109 title: "Bundle the `src/main.tsx` and minify the output with sourcemap",1110 command: "rolldown src/main.tsx -d dist -m -s"1111 },1112 {1113 title: "Create self-executing IIFE using external jQuery as `$` and `_`",1114 command: "rolldown src/main.ts -d dist -n bundle -f iife -e jQuery,window._ -g jQuery=$"1115 }1116];1117const notes = ["CLI options will override the configuration file.", "For more information, please visit https://rolldown.rs/."];1118/**1119* Generates the CLI help text as a string.1120*/1121function generateHelpText() {1122 const lines = [];1123 lines.push(`${styleText("gray", `${description} (rolldown v${version})`)}`);1124 lines.push("");1125 lines.push(`${styleText(["bold", "underline"], "USAGE")} ${styleText("cyan", "rolldown -c <config>")} or ${styleText("cyan", "rolldown <input> <options>")}`);1126 lines.push("");1127 lines.push(`${styleText(["bold", "underline"], "OPTIONS")}`);1128 lines.push("");1129 lines.push(Object.entries(options).sort(([a], [b]) => {1130 if (options[a].short && !options[b].short) return -1;1131 if (!options[a].short && options[b].short) return 1;1132 if (options[a].short && options[b].short) return options[a].short.localeCompare(options[b].short);1133 return a.localeCompare(b);1134 }).map(([option, { type, short, hint, description }]) => {1135 let optionStr = ` --${option} `;1136 if (short) optionStr += `-${short}, `;1137 if (type === "string") optionStr += `<${hint ?? option}>`;1138 if (description && description.length > 0) description = description[0].toUpperCase() + description.slice(1);1139 return styleText("cyan", optionStr.padEnd(30)) + description + (description && description?.endsWith(".") ? "" : ".");1140 }).join("\n"));1141 lines.push("");1142 lines.push(`${styleText(["bold", "underline"], "EXAMPLES")}`);1143 lines.push("");1144 examples.forEach(({ title, command }, ord) => {1145 lines.push(` ${ord + 1}. ${title}:`);1146 lines.push(` ${styleText("cyan", command)}`);1147 lines.push("");1148 });1149 lines.push(`${styleText(["bold", "underline"], "NOTES")}`);1150 lines.push("");1151 notes.forEach((note) => {1152 lines.push(` * ${styleText("gray", note)}`);1153 });1154 return lines.join("\n");1155}1156function showHelp() {1157 logger.log(generateHelpText());1158}1159//#endregion1160//#region src/cli/version-check.ts1161function checkNodeVersion(nodeVersion) {1162 const currentVersion = nodeVersion.split(".");1163 const major = parseInt(currentVersion[0], 10);1164 const minor = parseInt(currentVersion[1], 10);1165 return major === 20 && minor >= 19 || major === 22 && minor >= 12 || major > 22;1166}1167//#endregion1168//#region src/cli/index.ts1169if (!checkNodeVersion(g$1.versions.node)) logger.warn(`You are using Node.js ${g$1.versions.node}. Rolldown requires Node.js version 20.19+ or 22.12+. Please upgrade your Node.js version.`);1170async function main() {1171 const { rawArgs, ...cliOptions } = parseCliArguments();1172 if (cliOptions.environment) {1173 const environment = Array.isArray(cliOptions.environment) ? cliOptions.environment : [cliOptions.environment];1174 for (const argument of environment) for (const pair of argument.split(",")) {1175 const [key, ...value] = pair.split(":");1176 g$1.env[key] = value.length === 0 ? String(true) : value.join(":");1177 }1178 }1179 if (cliOptions.help) {1180 showHelp();1181 return;1182 }1183 if (cliOptions.version) {1184 logger.log(`rolldown v${version}`);1185 return;1186 }1187 if (cliOptions.config || cliOptions.config === "") {1188 await bundleWithConfig(cliOptions.config, cliOptions, rawArgs);1189 return;1190 }1191 if ("input" in cliOptions.input) {1192 await bundleWithCliOptions(cliOptions);1193 return;1194 }1195 showHelp();1196}1197main().catch((err) => {1198 logger.error(err);1199 g$1.exit(1);1200});