rolldown 0.11.0 → 0.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/cli.cjs +5 -6
- package/dist/cjs/index.cjs +12 -14
- package/dist/cjs/parallel-plugin-worker.cjs +2 -3
- package/dist/cjs/parallel-plugin.cjs +2 -7
- package/dist/esm/cli.mjs +4 -4
- package/dist/esm/index.mjs +2 -2
- package/dist/esm/parallel-plugin-worker.mjs +1 -1
- package/dist/shared/{chunk-IY9XHjk1.cjs → chunk-1xb6WR3y.cjs} +0 -2
- package/dist/shared/{consola_36c0034f-5LhwiLE2.mjs → consola.36c0034f-QyAKDJpW.mjs} +1 -1
- package/dist/shared/{consola_36c0034f-WXb1k8ME.cjs → consola.36c0034f-p4CNcyTx.cjs} +2 -2
- package/dist/shared/{prompt-qKiYiowG.mjs → prompt-LYk41n1z.mjs} +1 -1
- package/dist/shared/{prompt-v8IJTptZ.cjs → prompt-vP5sHLso.cjs} +4 -5
- package/dist/shared/{rolldown-Jq_CbZp4.cjs → rolldown-Umx4sUze.cjs} +1 -1
- package/dist/shared/rolldown-binding.wasi.cjs +49 -36
- package/dist/shared/{rolldown-RjvHfXoR.mjs → rolldown-dJWM6yRj.mjs} +1 -1
- package/dist/shared/{utils_index-PYoHCZRc.cjs → utils_index-CMJWXDsM.cjs} +117 -89
- package/dist/shared/{utils_index-DAvBTBzR.mjs → utils_index-Xz4uA-99.mjs} +116 -88
- package/dist/types/binding.d.ts +25 -18
- package/dist/types/options/input-options.d.ts +3 -3
- package/dist/types/options/normalized-input-options.d.ts +1 -1
- package/dist/types/plugin/bindingify-build-hooks.d.ts +8 -7
- package/dist/types/plugin/bindingify-output-hooks.d.ts +7 -6
- package/dist/types/plugin/index.d.ts +2 -1
- package/dist/types/plugin/plugin-context-data.d.ts +10 -0
- package/dist/types/plugin/plugin-context.d.ts +2 -3
- package/dist/types/plugin/transfrom-plugin-context.d.ts +7 -11
- package/dist/types/treeshake/index.d.ts +5 -6
- package/dist/types/types/module-info.d.ts +2 -1
- package/dist/types/utils/transform-module-info.d.ts +2 -1
- package/package.json +14 -14
package/dist/cjs/cli.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
const { __commonJSMin, __export,
|
|
2
|
-
const { arraify } = require("../shared/utils_index-
|
|
3
|
-
const { rolldown } = require("../shared/rolldown-
|
|
4
|
-
const { colors, consola, createConsola } = require("../shared/
|
|
1
|
+
const { __commonJSMin, __export, __toESM } = require("../shared/chunk-1xb6WR3y.cjs");
|
|
2
|
+
const { arraify } = require("../shared/utils_index-CMJWXDsM.cjs");
|
|
3
|
+
const { rolldown } = require("../shared/rolldown-Umx4sUze.cjs");
|
|
4
|
+
const { colors, consola, createConsola } = require("../shared/consola.36c0034f-p4CNcyTx.cjs");
|
|
5
5
|
const { pathToFileURL } = __toESM(require("node:url"));
|
|
6
6
|
const { default: nodePath } = __toESM(require("node:path"));
|
|
7
7
|
const { default: process$1, env } = __toESM(require("node:process"));
|
|
@@ -702,7 +702,7 @@ function withTrailingSlash(path) {
|
|
|
702
702
|
|
|
703
703
|
//#endregion
|
|
704
704
|
//#region package.json
|
|
705
|
-
const version = '0.11.
|
|
705
|
+
const version = '0.11.1';
|
|
706
706
|
const description = 'Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.';
|
|
707
707
|
const keywords = ['webpack', 'parcel', 'esbuild', 'rollup', 'bundler', 'rolldown'];
|
|
708
708
|
const files = ['bin', 'cli', 'dist', '!dist/*.node'];
|
|
@@ -723,7 +723,6 @@ const DEFAULT_CONFIG_FILENAME = 'rolldown.config.js';
|
|
|
723
723
|
|
|
724
724
|
//#endregion
|
|
725
725
|
//#region src/cli/index.ts
|
|
726
|
-
var cli_index_ns = {};
|
|
727
726
|
var import_lib_index = __toESM(require_lib_index());
|
|
728
727
|
const main = defineCommand({
|
|
729
728
|
meta: {
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
const {
|
|
4
|
-
const { BuiltinGlobImportPlugin, BuiltinWasmPlugin, require_binding } = require("../shared/utils_index-
|
|
5
|
-
const { experimental_scan, rolldown } = require("../shared/rolldown-
|
|
3
|
+
const { __toESM } = require("../shared/chunk-1xb6WR3y.cjs");
|
|
4
|
+
const { BuiltinGlobImportPlugin, BuiltinWasmPlugin, require_binding } = require("../shared/utils_index-CMJWXDsM.cjs");
|
|
5
|
+
const { experimental_scan, rolldown } = require("../shared/rolldown-Umx4sUze.cjs");
|
|
6
6
|
const { pathToFileURL } = __toESM(require("node:url"));
|
|
7
7
|
|
|
8
8
|
//#region src/plugin/index.ts
|
|
@@ -23,17 +23,15 @@ function defineConfig(config) {
|
|
|
23
23
|
|
|
24
24
|
//#endregion
|
|
25
25
|
//#region src/index.ts
|
|
26
|
-
var src_index_ns = {};
|
|
27
|
-
__export(src_index_ns, {
|
|
28
|
-
BuiltinGlobImportPlugin: () => BuiltinGlobImportPlugin,
|
|
29
|
-
BuiltinWasmPlugin: () => BuiltinWasmPlugin,
|
|
30
|
-
defineConfig: () => defineConfig,
|
|
31
|
-
defineParallelPlugin: () => defineParallelPlugin,
|
|
32
|
-
experimental_scan: () => experimental_scan,
|
|
33
|
-
rolldown: () => rolldown,
|
|
34
|
-
transform: () => import_binding.transform
|
|
35
|
-
});
|
|
36
26
|
var import_binding = __toESM(require_binding());
|
|
37
27
|
|
|
38
28
|
//#endregion
|
|
39
|
-
|
|
29
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
30
|
+
var transform = import_binding.transform;
|
|
31
|
+
exports.BuiltinGlobImportPlugin = BuiltinGlobImportPlugin;
|
|
32
|
+
exports.BuiltinWasmPlugin = BuiltinWasmPlugin;
|
|
33
|
+
exports.defineConfig = defineConfig;
|
|
34
|
+
exports.defineParallelPlugin = defineParallelPlugin;
|
|
35
|
+
exports.experimental_scan = experimental_scan;
|
|
36
|
+
exports.rolldown = rolldown;
|
|
37
|
+
exports.transform = transform;
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
const {
|
|
4
|
-
const { bindingifyPlugin, require_binding } = require("../shared/utils_index-
|
|
3
|
+
const { __toESM } = require("../shared/chunk-1xb6WR3y.cjs");
|
|
4
|
+
const { bindingifyPlugin, require_binding } = require("../shared/utils_index-CMJWXDsM.cjs");
|
|
5
5
|
const { parentPort, workerData } = __toESM(require("node:worker_threads"));
|
|
6
6
|
|
|
7
7
|
//#region src/parallel-plugin-worker.ts
|
|
8
|
-
var parallel_plugin_worker_ns = {};
|
|
9
8
|
var import_binding = __toESM(require_binding());
|
|
10
9
|
const { registryId, pluginInfos, threadNumber } = workerData;
|
|
11
10
|
(async () => {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
const { __export, __toCommonJS } = require("../shared/chunk-IY9XHjk1.cjs");
|
|
4
3
|
|
|
5
4
|
//#region src/plugin/parallel-plugin-implementation.ts
|
|
6
5
|
function defineParallelPluginImplementation(plugin) {
|
|
@@ -8,9 +7,5 @@ function defineParallelPluginImplementation(plugin) {
|
|
|
8
7
|
}
|
|
9
8
|
|
|
10
9
|
//#endregion
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
__export(parallel_plugin_ns, {defineParallelPluginImplementation: () => defineParallelPluginImplementation});
|
|
14
|
-
|
|
15
|
-
//#endregion
|
|
16
|
-
module.exports = __toCommonJS(parallel_plugin_ns)
|
|
10
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
11
|
+
exports.defineParallelPluginImplementation = defineParallelPluginImplementation;
|
package/dist/esm/cli.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import __node_module__ from 'node:module';
|
|
2
2
|
const require = __node_module__.createRequire(import.meta.url)
|
|
3
|
-
import { __commonJSMin, __export, __toESM, arraify } from "../shared/utils_index-
|
|
4
|
-
import { rolldown } from "../shared/rolldown-
|
|
5
|
-
import { colors, consola, createConsola } from "../shared/
|
|
3
|
+
import { __commonJSMin, __export, __toESM, arraify } from "../shared/utils_index-Xz4uA-99.mjs";
|
|
4
|
+
import { rolldown } from "../shared/rolldown-dJWM6yRj.mjs";
|
|
5
|
+
import { colors, consola, createConsola } from "../shared/consola.36c0034f-QyAKDJpW.mjs";
|
|
6
6
|
import { pathToFileURL } from "node:url";
|
|
7
7
|
import { default as nodePath } from "node:path";
|
|
8
8
|
import { default as process$1, env } from "node:process";
|
|
@@ -703,7 +703,7 @@ function withTrailingSlash(path) {
|
|
|
703
703
|
|
|
704
704
|
//#endregion
|
|
705
705
|
//#region package.json
|
|
706
|
-
const version = '0.11.
|
|
706
|
+
const version = '0.11.1';
|
|
707
707
|
const description = 'Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.';
|
|
708
708
|
const keywords = ['webpack', 'parcel', 'esbuild', 'rollup', 'bundler', 'rolldown'];
|
|
709
709
|
const files = ['bin', 'cli', 'dist', '!dist/*.node'];
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import __node_module__ from 'node:module';
|
|
2
2
|
const require = __node_module__.createRequire(import.meta.url)
|
|
3
|
-
import { BuiltinGlobImportPlugin, BuiltinWasmPlugin, __toESM, require_binding } from "../shared/utils_index-
|
|
4
|
-
import { experimental_scan, rolldown } from "../shared/rolldown-
|
|
3
|
+
import { BuiltinGlobImportPlugin, BuiltinWasmPlugin, __toESM, require_binding } from "../shared/utils_index-Xz4uA-99.mjs";
|
|
4
|
+
import { experimental_scan, rolldown } from "../shared/rolldown-dJWM6yRj.mjs";
|
|
5
5
|
import { pathToFileURL } from "node:url";
|
|
6
6
|
|
|
7
7
|
//#region src/plugin/index.ts
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import __node_module__ from 'node:module';
|
|
2
2
|
const require = __node_module__.createRequire(import.meta.url)
|
|
3
|
-
import { __toESM, bindingifyPlugin, require_binding } from "../shared/utils_index-
|
|
3
|
+
import { __toESM, bindingifyPlugin, require_binding } from "../shared/utils_index-Xz4uA-99.mjs";
|
|
4
4
|
import { parentPort, workerData } from "node:worker_threads";
|
|
5
5
|
|
|
6
6
|
//#region src/parallel-plugin-worker.ts
|
|
@@ -28,11 +28,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
28
28
|
value: mod,
|
|
29
29
|
enumerable: true
|
|
30
30
|
}) : target, mod));
|
|
31
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, '__esModule', {value: true}), mod);
|
|
32
31
|
|
|
33
32
|
//#endregion
|
|
34
33
|
|
|
35
34
|
exports.__commonJSMin = __commonJSMin;
|
|
36
35
|
exports.__export = __export;
|
|
37
|
-
exports.__toCommonJS = __toCommonJS;
|
|
38
36
|
exports.__toESM = __toESM;
|
|
@@ -876,7 +876,7 @@ function createConsola(options = {}) {
|
|
|
876
876
|
defaults: {level},
|
|
877
877
|
stdout: process.stdout,
|
|
878
878
|
stderr: process.stderr,
|
|
879
|
-
prompt: (...args) => import('./prompt-
|
|
879
|
+
prompt: (...args) => import('./prompt-LYk41n1z.mjs').then((m) => m.prompt(...args)),
|
|
880
880
|
reporters: options.reporters || [options.fancy ?? !(isCI || isTest) ? new FancyReporter() : new BasicReporter()],
|
|
881
881
|
...options
|
|
882
882
|
});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
const { __toESM } = require("./chunk-
|
|
3
|
+
const { __toESM } = require("./chunk-1xb6WR3y.cjs");
|
|
4
4
|
const { sep } = __toESM(require("node:path"));
|
|
5
5
|
const { default: process$1 } = __toESM(require("node:process"));
|
|
6
6
|
const { formatWithOptions } = __toESM(require("node:util"));
|
|
@@ -877,7 +877,7 @@ function createConsola(options = {}) {
|
|
|
877
877
|
defaults: {level},
|
|
878
878
|
stdout: process.stdout,
|
|
879
879
|
stderr: process.stderr,
|
|
880
|
-
prompt: (...args) => import('./prompt-
|
|
880
|
+
prompt: (...args) => import('./prompt-vP5sHLso.cjs').then((m) => m.prompt(...args)),
|
|
881
881
|
reporters: options.reporters || [options.fancy ?? !(isCI || isTest) ? new FancyReporter() : new BasicReporter()],
|
|
882
882
|
...options
|
|
883
883
|
});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import __node_module__ from 'node:module';
|
|
2
2
|
const require = __node_module__.createRequire(import.meta.url)
|
|
3
|
-
import { colors, getDefaultExportFromCjs, isUnicodeSupported } from "./
|
|
3
|
+
import { colors, getDefaultExportFromCjs, isUnicodeSupported } from "./consola.36c0034f-QyAKDJpW.mjs";
|
|
4
4
|
import "node:path";
|
|
5
5
|
import { stdin, stdout } from "node:process";
|
|
6
6
|
import "node:util";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
const {
|
|
4
|
-
const { colors, getDefaultExportFromCjs, isUnicodeSupported } = require("./
|
|
3
|
+
const { __toESM } = require("./chunk-1xb6WR3y.cjs");
|
|
4
|
+
const { colors, getDefaultExportFromCjs, isUnicodeSupported } = require("./consola.36c0034f-p4CNcyTx.cjs");
|
|
5
5
|
require("node:path");
|
|
6
6
|
const { stdin, stdout } = __toESM(require("node:process"));
|
|
7
7
|
require("node:util");
|
|
@@ -9,8 +9,6 @@ const { WriteStream, default: require$$0 } = __toESM(require("node:tty"));
|
|
|
9
9
|
const { default: f } = __toESM(require("node:readline"));
|
|
10
10
|
|
|
11
11
|
//#region ../../node_modules/.pnpm/consola@3.2.3/node_modules/consola/dist/chunks/prompt.mjs
|
|
12
|
-
var prompt_ns = {};
|
|
13
|
-
__export(prompt_ns, {prompt: () => prompt});
|
|
14
12
|
const ESC = '\x1B';
|
|
15
13
|
const CSI = `${ESC}[`;
|
|
16
14
|
const beep = '\x07';
|
|
@@ -807,4 +805,5 @@ async function prompt(message, opts = {}) {
|
|
|
807
805
|
}
|
|
808
806
|
|
|
809
807
|
//#endregion
|
|
810
|
-
|
|
808
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
809
|
+
exports.prompt = prompt;
|
|
@@ -82,6 +82,16 @@ const { instance: __napiInstance, module: __wasiModule, napiModule: __napiModule
|
|
|
82
82
|
})
|
|
83
83
|
|
|
84
84
|
function __napi_rs_initialize_modules(__napiInstance) {
|
|
85
|
+
__napiInstance.exports['__napi_register__IsolatedDeclarationsResult_struct_0']?.()
|
|
86
|
+
__napiInstance.exports['__napi_register__isolated_declaration_1']?.()
|
|
87
|
+
__napiInstance.exports['__napi_register__TypeScriptBindingOptions_struct_2']?.()
|
|
88
|
+
__napiInstance.exports['__napi_register__ReactBindingOptions_struct_3']?.()
|
|
89
|
+
__napiInstance.exports['__napi_register__ArrowFunctionsBindingOptions_struct_4']?.()
|
|
90
|
+
__napiInstance.exports['__napi_register__ES2015BindingOptions_struct_5']?.()
|
|
91
|
+
__napiInstance.exports['__napi_register__TransformOptions_struct_6']?.()
|
|
92
|
+
__napiInstance.exports['__napi_register__Sourcemap_struct_7']?.()
|
|
93
|
+
__napiInstance.exports['__napi_register__TransformResult_struct_8']?.()
|
|
94
|
+
__napiInstance.exports['__napi_register__transform_9']?.()
|
|
85
95
|
__napiInstance.exports['__napi_register__Bundler_struct_0']?.()
|
|
86
96
|
__napiInstance.exports['__napi_register__Bundler_impl_5']?.()
|
|
87
97
|
__napiInstance.exports['__napi_register__BindingInputItem_struct_6']?.()
|
|
@@ -90,42 +100,43 @@ function __napi_rs_initialize_modules(__napiInstance) {
|
|
|
90
100
|
__napiInstance.exports['__napi_register__BindingInputOptions_struct_9']?.()
|
|
91
101
|
__napiInstance.exports['__napi_register__BindingOutputOptions_struct_10']?.()
|
|
92
102
|
__napiInstance.exports['__napi_register__BindingPluginContext_struct_11']?.()
|
|
93
|
-
__napiInstance.exports['
|
|
94
|
-
__napiInstance.exports['
|
|
95
|
-
__napiInstance.exports['
|
|
96
|
-
__napiInstance.exports['
|
|
97
|
-
__napiInstance.exports['
|
|
98
|
-
__napiInstance.exports['
|
|
99
|
-
__napiInstance.exports['
|
|
100
|
-
__napiInstance.exports['
|
|
101
|
-
__napiInstance.exports['
|
|
102
|
-
__napiInstance.exports['
|
|
103
|
-
__napiInstance.exports['
|
|
104
|
-
__napiInstance.exports['
|
|
105
|
-
__napiInstance.exports['
|
|
106
|
-
__napiInstance.exports['
|
|
107
|
-
__napiInstance.exports['
|
|
108
|
-
__napiInstance.exports['
|
|
109
|
-
__napiInstance.exports['
|
|
110
|
-
__napiInstance.exports['
|
|
111
|
-
__napiInstance.exports['
|
|
112
|
-
__napiInstance.exports['
|
|
113
|
-
__napiInstance.exports['
|
|
114
|
-
__napiInstance.exports['
|
|
115
|
-
__napiInstance.exports['
|
|
116
|
-
__napiInstance.exports['
|
|
117
|
-
__napiInstance.exports['
|
|
118
|
-
__napiInstance.exports['
|
|
119
|
-
__napiInstance.exports['
|
|
120
|
-
__napiInstance.exports['
|
|
121
|
-
__napiInstance.exports['
|
|
122
|
-
__napiInstance.exports['
|
|
123
|
-
__napiInstance.exports['
|
|
124
|
-
__napiInstance.exports['
|
|
125
|
-
__napiInstance.exports['
|
|
126
|
-
__napiInstance.exports['
|
|
127
|
-
__napiInstance.exports['
|
|
128
|
-
__napiInstance.exports['
|
|
103
|
+
__napiInstance.exports['__napi_register__BindingPluginContext_impl_17']?.()
|
|
104
|
+
__napiInstance.exports['__napi_register__BindingPluginContextResolvedId_struct_18']?.()
|
|
105
|
+
__napiInstance.exports['__napi_register__BindingPluginOptions_struct_19']?.()
|
|
106
|
+
__napiInstance.exports['__napi_register__BindingPluginWithIndex_struct_20']?.()
|
|
107
|
+
__napiInstance.exports['__napi_register__BindingTransformPluginContext_struct_21']?.()
|
|
108
|
+
__napiInstance.exports['__napi_register__BindingTransformPluginContext_impl_23']?.()
|
|
109
|
+
__napiInstance.exports['__napi_register__BindingAssetSource_struct_24']?.()
|
|
110
|
+
__napiInstance.exports['__napi_register__BindingEmittedAsset_struct_25']?.()
|
|
111
|
+
__napiInstance.exports['__napi_register__BindingHookLoadOutput_struct_26']?.()
|
|
112
|
+
__napiInstance.exports['__napi_register__BindingHookRenderChunkOutput_struct_27']?.()
|
|
113
|
+
__napiInstance.exports['__napi_register__BindingHookResolveIdExtraOptions_struct_28']?.()
|
|
114
|
+
__napiInstance.exports['__napi_register__BindingHookResolveIdOutput_struct_29']?.()
|
|
115
|
+
__napiInstance.exports['__napi_register__BindingHookSideEffects_30']?.()
|
|
116
|
+
__napiInstance.exports['__napi_register__BindingHookTransformOutput_struct_31']?.()
|
|
117
|
+
__napiInstance.exports['__napi_register__BindingPluginContextResolveOptions_struct_32']?.()
|
|
118
|
+
__napiInstance.exports['__napi_register__BindingBuiltinPlugin_struct_33']?.()
|
|
119
|
+
__napiInstance.exports['__napi_register__BindingBuiltinPluginName_34']?.()
|
|
120
|
+
__napiInstance.exports['__napi_register__ParallelJsPluginRegistry_struct_35']?.()
|
|
121
|
+
__napiInstance.exports['__napi_register__ParallelJsPluginRegistry_impl_37']?.()
|
|
122
|
+
__napiInstance.exports['__napi_register__register_plugins_38']?.()
|
|
123
|
+
__napiInstance.exports['__napi_register__BindingLog_struct_39']?.()
|
|
124
|
+
__napiInstance.exports['__napi_register__BindingLogLevel_40']?.()
|
|
125
|
+
__napiInstance.exports['__napi_register__BindingModuleInfo_struct_41']?.()
|
|
126
|
+
__napiInstance.exports['__napi_register__BindingModuleInfo_impl_43']?.()
|
|
127
|
+
__napiInstance.exports['__napi_register__BindingOutputAsset_struct_44']?.()
|
|
128
|
+
__napiInstance.exports['__napi_register__BindingOutputAsset_impl_48']?.()
|
|
129
|
+
__napiInstance.exports['__napi_register__BindingOutputChunk_struct_49']?.()
|
|
130
|
+
__napiInstance.exports['__napi_register__BindingOutputChunk_impl_67']?.()
|
|
131
|
+
__napiInstance.exports['__napi_register__BindingOutputs_struct_68']?.()
|
|
132
|
+
__napiInstance.exports['__napi_register__BindingOutputs_impl_72']?.()
|
|
133
|
+
__napiInstance.exports['__napi_register__FinalBindingOutputs_struct_73']?.()
|
|
134
|
+
__napiInstance.exports['__napi_register__FinalBindingOutputs_impl_76']?.()
|
|
135
|
+
__napiInstance.exports['__napi_register__RenderedChunk_struct_77']?.()
|
|
136
|
+
__napiInstance.exports['__napi_register__BindingRenderedModule_struct_78']?.()
|
|
137
|
+
__napiInstance.exports['__napi_register__AliasItem_struct_79']?.()
|
|
138
|
+
__napiInstance.exports['__napi_register__BindingSourcemap_struct_80']?.()
|
|
139
|
+
__napiInstance.exports['__napi_register__BindingJSONSourcemap_struct_81']?.()
|
|
129
140
|
}
|
|
130
141
|
module.exports.BindingLog = __napiModule.exports.BindingLog
|
|
131
142
|
module.exports.BindingModuleInfo = __napiModule.exports.BindingModuleInfo
|
|
@@ -140,4 +151,6 @@ module.exports.ParallelJsPluginRegistry = __napiModule.exports.ParallelJsPluginR
|
|
|
140
151
|
module.exports.BindingBuiltinPluginName = __napiModule.exports.BindingBuiltinPluginName
|
|
141
152
|
module.exports.BindingHookSideEffects = __napiModule.exports.BindingHookSideEffects
|
|
142
153
|
module.exports.BindingLogLevel = __napiModule.exports.BindingLogLevel
|
|
154
|
+
module.exports.isolatedDeclaration = __napiModule.exports.isolatedDeclaration
|
|
143
155
|
module.exports.registerPlugins = __napiModule.exports.registerPlugins
|
|
156
|
+
module.exports.transform = __napiModule.exports.transform
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import __node_module__ from 'node:module';
|
|
2
2
|
const require = __node_module__.createRequire(import.meta.url)
|
|
3
|
-
import { createBundler, transformToRollupOutput } from "./utils_index-
|
|
3
|
+
import { createBundler, transformToRollupOutput } from "./utils_index-Xz4uA-99.mjs";
|
|
4
4
|
|
|
5
5
|
//#region src/rolldown-build.ts
|
|
6
6
|
class RolldownBuild {
|