@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.
Files changed (50) hide show
  1. package/LICENSE +25 -0
  2. package/README.md +11 -1
  3. package/bin/cli.mjs +2 -0
  4. package/dist/cli.d.mts +1 -0
  5. package/dist/cli.mjs +1191 -0
  6. package/dist/config.d.mts +14 -0
  7. package/dist/config.mjs +4 -0
  8. package/dist/experimental-index.d.mts +316 -0
  9. package/dist/experimental-index.mjs +350 -0
  10. package/dist/experimental-runtime-types.d.ts +98 -0
  11. package/dist/filter-index.d.mts +196 -0
  12. package/dist/filter-index.mjs +386 -0
  13. package/dist/get-log-filter.d.mts +3 -0
  14. package/dist/get-log-filter.mjs +68 -0
  15. package/dist/index.d.mts +4 -0
  16. package/dist/index.mjs +50 -0
  17. package/dist/parallel-plugin-worker.d.mts +1 -0
  18. package/dist/parallel-plugin-worker.mjs +28 -0
  19. package/dist/parallel-plugin.d.mts +13 -0
  20. package/dist/parallel-plugin.mjs +6 -0
  21. package/dist/parse-ast-index.d.mts +32 -0
  22. package/dist/parse-ast-index.mjs +60 -0
  23. package/dist/plugins-index.d.mts +33 -0
  24. package/dist/plugins-index.mjs +40 -0
  25. package/dist/shared/binding-D_jQsHun.mjs +583 -0
  26. package/dist/shared/binding-hSQGgsUz.d.mts +1877 -0
  27. package/dist/shared/bindingify-input-options-DfXGy4QO.mjs +2193 -0
  28. package/dist/shared/constructors-B-HbV10G.mjs +68 -0
  29. package/dist/shared/constructors-DMl58KN5.d.mts +37 -0
  30. package/dist/shared/define-config-BSxBeCq6.d.mts +3810 -0
  31. package/dist/shared/define-config-DJOr6Iwt.mjs +6 -0
  32. package/dist/shared/error-D5tMcn3l.mjs +85 -0
  33. package/dist/shared/get-log-filter-semyr3Lj.d.mts +35 -0
  34. package/dist/shared/load-config-CNjYgiQv.mjs +120 -0
  35. package/dist/shared/logging-C6h4g8dA.d.mts +50 -0
  36. package/dist/shared/logs-D80CXhvg.mjs +180 -0
  37. package/dist/shared/misc-DJYbNKZX.mjs +21 -0
  38. package/dist/shared/normalize-string-or-regex-B8PEhdn1.mjs +66 -0
  39. package/dist/shared/parse-iQx2ihYn.mjs +74 -0
  40. package/dist/shared/prompt-BYQIwEjg.mjs +845 -0
  41. package/dist/shared/resolve-tsconfig-CxoM-bno.mjs +113 -0
  42. package/dist/shared/rolldown-C0o3hS3w.mjs +40 -0
  43. package/dist/shared/rolldown-build-80GULIOI.mjs +3326 -0
  44. package/dist/shared/transform-DY2pi3Qm.d.mts +149 -0
  45. package/dist/shared/watch-C2am0Ahc.mjs +374 -0
  46. package/dist/utils-index.d.mts +376 -0
  47. package/dist/utils-index.mjs +2414 -0
  48. package/package.json +130 -2
  49. package/.editorconfig +0 -10
  50. package/.gitattributes +0 -4
@@ -0,0 +1,6 @@
1
+ //#region src/utils/define-config.ts
2
+ function defineConfig(config) {
3
+ return config;
4
+ }
5
+ //#endregion
6
+ export { defineConfig as t };
@@ -0,0 +1,85 @@
1
+ import { t as require_binding } from "./binding-D_jQsHun.mjs";
2
+ //#region src/types/sourcemap.ts
3
+ function bindingifySourcemap(map) {
4
+ if (map == null) return;
5
+ return { inner: typeof map === "string" ? map : {
6
+ file: map.file ?? void 0,
7
+ mappings: map.mappings,
8
+ sourceRoot: "sourceRoot" in map ? map.sourceRoot ?? void 0 : void 0,
9
+ sources: map.sources?.map((s) => s ?? void 0),
10
+ sourcesContent: map.sourcesContent?.map((s) => s ?? void 0),
11
+ names: map.names,
12
+ x_google_ignoreList: map.x_google_ignoreList,
13
+ debugId: "debugId" in map ? map.debugId : void 0
14
+ } };
15
+ }
16
+ require_binding();
17
+ function unwrapBindingResult(container) {
18
+ if (typeof container === "object" && container !== null && "isBindingErrors" in container && container.isBindingErrors) throw aggregateBindingErrorsIntoJsError(container.errors);
19
+ return container;
20
+ }
21
+ function normalizeBindingResult(container) {
22
+ if (typeof container === "object" && container !== null && "isBindingErrors" in container && container.isBindingErrors) return aggregateBindingErrorsIntoJsError(container.errors);
23
+ return container;
24
+ }
25
+ function normalizeBindingError(e) {
26
+ return e.type === "JsError" ? e.field0 : Object.assign(/* @__PURE__ */ new Error(), {
27
+ code: e.field0.kind,
28
+ kind: e.field0.kind,
29
+ message: e.field0.message,
30
+ id: e.field0.id,
31
+ exporter: e.field0.exporter,
32
+ loc: e.field0.loc,
33
+ pos: e.field0.pos,
34
+ stack: void 0
35
+ });
36
+ }
37
+ function aggregateBindingErrorsIntoJsError(rawErrors) {
38
+ const errors = rawErrors.map(normalizeBindingError);
39
+ let summary = `Build failed with ${errors.length} error${errors.length < 2 ? "" : "s"}:\n`;
40
+ for (let i = 0; i < errors.length; i++) {
41
+ summary += "\n";
42
+ if (i >= 5) {
43
+ summary += "...";
44
+ break;
45
+ }
46
+ summary += getErrorMessage(errors[i]);
47
+ }
48
+ const wrapper = new Error(summary);
49
+ Object.defineProperty(wrapper, "errors", {
50
+ configurable: true,
51
+ enumerable: true,
52
+ get: () => errors,
53
+ set: (value) => Object.defineProperty(wrapper, "errors", {
54
+ configurable: true,
55
+ enumerable: true,
56
+ value
57
+ })
58
+ });
59
+ return wrapper;
60
+ }
61
+ function getErrorMessage(e) {
62
+ if (Object.hasOwn(e, "kind")) return e.message;
63
+ let s = "";
64
+ if (e.plugin) s += `[plugin ${e.plugin}]`;
65
+ const id = e.id ?? e.loc?.file;
66
+ if (id) {
67
+ s += " " + id;
68
+ if (e.loc) s += `:${e.loc.line}:${e.loc.column}`;
69
+ }
70
+ if (s) s += "\n";
71
+ const message = `${e.name ?? "Error"}: ${e.message}`;
72
+ s += message;
73
+ if (e.frame) s = joinNewLine(s, e.frame);
74
+ if (e.stack) s = joinNewLine(s, e.stack.replace(message, ""));
75
+ if (e.cause) {
76
+ s = joinNewLine(s, "Caused by:");
77
+ s = joinNewLine(s, getErrorMessage(e.cause).split("\n").map((line) => " " + line).join("\n"));
78
+ }
79
+ return s;
80
+ }
81
+ function joinNewLine(s1, s2) {
82
+ return s1.replace(/\n+$/, "") + "\n" + s2.replace(/^\n+/, "");
83
+ }
84
+ //#endregion
85
+ export { bindingifySourcemap as a, unwrapBindingResult as i, normalizeBindingError as n, normalizeBindingResult as r, aggregateBindingErrorsIntoJsError as t };
@@ -0,0 +1,35 @@
1
+ import { a as RolldownLog } from "./logging-C6h4g8dA.mjs";
2
+
3
+ //#region src/get-log-filter.d.ts
4
+ /**
5
+ * @param filters A list of log filters to apply
6
+ * @returns A function that tests whether a log should be output
7
+ *
8
+ * @category Config
9
+ */
10
+ type GetLogFilter = (filters: string[]) => (log: RolldownLog) => boolean;
11
+ /**
12
+ * A helper function to generate log filters using the same syntax as the CLI.
13
+ *
14
+ * @example
15
+ * ```ts
16
+ * import { defineConfig } from 'rolldown';
17
+ * import { getLogFilter } from 'rolldown/getLogFilter';
18
+ *
19
+ * const logFilter = getLogFilter(['code:FOO', 'code:BAR']);
20
+ *
21
+ * export default defineConfig({
22
+ * input: 'main.js',
23
+ * onLog(level, log, handler) {
24
+ * if (logFilter(log)) {
25
+ * handler(level, log);
26
+ * }
27
+ * }
28
+ * });
29
+ * ```
30
+ *
31
+ * @category Config
32
+ */
33
+ declare const getLogFilter: GetLogFilter;
34
+ //#endregion
35
+ export { getLogFilter as n, GetLogFilter as t };
@@ -0,0 +1,120 @@
1
+ import { t as rolldown } from "./rolldown-C0o3hS3w.mjs";
2
+ import fs from "node:fs";
3
+ import path from "node:path";
4
+ import { readdir } from "node:fs/promises";
5
+ import { cwd } from "node:process";
6
+ import { pathToFileURL } from "node:url";
7
+ //#region src/utils/load-config.ts
8
+ async function bundleTsConfig(configFile, isEsm) {
9
+ const dirnameVarName = "injected_original_dirname";
10
+ const filenameVarName = "injected_original_filename";
11
+ const importMetaUrlVarName = "injected_original_import_meta_url";
12
+ const bundle = await rolldown({
13
+ input: configFile,
14
+ platform: "node",
15
+ resolve: { mainFields: ["main"] },
16
+ transform: { define: {
17
+ __dirname: dirnameVarName,
18
+ __filename: filenameVarName,
19
+ "import.meta.url": importMetaUrlVarName,
20
+ "import.meta.dirname": dirnameVarName,
21
+ "import.meta.filename": filenameVarName
22
+ } },
23
+ treeshake: false,
24
+ external: [/^[\w@][^:]/],
25
+ plugins: [{
26
+ name: "inject-file-scope-variables",
27
+ transform: {
28
+ filter: { id: /\.[cm]?[jt]s$/ },
29
+ async handler(code, id) {
30
+ return {
31
+ code: `const ${dirnameVarName} = ${JSON.stringify(path.dirname(id))};const ${filenameVarName} = ${JSON.stringify(id)};const ${importMetaUrlVarName} = ${JSON.stringify(pathToFileURL(id).href)};` + code,
32
+ map: null
33
+ };
34
+ }
35
+ }
36
+ }]
37
+ });
38
+ const outputDir = path.dirname(configFile);
39
+ const fileName = (await bundle.write({
40
+ dir: outputDir,
41
+ format: isEsm ? "esm" : "cjs",
42
+ sourcemap: "inline",
43
+ entryFileNames: `rolldown.config.[hash]${path.extname(configFile).replace("ts", "js")}`
44
+ })).output.find((chunk) => chunk.type === "chunk" && chunk.isEntry).fileName;
45
+ return path.join(outputDir, fileName);
46
+ }
47
+ const SUPPORTED_JS_CONFIG_FORMATS = [
48
+ ".js",
49
+ ".mjs",
50
+ ".cjs"
51
+ ];
52
+ const SUPPORTED_TS_CONFIG_FORMATS = [
53
+ ".ts",
54
+ ".mts",
55
+ ".cts"
56
+ ];
57
+ const SUPPORTED_CONFIG_FORMATS = [...SUPPORTED_JS_CONFIG_FORMATS, ...SUPPORTED_TS_CONFIG_FORMATS];
58
+ const DEFAULT_CONFIG_BASE = "rolldown.config";
59
+ async function findConfigFileNameInCwd() {
60
+ const filesInWorkingDirectory = new Set(await readdir(cwd()));
61
+ for (const extension of SUPPORTED_CONFIG_FORMATS) {
62
+ const fileName = `${DEFAULT_CONFIG_BASE}${extension}`;
63
+ if (filesInWorkingDirectory.has(fileName)) return fileName;
64
+ }
65
+ throw new Error("No `rolldown.config` configuration file found.");
66
+ }
67
+ async function loadTsConfig(configFile) {
68
+ const file = await bundleTsConfig(configFile, isFilePathESM(configFile));
69
+ try {
70
+ return (await import(pathToFileURL(file).href)).default;
71
+ } finally {
72
+ fs.unlink(file, () => {});
73
+ }
74
+ }
75
+ function isFilePathESM(filePath) {
76
+ if (/\.m[jt]s$/.test(filePath)) return true;
77
+ else if (/\.c[jt]s$/.test(filePath)) return false;
78
+ else {
79
+ const pkg = findNearestPackageData(path.dirname(filePath));
80
+ if (pkg) return pkg.type === "module";
81
+ return false;
82
+ }
83
+ }
84
+ function findNearestPackageData(basedir) {
85
+ while (basedir) {
86
+ const pkgPath = path.join(basedir, "package.json");
87
+ if (tryStatSync(pkgPath)?.isFile()) try {
88
+ return JSON.parse(fs.readFileSync(pkgPath, "utf-8"));
89
+ } catch {}
90
+ const nextBasedir = path.dirname(basedir);
91
+ if (nextBasedir === basedir) break;
92
+ basedir = nextBasedir;
93
+ }
94
+ return null;
95
+ }
96
+ function tryStatSync(file) {
97
+ try {
98
+ return fs.statSync(file, { throwIfNoEntry: false });
99
+ } catch {}
100
+ }
101
+ /**
102
+ * Load config from a file in a way that Rolldown does.
103
+ *
104
+ * @param configPath The path to the config file. If empty, it will look for `rolldown.config` with supported extensions in the current working directory.
105
+ * @returns The loaded config export
106
+ *
107
+ * @category Config
108
+ */
109
+ async function loadConfig(configPath) {
110
+ const ext = path.extname(configPath = configPath || await findConfigFileNameInCwd());
111
+ try {
112
+ if (SUPPORTED_JS_CONFIG_FORMATS.includes(ext) || process.env.NODE_OPTIONS?.includes("--import=tsx") && SUPPORTED_TS_CONFIG_FORMATS.includes(ext)) return (await import(pathToFileURL(configPath).href)).default;
113
+ else if (SUPPORTED_TS_CONFIG_FORMATS.includes(ext)) return await loadTsConfig(path.resolve(configPath));
114
+ else throw new Error(`Unsupported config format. Expected: \`${SUPPORTED_CONFIG_FORMATS.join(",")}\` but got \`${ext}\``);
115
+ } catch (err) {
116
+ throw new Error("Error happened while loading config.", { cause: err });
117
+ }
118
+ }
119
+ //#endregion
120
+ export { loadConfig as t };
@@ -0,0 +1,50 @@
1
+ //#region src/log/logging.d.ts
2
+ /** @inline */
3
+ type LogLevel = "info" | "debug" | "warn";
4
+ /** @inline */
5
+ type LogLevelOption = LogLevel | "silent";
6
+ /** @inline */
7
+ type LogLevelWithError = LogLevel | "error";
8
+ interface RolldownLog {
9
+ binding?: string;
10
+ cause?: unknown;
11
+ /**
12
+ * The log code for this log object.
13
+ * @example 'PLUGIN_ERROR'
14
+ */
15
+ code?: string;
16
+ exporter?: string;
17
+ frame?: string;
18
+ hook?: string;
19
+ id?: string;
20
+ ids?: string[];
21
+ loc?: {
22
+ column: number;
23
+ file?: string;
24
+ line: number;
25
+ };
26
+ /**
27
+ * The message for this log object.
28
+ * @example 'The "transform" hook used by the output plugin "rolldown-plugin-foo" is a build time hook and will not be run for that plugin. Either this plugin cannot be used as an output plugin, or it should have an option to configure it as an output plugin.'
29
+ */
30
+ message: string;
31
+ meta?: any;
32
+ names?: string[];
33
+ plugin?: string;
34
+ pluginCode?: unknown;
35
+ pos?: number;
36
+ reexporter?: string;
37
+ stack?: string;
38
+ url?: string;
39
+ }
40
+ /** @inline */
41
+ type RolldownLogWithString = RolldownLog | string;
42
+ /** @category Plugin APIs */
43
+ interface RolldownError extends RolldownLog {
44
+ name?: string;
45
+ stack?: string;
46
+ watchFiles?: string[];
47
+ }
48
+ type LogOrStringHandler = (level: LogLevelWithError, log: RolldownLogWithString) => void;
49
+ //#endregion
50
+ export { RolldownLog as a, RolldownError as i, LogLevelOption as n, RolldownLogWithString as o, LogOrStringHandler as r, LogLevel as t };
@@ -0,0 +1,180 @@
1
+ //#region src/utils/code-frame.ts
2
+ function spaces(index) {
3
+ let result = "";
4
+ while (index--) result += " ";
5
+ return result;
6
+ }
7
+ function tabsToSpaces(value) {
8
+ return value.replace(/^\t+/, (match) => match.split(" ").join(" "));
9
+ }
10
+ const LINE_TRUNCATE_LENGTH = 120;
11
+ const MIN_CHARACTERS_SHOWN_AFTER_LOCATION = 10;
12
+ const ELLIPSIS = "...";
13
+ function getCodeFrame(source, line, column) {
14
+ let lines = source.split("\n");
15
+ if (line > lines.length) return "";
16
+ const maxLineLength = Math.max(tabsToSpaces(lines[line - 1].slice(0, column)).length + MIN_CHARACTERS_SHOWN_AFTER_LOCATION + 3, LINE_TRUNCATE_LENGTH);
17
+ const frameStart = Math.max(0, line - 3);
18
+ let frameEnd = Math.min(line + 2, lines.length);
19
+ lines = lines.slice(frameStart, frameEnd);
20
+ while (!/\S/.test(lines[lines.length - 1])) {
21
+ lines.pop();
22
+ frameEnd -= 1;
23
+ }
24
+ const digits = String(frameEnd).length;
25
+ return lines.map((sourceLine, index) => {
26
+ const isErrorLine = frameStart + index + 1 === line;
27
+ let lineNumber = String(index + frameStart + 1);
28
+ while (lineNumber.length < digits) lineNumber = ` ${lineNumber}`;
29
+ let displayedLine = tabsToSpaces(sourceLine);
30
+ if (displayedLine.length > maxLineLength) displayedLine = `${displayedLine.slice(0, maxLineLength - 3)}${ELLIPSIS}`;
31
+ if (isErrorLine) {
32
+ const indicator = spaces(digits + 2 + tabsToSpaces(sourceLine.slice(0, column)).length) + "^";
33
+ return `${lineNumber}: ${displayedLine}\n${indicator}`;
34
+ }
35
+ return `${lineNumber}: ${displayedLine}`;
36
+ }).join("\n");
37
+ }
38
+ //#endregion
39
+ //#region src/log/locate-character/index.js
40
+ /** @typedef {import('./types').Location} Location */
41
+ /**
42
+ * @param {import('./types').Range} range
43
+ * @param {number} index
44
+ */
45
+ function rangeContains(range, index) {
46
+ return range.start <= index && index < range.end;
47
+ }
48
+ /**
49
+ * @param {string} source
50
+ * @param {import('./types').Options} [options]
51
+ */
52
+ function getLocator(source, options = {}) {
53
+ const { offsetLine = 0, offsetColumn = 0 } = options;
54
+ let start = 0;
55
+ const ranges = source.split("\n").map((line, i) => {
56
+ const end = start + line.length + 1;
57
+ /** @type {import('./types').Range} */
58
+ const range = {
59
+ start,
60
+ end,
61
+ line: i
62
+ };
63
+ start = end;
64
+ return range;
65
+ });
66
+ let i = 0;
67
+ /**
68
+ * @param {string | number} search
69
+ * @param {number} [index]
70
+ * @returns {Location | undefined}
71
+ */
72
+ function locator(search, index) {
73
+ if (typeof search === "string") search = source.indexOf(search, index ?? 0);
74
+ if (search === -1) return void 0;
75
+ let range = ranges[i];
76
+ const d = search >= range.end ? 1 : -1;
77
+ while (range) {
78
+ if (rangeContains(range, search)) return {
79
+ line: offsetLine + range.line,
80
+ column: offsetColumn + search - range.start,
81
+ character: search
82
+ };
83
+ i += d;
84
+ range = ranges[i];
85
+ }
86
+ }
87
+ return locator;
88
+ }
89
+ /**
90
+ * @param {string} source
91
+ * @param {string | number} search
92
+ * @param {import('./types').Options} [options]
93
+ * @returns {Location | undefined}
94
+ */
95
+ function locate(source, search, options) {
96
+ return getLocator(source, options)(search, options && options.startIndex);
97
+ }
98
+ //#endregion
99
+ //#region src/log/logs.ts
100
+ const INVALID_LOG_POSITION = "INVALID_LOG_POSITION", PLUGIN_ERROR = "PLUGIN_ERROR", INPUT_HOOK_IN_OUTPUT_PLUGIN = "INPUT_HOOK_IN_OUTPUT_PLUGIN", CYCLE_LOADING = "CYCLE_LOADING", MULTIPLE_WATCHER_OPTION = "MULTIPLE_WATCHER_OPTION", PARSE_ERROR = "PARSE_ERROR";
101
+ function logParseError(message, id, pos) {
102
+ return {
103
+ code: PARSE_ERROR,
104
+ id,
105
+ message,
106
+ pos
107
+ };
108
+ }
109
+ function logInvalidLogPosition(pluginName) {
110
+ return {
111
+ code: INVALID_LOG_POSITION,
112
+ message: `Plugin "${pluginName}" tried to add a file position to a log or warning. This is only supported in the "transform" hook at the moment and will be ignored.`
113
+ };
114
+ }
115
+ function logInputHookInOutputPlugin(pluginName, hookName) {
116
+ return {
117
+ code: INPUT_HOOK_IN_OUTPUT_PLUGIN,
118
+ message: `The "${hookName}" hook used by the output plugin ${pluginName} is a build time hook and will not be run for that plugin. Either this plugin cannot be used as an output plugin, or it should have an option to configure it as an output plugin.`
119
+ };
120
+ }
121
+ function logCycleLoading(pluginName, moduleId) {
122
+ return {
123
+ code: CYCLE_LOADING,
124
+ message: `Found the module "${moduleId}" cycle loading at ${pluginName} plugin, it maybe blocking fetching modules.`
125
+ };
126
+ }
127
+ function logMultipleWatcherOption() {
128
+ return {
129
+ code: MULTIPLE_WATCHER_OPTION,
130
+ message: `Found multiple watcher options at watch options, using first one to start watcher.`
131
+ };
132
+ }
133
+ function logPluginError(error, plugin, { hook, id } = {}) {
134
+ try {
135
+ const code = error.code;
136
+ if (!error.pluginCode && code != null && (typeof code !== "string" || !code.startsWith("PLUGIN_"))) error.pluginCode = code;
137
+ error.code = PLUGIN_ERROR;
138
+ error.plugin = plugin;
139
+ if (hook) error.hook = hook;
140
+ if (id) error.id = id;
141
+ } catch (_) {} finally {
142
+ return error;
143
+ }
144
+ }
145
+ function error(base) {
146
+ if (!(base instanceof Error)) {
147
+ base = Object.assign(new Error(base.message), base);
148
+ Object.defineProperty(base, "name", {
149
+ value: "RolldownError",
150
+ writable: true
151
+ });
152
+ }
153
+ throw base;
154
+ }
155
+ function augmentCodeLocation(properties, pos, source, id) {
156
+ if (typeof pos === "object") {
157
+ const { line, column } = pos;
158
+ properties.loc = {
159
+ column,
160
+ file: id,
161
+ line
162
+ };
163
+ } else {
164
+ properties.pos = pos;
165
+ const location = locate(source, pos, { offsetLine: 1 });
166
+ if (!location) return;
167
+ const { line, column } = location;
168
+ properties.loc = {
169
+ column,
170
+ file: id,
171
+ line
172
+ };
173
+ }
174
+ if (properties.frame === void 0) {
175
+ const { line, column } = properties.loc;
176
+ properties.frame = getCodeFrame(source, line, column);
177
+ }
178
+ }
179
+ //#endregion
180
+ export { logInvalidLogPosition as a, logPluginError as c, logInputHookInOutputPlugin as i, locate as l, error as n, logMultipleWatcherOption as o, logCycleLoading as r, logParseError as s, augmentCodeLocation as t, getCodeFrame as u };
@@ -0,0 +1,21 @@
1
+ //#region src/utils/misc.ts
2
+ function arraify(value) {
3
+ return Array.isArray(value) ? value : [value];
4
+ }
5
+ function isPromiseLike(value) {
6
+ return value && (typeof value === "object" || typeof value === "function") && typeof value.then === "function";
7
+ }
8
+ function unimplemented(info) {
9
+ if (info) throw new Error(`unimplemented: ${info}`);
10
+ throw new Error("unimplemented");
11
+ }
12
+ function unreachable(info) {
13
+ if (info) throw new Error(`unreachable: ${info}`);
14
+ throw new Error("unreachable");
15
+ }
16
+ function unsupported(info) {
17
+ throw new Error(`UNSUPPORTED: ${info}`);
18
+ }
19
+ function noop(..._args) {}
20
+ //#endregion
21
+ export { unreachable as a, unimplemented as i, isPromiseLike as n, unsupported as o, noop as r, arraify as t };
@@ -0,0 +1,66 @@
1
+ import { n as __toESM, t as require_binding } from "./binding-D_jQsHun.mjs";
2
+ import { c as logPluginError, n as error } from "./logs-D80CXhvg.mjs";
3
+ //#region src/builtin-plugin/utils.ts
4
+ var import_binding = /* @__PURE__ */ __toESM(require_binding(), 1);
5
+ var BuiltinPlugin = class {
6
+ /** Vite-specific option to control plugin ordering */
7
+ enforce;
8
+ constructor(name, _options) {
9
+ this.name = name;
10
+ this._options = _options;
11
+ }
12
+ };
13
+ function makeBuiltinPluginCallable(plugin) {
14
+ let callablePlugin = new import_binding.BindingCallableBuiltinPlugin(bindingifyBuiltInPlugin(plugin));
15
+ const wrappedPlugin = plugin;
16
+ for (const key in callablePlugin) {
17
+ const wrappedHook = async function(...args) {
18
+ try {
19
+ return await callablePlugin[key](...args);
20
+ } catch (e) {
21
+ if (e instanceof Error && !e.stack?.includes("at ")) Error.captureStackTrace(e, wrappedPlugin[key]);
22
+ return error(logPluginError(e, plugin.name, {
23
+ hook: key,
24
+ id: key === "transform" ? args[2] : void 0
25
+ }));
26
+ }
27
+ };
28
+ const order = callablePlugin.getOrder(key);
29
+ if (order == void 0) wrappedPlugin[key] = wrappedHook;
30
+ else wrappedPlugin[key] = {
31
+ handler: wrappedHook,
32
+ order
33
+ };
34
+ }
35
+ return wrappedPlugin;
36
+ }
37
+ function bindingifyBuiltInPlugin(plugin) {
38
+ return {
39
+ __name: plugin.name,
40
+ options: plugin._options
41
+ };
42
+ }
43
+ function bindingifyManifestPlugin(plugin, pluginContextData) {
44
+ const { isOutputOptionsForLegacyChunks, ...options } = plugin._options;
45
+ return {
46
+ __name: plugin.name,
47
+ options: {
48
+ ...options,
49
+ isLegacy: isOutputOptionsForLegacyChunks ? (opts) => {
50
+ return isOutputOptionsForLegacyChunks(pluginContextData.getOutputOptions(opts));
51
+ } : void 0
52
+ }
53
+ };
54
+ }
55
+ //#endregion
56
+ //#region src/utils/normalize-string-or-regex.ts
57
+ function normalizedStringOrRegex(pattern) {
58
+ if (!pattern) return;
59
+ if (!isReadonlyArray(pattern)) return [pattern];
60
+ return pattern;
61
+ }
62
+ function isReadonlyArray(input) {
63
+ return Array.isArray(input);
64
+ }
65
+ //#endregion
66
+ export { makeBuiltinPluginCallable as a, bindingifyManifestPlugin as i, BuiltinPlugin as n, bindingifyBuiltInPlugin as r, normalizedStringOrRegex as t };
@@ -0,0 +1,74 @@
1
+ import { n as __toESM, t as require_binding } from "./binding-D_jQsHun.mjs";
2
+ //#region ../../node_modules/.pnpm/oxc-parser@0.121.0/node_modules/oxc-parser/src-js/wrap.js
3
+ function wrap(result) {
4
+ let program, module, comments, errors;
5
+ return {
6
+ get program() {
7
+ if (!program) program = jsonParseAst(result.program);
8
+ return program;
9
+ },
10
+ get module() {
11
+ if (!module) module = result.module;
12
+ return module;
13
+ },
14
+ get comments() {
15
+ if (!comments) comments = result.comments;
16
+ return comments;
17
+ },
18
+ get errors() {
19
+ if (!errors) errors = result.errors;
20
+ return errors;
21
+ }
22
+ };
23
+ }
24
+ function jsonParseAst(programJson) {
25
+ const { node: program, fixes } = JSON.parse(programJson);
26
+ for (const fixPath of fixes) applyFix(program, fixPath);
27
+ return program;
28
+ }
29
+ function applyFix(program, fixPath) {
30
+ let node = program;
31
+ for (const key of fixPath) node = node[key];
32
+ if (node.bigint) node.value = BigInt(node.bigint);
33
+ else try {
34
+ node.value = RegExp(node.regex.pattern, node.regex.flags);
35
+ } catch {}
36
+ }
37
+ //#endregion
38
+ //#region src/utils/parse.ts
39
+ var import_binding = /* @__PURE__ */ __toESM(require_binding(), 1);
40
+ /**
41
+ * Parse JS/TS source asynchronously on a separate thread.
42
+ *
43
+ * Note that not all of the workload can happen on a separate thread.
44
+ * Parsing on Rust side does happen in a separate thread, but deserialization of the AST to JS objects
45
+ * has to happen on current thread. This synchronous deserialization work typically outweighs
46
+ * the asynchronous parsing by a factor of between 3 and 20.
47
+ *
48
+ * i.e. the majority of the workload cannot be parallelized by using this method.
49
+ *
50
+ * Generally {@linkcode parseSync} is preferable to use as it does not have the overhead of spawning a thread.
51
+ * If you need to parallelize parsing multiple files, it is recommended to use worker threads.
52
+ *
53
+ * @category Utilities
54
+ */
55
+ async function parse(filename, sourceText, options) {
56
+ return wrap(await (0, import_binding.parse)(filename, sourceText, options));
57
+ }
58
+ /**
59
+ * Parse JS/TS source synchronously on current thread.
60
+ *
61
+ * This is generally preferable over {@linkcode parse} (async) as it does not have the overhead
62
+ * of spawning a thread, and the majority of the workload cannot be parallelized anyway
63
+ * (see {@linkcode parse} documentation for details).
64
+ *
65
+ * If you need to parallelize parsing multiple files, it is recommended to use worker threads
66
+ * with {@linkcode parseSync} rather than using {@linkcode parse}.
67
+ *
68
+ * @category Utilities
69
+ */
70
+ function parseSync(filename, sourceText, options) {
71
+ return wrap((0, import_binding.parseSync)(filename, sourceText, options));
72
+ }
73
+ //#endregion
74
+ export { parseSync as n, parse as t };