@rollipop/rolldown 1.0.24 → 1.0.26
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/THIRD-PARTY-LICENSE +33 -0
- package/dist/cli.mjs +9 -10
- package/dist/config.d.mts +16 -17
- package/dist/config.mjs +2 -2
- package/dist/experimental-default-runtime.mjs +116 -0
- package/dist/experimental-index.d.mts +220 -205
- package/dist/experimental-index.mjs +47 -22
- package/dist/experimental-runtime-base.mjs +95 -0
- package/dist/experimental-runtime-types.d.ts +111 -41
- package/dist/experimental-runtime.d.ts +177 -0
- package/dist/experimental-runtime.mjs +257 -0
- package/dist/filter-index.d.mts +6 -5
- package/dist/filter-index.mjs +1 -3
- package/dist/get-log-filter.d.mts +2 -2
- package/dist/index.d.mts +4 -4
- package/dist/index.mjs +4 -4
- package/dist/parallel-plugin-worker.mjs +2 -2
- package/dist/parallel-plugin.d.mts +3 -4
- package/dist/parse-ast-index.d.mts +19 -20
- package/dist/parse-ast-index.mjs +2 -2
- package/dist/plugins-index.d.mts +27 -28
- package/dist/plugins-index.mjs +2 -2
- package/dist/shared/{binding-DLP3kSP5.mjs → binding-D_XVvOPT.mjs} +124 -50
- package/dist/shared/{binding-FraDreAW.d.mts → binding-We_IfeZk.d.mts} +48 -25
- package/dist/shared/{bindingify-input-options-DQnooxIa.mjs → bindingify-input-options-BXQG8xz-.mjs} +213 -262
- package/dist/shared/{constructors-CXtPAgZN.d.mts → constructors-BIHQ8UmW.d.mts} +9 -10
- package/dist/shared/{constructors-DpCCe7z3.mjs → constructors-CNB5XL7Q.mjs} +10 -6
- package/dist/shared/{rolldown-build-Blclcr5k.mjs → create-bundler-option-Be4KJzGL.mjs} +39 -156
- package/dist/shared/define-config-thpMQ05a.d.mts +4096 -0
- package/dist/shared/{error-CIdnbKmG.mjs → error-bm-jLrD1.mjs} +1 -1
- package/dist/shared/get-log-filter-B6CU6b90.d.mts +34 -0
- package/dist/shared/{load-config-5r6l-9qr.mjs → load-config-Bu7-JwX4.mjs} +2 -2
- package/dist/shared/{logging-BSNejiLS.d.mts → logging-xuHO4mAy.d.mts} +6 -6
- package/dist/shared/{logs-ZGEh6uhb.mjs → logs-DmYCAKcW.mjs} +8 -1
- package/dist/shared/{misc-CoQm4NHO.mjs → misc-DOSKtd97.mjs} +9 -1
- package/dist/shared/{normalize-string-or-regex-oITfWWWc.mjs → normalize-string-or-regex-CiPu-0L6.mjs} +2 -2
- package/dist/shared/{parse-CI_bqXWS.mjs → parse-DFZrcERz.mjs} +2 -2
- package/dist/shared/{prompt--dNycKSZ.mjs → prompt-CH6TK0bC.mjs} +2 -6
- package/dist/shared/{resolve-tsconfig-9cpL_qUM.mjs → resolve-tsconfig-CsDgQmsO.mjs} +2 -2
- package/dist/shared/rolldown-CnVo3ESi.mjs +178 -0
- package/dist/shared/transform-CsZGbS4Q.d.mts +148 -0
- package/dist/shared/{watch-DElgNTzo.mjs → watch-WV6bq5kw.mjs} +16 -13
- package/dist/utils-index.d.mts +29 -30
- package/dist/utils-index.mjs +6 -8
- package/package.json +25 -16
- package/dist/shared/define-config-oNOGrLUX.d.mts +0 -4008
- package/dist/shared/get-log-filter-B4LpBryx.d.mts +0 -35
- package/dist/shared/rolldown-DBxQ1pTJ.mjs +0 -40
- package/dist/shared/transform-DmrnpNrQ.d.mts +0 -149
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
1
|
+
import { A as BindingViteResolvePluginConfig, C as BindingViteDynamicImportVarsPluginConfig, D as BindingViteModulePreloadPolyfillPluginConfig, O as BindingViteReactRefreshWrapperPluginConfig, S as BindingViteBuildImportAnalysisPluginConfig, T as BindingViteJsonPluginConfig, k as BindingViteReporterPluginConfig, l as BindingIsolatedDeclarationPluginConfig, s as BindingEsmExternalRequirePluginConfig, w as BindingViteImportGlobPluginConfig } from "./binding-We_IfeZk.mjs";
|
|
2
|
+
import { Gt as StringOrRegExp, I as BuiltinPlugin } from "./define-config-thpMQ05a.mjs";
|
|
4
3
|
//#region src/builtin-plugin/constructors.d.ts
|
|
5
4
|
declare function viteModulePreloadPolyfillPlugin(config?: BindingViteModulePreloadPolyfillPluginConfig): BuiltinPlugin;
|
|
6
5
|
type DynamicImportVarsPluginConfig = Omit<BindingViteDynamicImportVarsPluginConfig, "include" | "exclude"> & {
|
|
@@ -17,19 +16,19 @@ declare function viteResolvePlugin(config: Omit<BindingViteResolvePluginConfig,
|
|
|
17
16
|
declare function isolatedDeclarationPlugin(config?: BindingIsolatedDeclarationPluginConfig): BuiltinPlugin;
|
|
18
17
|
declare function viteWebWorkerPostPlugin(): BuiltinPlugin;
|
|
19
18
|
/**
|
|
20
|
-
* A plugin that converts CommonJS require() calls for external dependencies into ESM import statements.
|
|
21
|
-
*
|
|
22
|
-
* @see https://rolldown.rs/builtin-plugins/esm-external-require
|
|
23
|
-
* @category Builtin Plugins
|
|
24
|
-
*/
|
|
19
|
+
* A plugin that converts CommonJS require() calls for external dependencies into ESM import statements.
|
|
20
|
+
*
|
|
21
|
+
* @see https://rolldown.rs/builtin-plugins/esm-external-require
|
|
22
|
+
* @category Builtin Plugins
|
|
23
|
+
*/
|
|
25
24
|
declare function esmExternalRequirePlugin(config?: BindingEsmExternalRequirePluginConfig): BuiltinPlugin;
|
|
26
25
|
type ViteReactRefreshWrapperPluginConfig = Omit<BindingViteReactRefreshWrapperPluginConfig, "include" | "exclude"> & {
|
|
27
26
|
include?: StringOrRegExp | StringOrRegExp[];
|
|
28
27
|
exclude?: StringOrRegExp | StringOrRegExp[];
|
|
29
28
|
};
|
|
30
29
|
/**
|
|
31
|
-
* This plugin should not be used for Rolldown.
|
|
32
|
-
*/
|
|
30
|
+
* This plugin should not be used for Rolldown.
|
|
31
|
+
*/
|
|
33
32
|
declare function oxcRuntimePlugin(): BuiltinPlugin;
|
|
34
33
|
declare function viteReactRefreshWrapperPlugin(config: ViteReactRefreshWrapperPluginConfig): BuiltinPlugin;
|
|
35
34
|
//#endregion
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as makeBuiltinPluginCallable, n as BuiltinPlugin, t as normalizedStringOrRegex } from "./normalize-string-or-regex-
|
|
1
|
+
import { a as makeBuiltinPluginCallable, n as BuiltinPlugin, t as normalizedStringOrRegex } from "./normalize-string-or-regex-CiPu-0L6.mjs";
|
|
2
2
|
//#region src/builtin-plugin/constructors.ts
|
|
3
3
|
function viteModulePreloadPolyfillPlugin(config) {
|
|
4
4
|
return new BuiltinPlugin("builtin:vite-module-preload-polyfill", config);
|
|
@@ -20,16 +20,18 @@ function viteLoadFallbackPlugin() {
|
|
|
20
20
|
return new BuiltinPlugin("builtin:vite-load-fallback");
|
|
21
21
|
}
|
|
22
22
|
function viteJsonPlugin(config) {
|
|
23
|
-
|
|
23
|
+
const builtinPlugin = new BuiltinPlugin("builtin:vite-json", config);
|
|
24
|
+
return makeBuiltinPluginCallable(builtinPlugin);
|
|
24
25
|
}
|
|
25
26
|
function viteBuildImportAnalysisPlugin(config) {
|
|
26
27
|
return new BuiltinPlugin("builtin:vite-build-import-analysis", config);
|
|
27
28
|
}
|
|
28
29
|
function viteResolvePlugin(config) {
|
|
29
|
-
|
|
30
|
+
const builtinPlugin = new BuiltinPlugin("builtin:vite-resolve", {
|
|
30
31
|
...config,
|
|
31
32
|
yarnPnp: typeof process === "object" && !!process.versions?.pnp
|
|
32
|
-
})
|
|
33
|
+
});
|
|
34
|
+
return makeBuiltinPluginCallable(builtinPlugin);
|
|
33
35
|
}
|
|
34
36
|
function isolatedDeclarationPlugin(config) {
|
|
35
37
|
return new BuiltinPlugin("builtin:isolated-declaration", config);
|
|
@@ -52,14 +54,16 @@ function esmExternalRequirePlugin(config) {
|
|
|
52
54
|
* This plugin should not be used for Rolldown.
|
|
53
55
|
*/
|
|
54
56
|
function oxcRuntimePlugin() {
|
|
55
|
-
|
|
57
|
+
const builtinPlugin = new BuiltinPlugin("builtin:oxc-runtime");
|
|
58
|
+
return makeBuiltinPluginCallable(builtinPlugin);
|
|
56
59
|
}
|
|
57
60
|
function viteReactRefreshWrapperPlugin(config) {
|
|
58
61
|
if (config) {
|
|
59
62
|
config.include = normalizedStringOrRegex(config.include);
|
|
60
63
|
config.exclude = normalizedStringOrRegex(config.exclude);
|
|
61
64
|
}
|
|
62
|
-
|
|
65
|
+
const builtinPlugin = new BuiltinPlugin("builtin:vite-react-refresh-wrapper", config);
|
|
66
|
+
return makeBuiltinPluginCallable(builtinPlugin);
|
|
63
67
|
}
|
|
64
68
|
//#endregion
|
|
65
69
|
export { viteDynamicImportVarsPlugin as a, viteLoadFallbackPlugin as c, viteReporterPlugin as d, viteResolvePlugin as f, viteBuildImportAnalysisPlugin as i, viteModulePreloadPolyfillPlugin as l, isolatedDeclarationPlugin as n, viteImportGlobPlugin as o, viteWebWorkerPostPlugin as p, oxcRuntimePlugin as r, viteJsonPlugin as s, esmExternalRequirePlugin as t, viteReactRefreshWrapperPlugin as u };
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import { n as __toESM, t as require_binding } from "./binding-
|
|
2
|
-
import {
|
|
3
|
-
import { n as BuiltinPlugin } from "./normalize-string-or-regex-
|
|
4
|
-
import { a as transformModuleInfo, b as
|
|
5
|
-
import {
|
|
6
|
-
import { i as unwrapBindingResult } from "./error-CIdnbKmG.mjs";
|
|
1
|
+
import { n as __toESM, t as require_binding } from "./binding-D_XVvOPT.mjs";
|
|
2
|
+
import { a as logInputHookInOutputPlugin, n as error } from "./logs-DmYCAKcW.mjs";
|
|
3
|
+
import { n as BuiltinPlugin } from "./normalize-string-or-regex-CiPu-0L6.mjs";
|
|
4
|
+
import { a as transformModuleInfo, b as logLevelPriority, f as MinimalPluginContextImpl, g as LOG_LEVEL_DEBUG, h as normalizeLog, i as PluginContextData, l as transformAssetSource, m as normalizeHook, p as getParallelPluginInfo, s as transformRenderedChunk, t as bindingifyInputOptions, x as VERSION, y as LOG_LEVEL_WARN } from "./bindingify-input-options-BXQG8xz-.mjs";
|
|
5
|
+
import { a as unimplemented } from "./misc-DOSKtd97.mjs";
|
|
7
6
|
import { Worker } from "node:worker_threads";
|
|
8
7
|
import path, { sep } from "node:path";
|
|
9
8
|
import { formatWithOptions, styleText } from "node:util";
|
|
@@ -11,7 +10,6 @@ import g$1 from "node:process";
|
|
|
11
10
|
import * as tty from "node:tty";
|
|
12
11
|
import os from "node:os";
|
|
13
12
|
//#region src/log/logger.ts
|
|
14
|
-
var import_binding = /* @__PURE__ */ __toESM(require_binding(), 1);
|
|
15
13
|
function getLogger(plugins, onLog, logLevel, watchMode) {
|
|
16
14
|
const minimalPriority = logLevelPriority[logLevel];
|
|
17
15
|
const logger = (level, log, skipped = /* @__PURE__ */ new Set()) => {
|
|
@@ -107,7 +105,8 @@ const ENUMERATED_OUTPUT_PLUGIN_HOOK_NAMES = [
|
|
|
107
105
|
"renderStart",
|
|
108
106
|
"renderError",
|
|
109
107
|
"writeBundle",
|
|
110
|
-
"generateBundle"
|
|
108
|
+
"generateBundle",
|
|
109
|
+
"resolveFileUrl"
|
|
111
110
|
];
|
|
112
111
|
const ENUMERATED_PLUGIN_HOOK_NAMES = [
|
|
113
112
|
...ENUMERATED_INPUT_PLUGIN_HOOK_NAMES,
|
|
@@ -117,7 +116,15 @@ const ENUMERATED_PLUGIN_HOOK_NAMES = [
|
|
|
117
116
|
"intro",
|
|
118
117
|
"outro"
|
|
119
118
|
];
|
|
120
|
-
ENUMERATED_PLUGIN_HOOK_NAMES[0], ENUMERATED_PLUGIN_HOOK_NAMES[0], ENUMERATED_PLUGIN_HOOK_NAMES[1], ENUMERATED_PLUGIN_HOOK_NAMES[1], ENUMERATED_PLUGIN_HOOK_NAMES[2], ENUMERATED_PLUGIN_HOOK_NAMES[2], ENUMERATED_PLUGIN_HOOK_NAMES[3], ENUMERATED_PLUGIN_HOOK_NAMES[3], ENUMERATED_PLUGIN_HOOK_NAMES[4], ENUMERATED_PLUGIN_HOOK_NAMES[4], ENUMERATED_PLUGIN_HOOK_NAMES[5], ENUMERATED_PLUGIN_HOOK_NAMES[5], ENUMERATED_PLUGIN_HOOK_NAMES[6], ENUMERATED_PLUGIN_HOOK_NAMES[6], ENUMERATED_PLUGIN_HOOK_NAMES[7], ENUMERATED_PLUGIN_HOOK_NAMES[7], ENUMERATED_PLUGIN_HOOK_NAMES[8], ENUMERATED_PLUGIN_HOOK_NAMES[8], ENUMERATED_PLUGIN_HOOK_NAMES[9], ENUMERATED_PLUGIN_HOOK_NAMES[9], ENUMERATED_PLUGIN_HOOK_NAMES[10], ENUMERATED_PLUGIN_HOOK_NAMES[10], ENUMERATED_PLUGIN_HOOK_NAMES[11], ENUMERATED_PLUGIN_HOOK_NAMES[11], ENUMERATED_PLUGIN_HOOK_NAMES[12], ENUMERATED_PLUGIN_HOOK_NAMES[12], ENUMERATED_PLUGIN_HOOK_NAMES[13], ENUMERATED_PLUGIN_HOOK_NAMES[13], ENUMERATED_PLUGIN_HOOK_NAMES[14], ENUMERATED_PLUGIN_HOOK_NAMES[14], ENUMERATED_PLUGIN_HOOK_NAMES[15], ENUMERATED_PLUGIN_HOOK_NAMES[15], ENUMERATED_PLUGIN_HOOK_NAMES[16], ENUMERATED_PLUGIN_HOOK_NAMES[16], ENUMERATED_PLUGIN_HOOK_NAMES[17], ENUMERATED_PLUGIN_HOOK_NAMES[17], ENUMERATED_PLUGIN_HOOK_NAMES[18], ENUMERATED_PLUGIN_HOOK_NAMES[18], ENUMERATED_PLUGIN_HOOK_NAMES[19], ENUMERATED_PLUGIN_HOOK_NAMES[19], ENUMERATED_PLUGIN_HOOK_NAMES[20], ENUMERATED_PLUGIN_HOOK_NAMES[20], ENUMERATED_PLUGIN_HOOK_NAMES[21], ENUMERATED_PLUGIN_HOOK_NAMES[21], ENUMERATED_PLUGIN_HOOK_NAMES[22], ENUMERATED_PLUGIN_HOOK_NAMES[22], ENUMERATED_PLUGIN_HOOK_NAMES[23], ENUMERATED_PLUGIN_HOOK_NAMES[23];
|
|
119
|
+
ENUMERATED_PLUGIN_HOOK_NAMES[0], ENUMERATED_PLUGIN_HOOK_NAMES[0], ENUMERATED_PLUGIN_HOOK_NAMES[1], ENUMERATED_PLUGIN_HOOK_NAMES[1], ENUMERATED_PLUGIN_HOOK_NAMES[2], ENUMERATED_PLUGIN_HOOK_NAMES[2], ENUMERATED_PLUGIN_HOOK_NAMES[3], ENUMERATED_PLUGIN_HOOK_NAMES[3], ENUMERATED_PLUGIN_HOOK_NAMES[4], ENUMERATED_PLUGIN_HOOK_NAMES[4], ENUMERATED_PLUGIN_HOOK_NAMES[5], ENUMERATED_PLUGIN_HOOK_NAMES[5], ENUMERATED_PLUGIN_HOOK_NAMES[6], ENUMERATED_PLUGIN_HOOK_NAMES[6], ENUMERATED_PLUGIN_HOOK_NAMES[7], ENUMERATED_PLUGIN_HOOK_NAMES[7], ENUMERATED_PLUGIN_HOOK_NAMES[8], ENUMERATED_PLUGIN_HOOK_NAMES[8], ENUMERATED_PLUGIN_HOOK_NAMES[9], ENUMERATED_PLUGIN_HOOK_NAMES[9], ENUMERATED_PLUGIN_HOOK_NAMES[10], ENUMERATED_PLUGIN_HOOK_NAMES[10], ENUMERATED_PLUGIN_HOOK_NAMES[11], ENUMERATED_PLUGIN_HOOK_NAMES[11], ENUMERATED_PLUGIN_HOOK_NAMES[12], ENUMERATED_PLUGIN_HOOK_NAMES[12], ENUMERATED_PLUGIN_HOOK_NAMES[13], ENUMERATED_PLUGIN_HOOK_NAMES[13], ENUMERATED_PLUGIN_HOOK_NAMES[14], ENUMERATED_PLUGIN_HOOK_NAMES[14], ENUMERATED_PLUGIN_HOOK_NAMES[15], ENUMERATED_PLUGIN_HOOK_NAMES[15], ENUMERATED_PLUGIN_HOOK_NAMES[16], ENUMERATED_PLUGIN_HOOK_NAMES[16], ENUMERATED_PLUGIN_HOOK_NAMES[17], ENUMERATED_PLUGIN_HOOK_NAMES[17], ENUMERATED_PLUGIN_HOOK_NAMES[18], ENUMERATED_PLUGIN_HOOK_NAMES[18], ENUMERATED_PLUGIN_HOOK_NAMES[19], ENUMERATED_PLUGIN_HOOK_NAMES[19], ENUMERATED_PLUGIN_HOOK_NAMES[20], ENUMERATED_PLUGIN_HOOK_NAMES[20], ENUMERATED_PLUGIN_HOOK_NAMES[21], ENUMERATED_PLUGIN_HOOK_NAMES[21], ENUMERATED_PLUGIN_HOOK_NAMES[22], ENUMERATED_PLUGIN_HOOK_NAMES[22], ENUMERATED_PLUGIN_HOOK_NAMES[23], ENUMERATED_PLUGIN_HOOK_NAMES[23], ENUMERATED_PLUGIN_HOOK_NAMES[24], ENUMERATED_PLUGIN_HOOK_NAMES[24];
|
|
120
|
+
//#endregion
|
|
121
|
+
//#region src/plugin/internal-hooks.ts
|
|
122
|
+
/**
|
|
123
|
+
* Names of the hidden hooks, alongside {@linkcode InternalFunctionPluginHooks}.
|
|
124
|
+
* Kept separate from `ENUMERATED_INPUT_PLUGIN_HOOK_NAMES` so the names stay out
|
|
125
|
+
* of the published `.d.ts` (that list's type is reachable from public types).
|
|
126
|
+
*/
|
|
127
|
+
const INTERNAL_PLUGIN_HOOK_NAMES = ["hotUpdate"];
|
|
121
128
|
//#endregion
|
|
122
129
|
//#region src/utils/async-flatten.ts
|
|
123
130
|
async function asyncFlatten(array) {
|
|
@@ -130,7 +137,7 @@ async function asyncFlatten(array) {
|
|
|
130
137
|
//#region src/utils/normalize-plugin-option.ts
|
|
131
138
|
const normalizePluginOption = async (plugins) => (await asyncFlatten([plugins])).filter(Boolean);
|
|
132
139
|
function checkOutputPluginOption(plugins, onLog) {
|
|
133
|
-
for (const plugin of plugins) for (const hook of ENUMERATED_INPUT_PLUGIN_HOOK_NAMES) if (hook in plugin) {
|
|
140
|
+
for (const plugin of plugins) for (const hook of [...ENUMERATED_INPUT_PLUGIN_HOOK_NAMES, ...INTERNAL_PLUGIN_HOOK_NAMES]) if (hook in plugin) {
|
|
134
141
|
delete plugin[hook];
|
|
135
142
|
onLog(LOG_LEVEL_WARN, logInputHookInOutputPlugin(plugin.name, hook));
|
|
136
143
|
}
|
|
@@ -138,9 +145,10 @@ function checkOutputPluginOption(plugins, onLog) {
|
|
|
138
145
|
}
|
|
139
146
|
function normalizePlugins(plugins, anonymousPrefix) {
|
|
140
147
|
for (const [index, plugin] of plugins.entries()) {
|
|
141
|
-
if (
|
|
148
|
+
if (getParallelPluginInfo(plugin)) continue;
|
|
142
149
|
if (plugin instanceof BuiltinPlugin) continue;
|
|
143
|
-
|
|
150
|
+
const objectPlugin = plugin;
|
|
151
|
+
if (!objectPlugin.name) objectPlugin.name = `${anonymousPrefix}${index + 1}`;
|
|
144
152
|
}
|
|
145
153
|
return plugins;
|
|
146
154
|
}
|
|
@@ -181,7 +189,7 @@ var PluginDriver = class {
|
|
|
181
189
|
function getObjectPlugins(plugins) {
|
|
182
190
|
return plugins.filter((plugin) => {
|
|
183
191
|
if (!plugin) return;
|
|
184
|
-
if (
|
|
192
|
+
if (getParallelPluginInfo(plugin)) return;
|
|
185
193
|
if (plugin instanceof BuiltinPlugin) return;
|
|
186
194
|
return plugin;
|
|
187
195
|
});
|
|
@@ -1612,6 +1620,7 @@ const DevModeSchema = /* @__PURE__ */ union([/* @__PURE__ */ boolean(), /* @__PU
|
|
|
1612
1620
|
port: /* @__PURE__ */ optional(/* @__PURE__ */ number()),
|
|
1613
1621
|
host: /* @__PURE__ */ optional(/* @__PURE__ */ string()),
|
|
1614
1622
|
implement: /* @__PURE__ */ optional(/* @__PURE__ */ string()),
|
|
1623
|
+
skipCommonRuntimeInjection: /* @__PURE__ */ optional(/* @__PURE__ */ boolean()),
|
|
1615
1624
|
lazy: /* @__PURE__ */ optional(/* @__PURE__ */ boolean())
|
|
1616
1625
|
})]);
|
|
1617
1626
|
const InputOptionsSchema = /* @__PURE__ */ strictObject({
|
|
@@ -1815,7 +1824,7 @@ const OutputOptionsSchema = /* @__PURE__ */ strictObject({
|
|
|
1815
1824
|
topLevelVar: /* @__PURE__ */ pipe(/* @__PURE__ */ optional(/* @__PURE__ */ boolean()), /* @__PURE__ */ description("Rewrite top-level declarations to use `var`.")),
|
|
1816
1825
|
cleanDir: /* @__PURE__ */ pipe(/* @__PURE__ */ optional(/* @__PURE__ */ boolean()), /* @__PURE__ */ description("Clean output directory before emitting output")),
|
|
1817
1826
|
keepNames: /* @__PURE__ */ pipe(/* @__PURE__ */ optional(/* @__PURE__ */ boolean()), /* @__PURE__ */ description("Keep function and class names after bundling")),
|
|
1818
|
-
strictExecutionOrder: /* @__PURE__ */ pipe(/* @__PURE__ */ optional(/* @__PURE__ */ boolean()), /* @__PURE__ */ description("
|
|
1827
|
+
strictExecutionOrder: /* @__PURE__ */ pipe(/* @__PURE__ */ optional(/* @__PURE__ */ boolean()), /* @__PURE__ */ description("Preserve source module execution order across generated chunks.")),
|
|
1819
1828
|
strict: /* @__PURE__ */ pipe(/* @__PURE__ */ optional(/* @__PURE__ */ union([/* @__PURE__ */ boolean(), /* @__PURE__ */ literal("auto")])), /* @__PURE__ */ description("Whether to always output `\"use strict\"` directive in non-ES module outputs.")),
|
|
1820
1829
|
persistentCache: /* @__PURE__ */ pipe(/* @__PURE__ */ optional(/* @__PURE__ */ boolean()), /* @__PURE__ */ description("Enable persistent transform cache to disk."))
|
|
1821
1830
|
});
|
|
@@ -1908,30 +1917,6 @@ function getCliSchemaInfo() {
|
|
|
1908
1917
|
return flattenValibotSchema(CliOptionsSchema);
|
|
1909
1918
|
}
|
|
1910
1919
|
//#endregion
|
|
1911
|
-
//#region src/types/rolldown-output-impl.ts
|
|
1912
|
-
var RolldownOutputImpl = class extends PlainObjectLike {
|
|
1913
|
-
bindingOutputs;
|
|
1914
|
-
constructor(bindingOutputs) {
|
|
1915
|
-
super();
|
|
1916
|
-
this.bindingOutputs = bindingOutputs;
|
|
1917
|
-
}
|
|
1918
|
-
get output() {
|
|
1919
|
-
return transformToRollupOutput(this.bindingOutputs).output;
|
|
1920
|
-
}
|
|
1921
|
-
__rolldown_external_memory_handle__(keepDataAlive) {
|
|
1922
|
-
const results = this.output.map((item) => item.__rolldown_external_memory_handle__(keepDataAlive));
|
|
1923
|
-
if (!results.every((r) => r.freed)) {
|
|
1924
|
-
const reasons = results.filter((r) => !r.freed).map((r) => r.reason).filter(Boolean);
|
|
1925
|
-
return {
|
|
1926
|
-
freed: false,
|
|
1927
|
-
reason: `Failed to free ${reasons.length} item(s): ${reasons.join("; ")}`
|
|
1928
|
-
};
|
|
1929
|
-
}
|
|
1930
|
-
return { freed: true };
|
|
1931
|
-
}
|
|
1932
|
-
};
|
|
1933
|
-
__decorate([lazyProp], RolldownOutputImpl.prototype, "output", null);
|
|
1934
|
-
//#endregion
|
|
1935
1920
|
//#region src/types/chunking-context.ts
|
|
1936
1921
|
var ChunkingContextImpl = class {
|
|
1937
1922
|
context;
|
|
@@ -2359,10 +2344,11 @@ ${indent}`);
|
|
|
2359
2344
|
return causedPrefix + message + "\n" + stack + causedError;
|
|
2360
2345
|
}
|
|
2361
2346
|
formatArgs(args, opts) {
|
|
2362
|
-
|
|
2347
|
+
const _args = args.map((arg) => {
|
|
2363
2348
|
if (arg && typeof arg.stack === "string") return this.formatError(arg, opts);
|
|
2364
2349
|
return arg;
|
|
2365
|
-
})
|
|
2350
|
+
});
|
|
2351
|
+
return formatWithOptions(opts, ..._args);
|
|
2366
2352
|
}
|
|
2367
2353
|
formatDate(date, opts) {
|
|
2368
2354
|
return opts.date ? date.toLocaleTimeString() : "";
|
|
@@ -2898,7 +2884,7 @@ function createConsola(options = {}) {
|
|
|
2898
2884
|
defaults: { level },
|
|
2899
2885
|
stdout: process.stdout,
|
|
2900
2886
|
stderr: process.stderr,
|
|
2901
|
-
prompt: (...args) => import("./prompt
|
|
2887
|
+
prompt: (...args) => import("./prompt-CH6TK0bC.mjs").then((m) => m.prompt(...args)),
|
|
2902
2888
|
reporters: options.reporters || [options.fancy ?? !(T || R) ? new FancyReporter() : new BasicReporter()],
|
|
2903
2889
|
...options
|
|
2904
2890
|
});
|
|
@@ -3096,15 +3082,19 @@ function bindingifyCodeSplitting(codeSplitting, inlineDynamicImportsOption, adva
|
|
|
3096
3082
|
}
|
|
3097
3083
|
//#endregion
|
|
3098
3084
|
//#region src/utils/initialize-parallel-plugins.ts
|
|
3085
|
+
var import_binding = /* @__PURE__ */ __toESM(require_binding(), 1);
|
|
3099
3086
|
async function initializeParallelPlugins(plugins) {
|
|
3100
3087
|
const pluginInfos = [];
|
|
3101
|
-
for (const [index, plugin] of plugins.entries())
|
|
3102
|
-
const
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3088
|
+
for (const [index, plugin] of plugins.entries()) {
|
|
3089
|
+
const parallel = getParallelPluginInfo(plugin);
|
|
3090
|
+
if (parallel) {
|
|
3091
|
+
const { fileUrl, options } = parallel;
|
|
3092
|
+
pluginInfos.push({
|
|
3093
|
+
index,
|
|
3094
|
+
fileUrl,
|
|
3095
|
+
options
|
|
3096
|
+
});
|
|
3097
|
+
}
|
|
3108
3098
|
}
|
|
3109
3099
|
if (pluginInfos.length <= 0) return;
|
|
3110
3100
|
const count = availableParallelism();
|
|
@@ -3187,111 +3177,4 @@ async function createBundlerOptions(inputOptions, outputOptions, watchMode) {
|
|
|
3187
3177
|
}
|
|
3188
3178
|
}
|
|
3189
3179
|
//#endregion
|
|
3190
|
-
|
|
3191
|
-
Symbol.asyncDispose ??= Symbol("Symbol.asyncDispose");
|
|
3192
|
-
/**
|
|
3193
|
-
* The bundle object returned by {@linkcode rolldown} function.
|
|
3194
|
-
*
|
|
3195
|
-
* @category Programmatic APIs
|
|
3196
|
-
*/
|
|
3197
|
-
var RolldownBuild = class RolldownBuild {
|
|
3198
|
-
#inputOptions;
|
|
3199
|
-
#bundler;
|
|
3200
|
-
#stopWorkers;
|
|
3201
|
-
/** @internal */
|
|
3202
|
-
static asyncRuntimeShutdown = false;
|
|
3203
|
-
/** @hidden should not be used directly */
|
|
3204
|
-
constructor(inputOptions) {
|
|
3205
|
-
this.#inputOptions = inputOptions;
|
|
3206
|
-
this.#bundler = new import_binding.BindingBundler();
|
|
3207
|
-
}
|
|
3208
|
-
/**
|
|
3209
|
-
* Whether the bundle has been closed.
|
|
3210
|
-
*
|
|
3211
|
-
* If the bundle is closed, calling other methods will throw an error.
|
|
3212
|
-
*/
|
|
3213
|
-
get closed() {
|
|
3214
|
-
return this.#bundler.closed;
|
|
3215
|
-
}
|
|
3216
|
-
/**
|
|
3217
|
-
* Generate bundles in-memory.
|
|
3218
|
-
*
|
|
3219
|
-
* If you directly want to write bundles to disk, use the {@linkcode write} method instead.
|
|
3220
|
-
*
|
|
3221
|
-
* @param outputOptions The output options.
|
|
3222
|
-
* @returns The generated bundle.
|
|
3223
|
-
* @throws {@linkcode BundleError} When an error occurs during the build.
|
|
3224
|
-
*/
|
|
3225
|
-
async generate(outputOptions = {}) {
|
|
3226
|
-
return this.#build(false, outputOptions);
|
|
3227
|
-
}
|
|
3228
|
-
/**
|
|
3229
|
-
* Generate and write bundles to disk.
|
|
3230
|
-
*
|
|
3231
|
-
* If you want to generate bundles in-memory, use the {@linkcode generate} method instead.
|
|
3232
|
-
*
|
|
3233
|
-
* @param outputOptions The output options.
|
|
3234
|
-
* @returns The generated bundle.
|
|
3235
|
-
* @throws {@linkcode BundleError} When an error occurs during the build.
|
|
3236
|
-
*/
|
|
3237
|
-
async write(outputOptions = {}) {
|
|
3238
|
-
return this.#build(true, outputOptions);
|
|
3239
|
-
}
|
|
3240
|
-
/**
|
|
3241
|
-
* Close the bundle and free resources.
|
|
3242
|
-
*
|
|
3243
|
-
* This method should be called even if the {@linkcode generate} method
|
|
3244
|
-
* or the {@linkcode write} method threw an error. It should be called
|
|
3245
|
-
* even if neither of the methods are called.
|
|
3246
|
-
*
|
|
3247
|
-
* This method is called automatically when using `using` syntax.
|
|
3248
|
-
*
|
|
3249
|
-
* @example
|
|
3250
|
-
* ```js
|
|
3251
|
-
* import { rolldown } from '@rollipop/rolldown';
|
|
3252
|
-
*
|
|
3253
|
-
* {
|
|
3254
|
-
* using bundle = await rolldown({ input: 'src/main.js' });
|
|
3255
|
-
* const output = await bundle.generate({ format: 'esm' });
|
|
3256
|
-
* console.log(output);
|
|
3257
|
-
* // bundle.close() is called automatically here
|
|
3258
|
-
* }
|
|
3259
|
-
* ```
|
|
3260
|
-
*/
|
|
3261
|
-
async close() {
|
|
3262
|
-
await this.#stopWorkers?.();
|
|
3263
|
-
await this.#bundler.close();
|
|
3264
|
-
(0, import_binding.shutdownAsyncRuntime)();
|
|
3265
|
-
RolldownBuild.asyncRuntimeShutdown = true;
|
|
3266
|
-
this.#stopWorkers = void 0;
|
|
3267
|
-
}
|
|
3268
|
-
/** @hidden documented in close method */
|
|
3269
|
-
async [Symbol.asyncDispose]() {
|
|
3270
|
-
await this.close();
|
|
3271
|
-
}
|
|
3272
|
-
/**
|
|
3273
|
-
* @experimental
|
|
3274
|
-
* @hidden not ready for public usage yet
|
|
3275
|
-
*/
|
|
3276
|
-
get watchFiles() {
|
|
3277
|
-
return Promise.resolve(this.#bundler.getWatchFiles());
|
|
3278
|
-
}
|
|
3279
|
-
async #build(isWrite, outputOptions) {
|
|
3280
|
-
validateOption("output", outputOptions);
|
|
3281
|
-
await this.#stopWorkers?.();
|
|
3282
|
-
const option = await createBundlerOptions(this.#inputOptions, outputOptions, false);
|
|
3283
|
-
if (RolldownBuild.asyncRuntimeShutdown) (0, import_binding.startAsyncRuntime)();
|
|
3284
|
-
try {
|
|
3285
|
-
this.#stopWorkers = option.stopWorkers;
|
|
3286
|
-
let output;
|
|
3287
|
-
if (isWrite) output = await this.#bundler.write(option.bundlerOptions);
|
|
3288
|
-
else output = await this.#bundler.generate(option.bundlerOptions);
|
|
3289
|
-
return new RolldownOutputImpl(unwrapBindingResult(output));
|
|
3290
|
-
} catch (e) {
|
|
3291
|
-
await option.stopWorkers?.();
|
|
3292
|
-
throw e;
|
|
3293
|
-
}
|
|
3294
|
-
}
|
|
3295
|
-
};
|
|
3296
|
-
//#endregion
|
|
3297
|
-
export { getInputCliKeys as a, validateOption as c, getCliSchemaInfo as i, styleText$1 as l, createBundlerOptions as n, getOutputCliKeys as o, logger as r, validateCliOptions as s, RolldownBuild as t, PluginDriver as u };
|
|
3180
|
+
export { getOutputCliKeys as a, styleText$1 as c, getInputCliKeys as i, PluginDriver as l, logger as n, validateCliOptions as o, getCliSchemaInfo as r, validateOption as s, createBundlerOptions as t };
|