rolldown 0.13.2-snapshot-a292401-20241105072341 → 0.14.0
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 +3 -58
- package/dist/cjs/experimental-index.cjs +1 -2
- package/dist/cjs/index.cjs +1 -1
- package/dist/cjs/parallel-plugin-worker.cjs +1 -1
- package/dist/esm/cli.mjs +3 -58
- package/dist/esm/experimental-index.mjs +2 -2
- package/dist/esm/index.mjs +1 -1
- package/dist/esm/parallel-plugin-worker.mjs +1 -1
- package/dist/shared/rolldown-binding.wasi.cjs +71 -71
- package/dist/shared/{src_index-CngklO4k.cjs → src_index-3pqhEViJ.cjs} +233 -229
- package/dist/shared/{src_index-uxgg1P7A.mjs → src_index-ywYMd4vB.mjs} +234 -229
- package/dist/types/binding.d.ts +2 -5
- package/dist/types/cli/arguments/schema.d.ts +3 -6
- package/dist/types/experimental-index.d.ts +1 -1
- package/dist/types/options/input-options.d.ts +0 -6
- package/dist/types/options/normalized-output-options.d.ts +1 -1
- package/dist/types/options/output-options.d.ts +7 -7
- package/dist/types/plugin/builtin-plugin.d.ts +0 -4
- package/dist/types/plugin/plugin-driver.d.ts +1 -0
- package/dist/types/rolldown-build.d.ts +0 -2
- package/package.json +14 -23
package/dist/cjs/cli.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
const { __export, __toESM } = require("../shared/chunk-JoMxl5V2.cjs");
|
|
4
|
-
const { LogLevelOptionSchema, LogLevelSchema, LogLevelWithErrorSchema, RollupLogSchema, RollupLogWithStringSchema, arraify, description, rolldown, version, watch } = require("../shared/src_index-
|
|
4
|
+
const { LogLevelOptionSchema, LogLevelSchema, LogLevelWithErrorSchema, RollupLogSchema, RollupLogWithStringSchema, arraify, description, rolldown, version, watch } = require("../shared/src_index-3pqhEViJ.cjs");
|
|
5
5
|
const { createConsola } = require("../shared/consola.36c0034f-HcmWcfPe.cjs");
|
|
6
6
|
const { default: nodePath, default: path } = __toESM(require("node:path"));
|
|
7
7
|
const { ZodFirstPartyTypeKind, ZodFirstPartyTypeKind: ZodFirstPartyTypeKind$1, ZodFirstPartyTypeKind: ZodFirstPartyTypeKind$2, z, z: z$1, z: z$2, z: z$3 } = __toESM(require("zod"));
|
|
@@ -10,10 +10,6 @@ const { performance } = __toESM(require("node:perf_hooks"));
|
|
|
10
10
|
const { pathToFileURL } = __toESM(require("node:url"));
|
|
11
11
|
const { parseArgs } = __toESM(require("node:util"));
|
|
12
12
|
const tty = __toESM(require("node:tty"));
|
|
13
|
-
const { createServer } = __toESM(require("node:http"));
|
|
14
|
-
const { WebSocketServer } = __toESM(require("ws"));
|
|
15
|
-
const { default: connect } = __toESM(require("connect"));
|
|
16
|
-
const { default: WatchPack } = __toESM(require("watchpack"));
|
|
17
13
|
|
|
18
14
|
//#region src/cli/utils.ts
|
|
19
15
|
const logger = process.env.ROLLDOWN_TEST ? createTestingLogger() : createConsola({formatOptions: {date: false}});
|
|
@@ -386,10 +382,7 @@ async function bundleInner(options$1, cliOptions) {
|
|
|
386
382
|
...options$1,
|
|
387
383
|
...cliOptions.input
|
|
388
384
|
});
|
|
389
|
-
const bundleOutput =
|
|
390
|
-
...options$1?.output,
|
|
391
|
-
...cliOptions.output
|
|
392
|
-
}) : await build.write({
|
|
385
|
+
const bundleOutput = await build.write({
|
|
393
386
|
...options$1?.output,
|
|
394
387
|
...cliOptions.output
|
|
395
388
|
});
|
|
@@ -398,53 +391,6 @@ async function bundleInner(options$1, cliOptions) {
|
|
|
398
391
|
logger.log(``);
|
|
399
392
|
const duration = endTime - startTime;
|
|
400
393
|
logger.success(`Finished in ${bold(ms(duration))}`);
|
|
401
|
-
if (options$1.dev) {
|
|
402
|
-
const cwd = options$1.cwd ?? process.cwd();
|
|
403
|
-
const outputDir = options$1.output?.dir ?? "dist";
|
|
404
|
-
const app = connect();
|
|
405
|
-
const virtualFiles = Object.fromEntries(bundleOutput.output.map((chunk) => [chunk.fileName, chunk.type === "chunk" ? chunk.code : chunk.source,]));
|
|
406
|
-
app.use((req, res, next) => {
|
|
407
|
-
if (req.url) {
|
|
408
|
-
const url = req.url === "/" ? "index.html" : req.url.slice(1);
|
|
409
|
-
const virtualFile = virtualFiles[url];
|
|
410
|
-
if (virtualFile) {
|
|
411
|
-
res.end(virtualFile);
|
|
412
|
-
} else {
|
|
413
|
-
console.log(req.url + "not found");
|
|
414
|
-
next();
|
|
415
|
-
}
|
|
416
|
-
}
|
|
417
|
-
});
|
|
418
|
-
const server = createServer(app);
|
|
419
|
-
const wsServer = new WebSocketServer({server});
|
|
420
|
-
let socket;
|
|
421
|
-
wsServer.on("connection", function connection(ws) {
|
|
422
|
-
socket = ws;
|
|
423
|
-
logger.log(`Ws connected`);
|
|
424
|
-
ws.on("error", console.error);
|
|
425
|
-
});
|
|
426
|
-
logger.log(`Dev server running at`, cyan("http://localhost:8080"));
|
|
427
|
-
server.listen(8080);
|
|
428
|
-
logger.log(`Watching for changes...`);
|
|
429
|
-
const watcher = new WatchPack({
|
|
430
|
-
aggregateTimeout: 0,
|
|
431
|
-
ignored: ["**/.git/**", "**/node_modules/**", "**/test-results/**", path.join(cwd, outputDir),]
|
|
432
|
-
});
|
|
433
|
-
watcher.watch({directories: [cwd]});
|
|
434
|
-
watcher.on("change", async (file) => {
|
|
435
|
-
if (file) {
|
|
436
|
-
logger.log(`Found change in ${file}`);
|
|
437
|
-
const [fileName, content] = await build.experimental_hmr_rebuild([file]);
|
|
438
|
-
virtualFiles[fileName] = content;
|
|
439
|
-
if (socket) {
|
|
440
|
-
socket.send(JSON.stringify({
|
|
441
|
-
type: "update",
|
|
442
|
-
url: fileName
|
|
443
|
-
}));
|
|
444
|
-
}
|
|
445
|
-
}
|
|
446
|
-
});
|
|
447
|
-
}
|
|
448
394
|
}
|
|
449
395
|
function printBundleOutputPretty(output) {
|
|
450
396
|
const outputEntries = collectOutputEntries(output.output);
|
|
@@ -1656,7 +1602,6 @@ const inputOptionsSchema = z$2.strictObject({
|
|
|
1656
1602
|
})).optional(),
|
|
1657
1603
|
define: ((z$2.record(z$2.string())).describe("define global variables")).optional(),
|
|
1658
1604
|
inject: (z$2.record((z$2.string()).or(z$2.tuple([z$2.string(), z$2.string()])))).optional(),
|
|
1659
|
-
dev: (z$2.boolean()).optional(),
|
|
1660
1605
|
profilerNames: (z$2.boolean()).optional(),
|
|
1661
1606
|
jsx: jsxOptionsSchema.optional(),
|
|
1662
1607
|
watch: (watchOptionsSchema.or(z$2.literal(false))).optional()
|
|
@@ -1678,7 +1623,7 @@ const inputCliOptionsSchema = (inputOptionsSchema.extend({
|
|
|
1678
1623
|
|
|
1679
1624
|
//#endregion
|
|
1680
1625
|
//#region src/options/output-options.ts
|
|
1681
|
-
const ModuleFormatSchema = ((((((((
|
|
1626
|
+
const ModuleFormatSchema = ((((((((z$1.literal("es")).or(z$1.literal("cjs"))).or(z$1.literal("esm"))).or(z$1.literal("module"))).or(z$1.literal("commonjs"))).or(z$1.literal("iife"))).or(z$1.literal("umd"))).describe(`output format of the generated bundle (supports ${underline("esm")}, cjs, and iife).`)).optional();
|
|
1682
1627
|
const addonFunctionSchema = ((z$1.function()).args(phantom())).returns((z$1.string()).or(z$1.promise(z$1.string())));
|
|
1683
1628
|
const chunkFileNamesFunctionSchema = ((z$1.function()).args(phantom())).returns(z$1.string());
|
|
1684
1629
|
const outputOptionsSchema = z$1.strictObject({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
const { __toESM } = require("../shared/chunk-JoMxl5V2.cjs");
|
|
4
|
-
const { aliasPlugin, buildImportAnalysisPlugin, composeJsPlugins, dynamicImportVarsPlugin, experimental_scan, importGlobPlugin, jsonPlugin, loadFallbackPlugin, manifestPlugin, modulePreloadPolyfillPlugin,
|
|
4
|
+
const { aliasPlugin, buildImportAnalysisPlugin, composeJsPlugins, dynamicImportVarsPlugin, experimental_scan, importGlobPlugin, jsonPlugin, loadFallbackPlugin, manifestPlugin, modulePreloadPolyfillPlugin, replacePlugin, require_binding, transformPlugin, wasmFallbackPlugin, wasmHelperPlugin } = require("../shared/src_index-3pqhEViJ.cjs");
|
|
5
5
|
const { pathToFileURL } = __toESM(require("node:url"));
|
|
6
6
|
|
|
7
7
|
//#region src/plugin/parallel-plugin.ts
|
|
@@ -31,7 +31,6 @@ exports.jsonPlugin = jsonPlugin;
|
|
|
31
31
|
exports.loadFallbackPlugin = loadFallbackPlugin;
|
|
32
32
|
exports.manifestPlugin = manifestPlugin;
|
|
33
33
|
exports.modulePreloadPolyfillPlugin = modulePreloadPolyfillPlugin;
|
|
34
|
-
exports.reactPlugin = reactPlugin;
|
|
35
34
|
exports.replacePlugin = replacePlugin;
|
|
36
35
|
exports.scan = experimental_scan;
|
|
37
36
|
exports.transform = transform;
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
const { VERSION, defineConfig, rolldown, watch } = require("../shared/src_index-
|
|
3
|
+
const { VERSION, defineConfig, rolldown, watch } = require("../shared/src_index-3pqhEViJ.cjs");
|
|
4
4
|
|
|
5
5
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
6
6
|
exports.VERSION = VERSION;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
const { __toESM } = require("../shared/chunk-JoMxl5V2.cjs");
|
|
4
|
-
const { PluginContextData, bindingifyPlugin, require_binding } = require("../shared/src_index-
|
|
4
|
+
const { PluginContextData, bindingifyPlugin, require_binding } = require("../shared/src_index-3pqhEViJ.cjs");
|
|
5
5
|
const { parentPort, workerData } = __toESM(require("node:worker_threads"));
|
|
6
6
|
|
|
7
7
|
//#region src/parallel-plugin-worker.ts
|
package/dist/esm/cli.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import __node_module__ from 'node:module';
|
|
2
2
|
const require = __node_module__.createRequire(import.meta.url)
|
|
3
|
-
import { LogLevelOptionSchema, LogLevelSchema, LogLevelWithErrorSchema, RollupLogSchema, RollupLogWithStringSchema, __export, arraify, description, rolldown, version, watch } from "../shared/src_index-
|
|
3
|
+
import { LogLevelOptionSchema, LogLevelSchema, LogLevelWithErrorSchema, RollupLogSchema, RollupLogWithStringSchema, __export, arraify, description, rolldown, version, watch } from "../shared/src_index-ywYMd4vB.mjs";
|
|
4
4
|
import { createConsola } from "../shared/consola.36c0034f-Xyw7SC_7.mjs";
|
|
5
5
|
import { default as nodePath, default as path } from "node:path";
|
|
6
6
|
import { ZodFirstPartyTypeKind, ZodFirstPartyTypeKind as ZodFirstPartyTypeKind$1, ZodFirstPartyTypeKind as ZodFirstPartyTypeKind$2, z, z as z$1, z as z$2, z as z$3 } from "zod";
|
|
@@ -9,10 +9,6 @@ import { performance } from "node:perf_hooks";
|
|
|
9
9
|
import { pathToFileURL } from "node:url";
|
|
10
10
|
import { parseArgs } from "node:util";
|
|
11
11
|
import * as tty from "node:tty";
|
|
12
|
-
import { createServer } from "node:http";
|
|
13
|
-
import { WebSocketServer } from "ws";
|
|
14
|
-
import { default as connect } from "connect";
|
|
15
|
-
import { default as WatchPack } from "watchpack";
|
|
16
12
|
|
|
17
13
|
//#region src/cli/utils.ts
|
|
18
14
|
const logger = process.env.ROLLDOWN_TEST ? createTestingLogger() : createConsola({formatOptions: {date: false}});
|
|
@@ -385,10 +381,7 @@ async function bundleInner(options$1, cliOptions) {
|
|
|
385
381
|
...options$1,
|
|
386
382
|
...cliOptions.input
|
|
387
383
|
});
|
|
388
|
-
const bundleOutput =
|
|
389
|
-
...options$1?.output,
|
|
390
|
-
...cliOptions.output
|
|
391
|
-
}) : await build.write({
|
|
384
|
+
const bundleOutput = await build.write({
|
|
392
385
|
...options$1?.output,
|
|
393
386
|
...cliOptions.output
|
|
394
387
|
});
|
|
@@ -397,53 +390,6 @@ async function bundleInner(options$1, cliOptions) {
|
|
|
397
390
|
logger.log(``);
|
|
398
391
|
const duration = endTime - startTime;
|
|
399
392
|
logger.success(`Finished in ${bold(ms(duration))}`);
|
|
400
|
-
if (options$1.dev) {
|
|
401
|
-
const cwd = options$1.cwd ?? process.cwd();
|
|
402
|
-
const outputDir = options$1.output?.dir ?? "dist";
|
|
403
|
-
const app = connect();
|
|
404
|
-
const virtualFiles = Object.fromEntries(bundleOutput.output.map((chunk) => [chunk.fileName, chunk.type === "chunk" ? chunk.code : chunk.source,]));
|
|
405
|
-
app.use((req, res, next) => {
|
|
406
|
-
if (req.url) {
|
|
407
|
-
const url = req.url === "/" ? "index.html" : req.url.slice(1);
|
|
408
|
-
const virtualFile = virtualFiles[url];
|
|
409
|
-
if (virtualFile) {
|
|
410
|
-
res.end(virtualFile);
|
|
411
|
-
} else {
|
|
412
|
-
console.log(req.url + "not found");
|
|
413
|
-
next();
|
|
414
|
-
}
|
|
415
|
-
}
|
|
416
|
-
});
|
|
417
|
-
const server = createServer(app);
|
|
418
|
-
const wsServer = new WebSocketServer({server});
|
|
419
|
-
let socket;
|
|
420
|
-
wsServer.on("connection", function connection(ws) {
|
|
421
|
-
socket = ws;
|
|
422
|
-
logger.log(`Ws connected`);
|
|
423
|
-
ws.on("error", console.error);
|
|
424
|
-
});
|
|
425
|
-
logger.log(`Dev server running at`, cyan("http://localhost:8080"));
|
|
426
|
-
server.listen(8080);
|
|
427
|
-
logger.log(`Watching for changes...`);
|
|
428
|
-
const watcher = new WatchPack({
|
|
429
|
-
aggregateTimeout: 0,
|
|
430
|
-
ignored: ["**/.git/**", "**/node_modules/**", "**/test-results/**", path.join(cwd, outputDir),]
|
|
431
|
-
});
|
|
432
|
-
watcher.watch({directories: [cwd]});
|
|
433
|
-
watcher.on("change", async (file) => {
|
|
434
|
-
if (file) {
|
|
435
|
-
logger.log(`Found change in ${file}`);
|
|
436
|
-
const [fileName, content] = await build.experimental_hmr_rebuild([file]);
|
|
437
|
-
virtualFiles[fileName] = content;
|
|
438
|
-
if (socket) {
|
|
439
|
-
socket.send(JSON.stringify({
|
|
440
|
-
type: "update",
|
|
441
|
-
url: fileName
|
|
442
|
-
}));
|
|
443
|
-
}
|
|
444
|
-
}
|
|
445
|
-
});
|
|
446
|
-
}
|
|
447
393
|
}
|
|
448
394
|
function printBundleOutputPretty(output) {
|
|
449
395
|
const outputEntries = collectOutputEntries(output.output);
|
|
@@ -1655,7 +1601,6 @@ const inputOptionsSchema = z$2.strictObject({
|
|
|
1655
1601
|
})).optional(),
|
|
1656
1602
|
define: ((z$2.record(z$2.string())).describe("define global variables")).optional(),
|
|
1657
1603
|
inject: (z$2.record((z$2.string()).or(z$2.tuple([z$2.string(), z$2.string()])))).optional(),
|
|
1658
|
-
dev: (z$2.boolean()).optional(),
|
|
1659
1604
|
profilerNames: (z$2.boolean()).optional(),
|
|
1660
1605
|
jsx: jsxOptionsSchema.optional(),
|
|
1661
1606
|
watch: (watchOptionsSchema.or(z$2.literal(false))).optional()
|
|
@@ -1677,7 +1622,7 @@ const inputCliOptionsSchema = (inputOptionsSchema.extend({
|
|
|
1677
1622
|
|
|
1678
1623
|
//#endregion
|
|
1679
1624
|
//#region src/options/output-options.ts
|
|
1680
|
-
const ModuleFormatSchema = ((((((((
|
|
1625
|
+
const ModuleFormatSchema = ((((((((z$1.literal("es")).or(z$1.literal("cjs"))).or(z$1.literal("esm"))).or(z$1.literal("module"))).or(z$1.literal("commonjs"))).or(z$1.literal("iife"))).or(z$1.literal("umd"))).describe(`output format of the generated bundle (supports ${underline("esm")}, cjs, and iife).`)).optional();
|
|
1681
1626
|
const addonFunctionSchema = ((z$1.function()).args(phantom())).returns((z$1.string()).or(z$1.promise(z$1.string())));
|
|
1682
1627
|
const chunkFileNamesFunctionSchema = ((z$1.function()).args(phantom())).returns(z$1.string());
|
|
1683
1628
|
const outputOptionsSchema = z$1.strictObject({
|
|
@@ -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, aliasPlugin, buildImportAnalysisPlugin, composeJsPlugins, dynamicImportVarsPlugin, experimental_scan, importGlobPlugin, jsonPlugin, loadFallbackPlugin, manifestPlugin, modulePreloadPolyfillPlugin,
|
|
3
|
+
import { __toESM, aliasPlugin, buildImportAnalysisPlugin, composeJsPlugins, dynamicImportVarsPlugin, experimental_scan, importGlobPlugin, jsonPlugin, loadFallbackPlugin, manifestPlugin, modulePreloadPolyfillPlugin, replacePlugin, require_binding, transformPlugin, wasmFallbackPlugin, wasmHelperPlugin } from "../shared/src_index-ywYMd4vB.mjs";
|
|
4
4
|
import { pathToFileURL } from "node:url";
|
|
5
5
|
|
|
6
6
|
//#region src/plugin/parallel-plugin.ts
|
|
@@ -19,4 +19,4 @@ var import_binding = __toESM(require_binding());
|
|
|
19
19
|
|
|
20
20
|
//#endregion
|
|
21
21
|
var transform = import_binding.transform;
|
|
22
|
-
export { aliasPlugin, buildImportAnalysisPlugin, composeJsPlugins as composePlugins, defineParallelPlugin, dynamicImportVarsPlugin, importGlobPlugin, jsonPlugin, loadFallbackPlugin, manifestPlugin, modulePreloadPolyfillPlugin,
|
|
22
|
+
export { aliasPlugin, buildImportAnalysisPlugin, composeJsPlugins as composePlugins, defineParallelPlugin, dynamicImportVarsPlugin, importGlobPlugin, jsonPlugin, loadFallbackPlugin, manifestPlugin, modulePreloadPolyfillPlugin, replacePlugin, experimental_scan as scan, transform, transformPlugin, wasmFallbackPlugin, wasmHelperPlugin };
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import __node_module__ from 'node:module';
|
|
2
2
|
const require = __node_module__.createRequire(import.meta.url)
|
|
3
|
-
import { VERSION, defineConfig, rolldown, watch } from "../shared/src_index-
|
|
3
|
+
import { VERSION, defineConfig, rolldown, watch } from "../shared/src_index-ywYMd4vB.mjs";
|
|
4
4
|
|
|
5
5
|
export { VERSION, defineConfig, rolldown, watch };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import __node_module__ from 'node:module';
|
|
2
2
|
const require = __node_module__.createRequire(import.meta.url)
|
|
3
|
-
import { PluginContextData, __toESM, bindingifyPlugin, require_binding } from "../shared/src_index-
|
|
3
|
+
import { PluginContextData, __toESM, bindingifyPlugin, require_binding } from "../shared/src_index-ywYMd4vB.mjs";
|
|
4
4
|
import { parentPort, workerData } from "node:worker_threads";
|
|
5
5
|
|
|
6
6
|
//#region src/parallel-plugin-worker.ts
|
|
@@ -95,77 +95,77 @@ function __napi_rs_initialize_modules(__napiInstance) {
|
|
|
95
95
|
__napiInstance.exports['__napi_register__isolated_declaration_0']?.()
|
|
96
96
|
__napiInstance.exports['__napi_register__transform_1']?.()
|
|
97
97
|
__napiInstance.exports['__napi_register__Bundler_struct_0']?.()
|
|
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['
|
|
129
|
-
__napiInstance.exports['
|
|
130
|
-
__napiInstance.exports['
|
|
131
|
-
__napiInstance.exports['
|
|
132
|
-
__napiInstance.exports['
|
|
133
|
-
__napiInstance.exports['
|
|
134
|
-
__napiInstance.exports['
|
|
135
|
-
__napiInstance.exports['
|
|
136
|
-
__napiInstance.exports['
|
|
137
|
-
__napiInstance.exports['
|
|
138
|
-
__napiInstance.exports['
|
|
139
|
-
__napiInstance.exports['
|
|
140
|
-
__napiInstance.exports['
|
|
141
|
-
__napiInstance.exports['
|
|
142
|
-
__napiInstance.exports['
|
|
143
|
-
__napiInstance.exports['
|
|
144
|
-
__napiInstance.exports['
|
|
145
|
-
__napiInstance.exports['
|
|
146
|
-
__napiInstance.exports['
|
|
147
|
-
__napiInstance.exports['
|
|
148
|
-
__napiInstance.exports['
|
|
149
|
-
__napiInstance.exports['
|
|
150
|
-
__napiInstance.exports['
|
|
151
|
-
__napiInstance.exports['
|
|
152
|
-
__napiInstance.exports['
|
|
153
|
-
__napiInstance.exports['
|
|
154
|
-
__napiInstance.exports['
|
|
155
|
-
__napiInstance.exports['
|
|
156
|
-
__napiInstance.exports['
|
|
157
|
-
__napiInstance.exports['
|
|
158
|
-
__napiInstance.exports['
|
|
159
|
-
__napiInstance.exports['
|
|
160
|
-
__napiInstance.exports['
|
|
161
|
-
__napiInstance.exports['
|
|
162
|
-
__napiInstance.exports['
|
|
163
|
-
__napiInstance.exports['
|
|
164
|
-
__napiInstance.exports['
|
|
165
|
-
__napiInstance.exports['
|
|
166
|
-
__napiInstance.exports['
|
|
167
|
-
__napiInstance.exports['
|
|
168
|
-
__napiInstance.exports['
|
|
98
|
+
__napiInstance.exports['__napi_register__Bundler_impl_7']?.()
|
|
99
|
+
__napiInstance.exports['__napi_register__BindingExperimentalOptions_struct_8']?.()
|
|
100
|
+
__napiInstance.exports['__napi_register__BindingInjectImportNamed_struct_9']?.()
|
|
101
|
+
__napiInstance.exports['__napi_register__BindingInjectImportNamespace_struct_10']?.()
|
|
102
|
+
__napiInstance.exports['__napi_register__BindingInputItem_struct_11']?.()
|
|
103
|
+
__napiInstance.exports['__napi_register__BindingWatchOption_struct_12']?.()
|
|
104
|
+
__napiInstance.exports['__napi_register__BindingNotifyOption_struct_13']?.()
|
|
105
|
+
__napiInstance.exports['__napi_register__BindingResolveOptions_struct_14']?.()
|
|
106
|
+
__napiInstance.exports['__napi_register__BindingTreeshake_struct_15']?.()
|
|
107
|
+
__napiInstance.exports['__napi_register__BindingInputOptions_struct_16']?.()
|
|
108
|
+
__napiInstance.exports['__napi_register__BindingAdvancedChunksOptions_struct_17']?.()
|
|
109
|
+
__napiInstance.exports['__napi_register__BindingMatchGroup_struct_18']?.()
|
|
110
|
+
__napiInstance.exports['__napi_register__BindingOutputOptions_struct_19']?.()
|
|
111
|
+
__napiInstance.exports['__napi_register__BindingPluginContext_struct_20']?.()
|
|
112
|
+
__napiInstance.exports['__napi_register__BindingPluginContext_impl_27']?.()
|
|
113
|
+
__napiInstance.exports['__napi_register__BindingPluginContextResolvedId_struct_28']?.()
|
|
114
|
+
__napiInstance.exports['__napi_register__BindingPluginOptions_struct_29']?.()
|
|
115
|
+
__napiInstance.exports['__napi_register__BindingPluginWithIndex_struct_30']?.()
|
|
116
|
+
__napiInstance.exports['__napi_register__BindingTransformPluginContext_struct_31']?.()
|
|
117
|
+
__napiInstance.exports['__napi_register__BindingTransformPluginContext_impl_33']?.()
|
|
118
|
+
__napiInstance.exports['__napi_register__BindingAssetSource_struct_34']?.()
|
|
119
|
+
__napiInstance.exports['__napi_register__BindingEmittedAsset_struct_35']?.()
|
|
120
|
+
__napiInstance.exports['__napi_register__BindingGeneralHookFilter_struct_36']?.()
|
|
121
|
+
__napiInstance.exports['__napi_register__BindingTransformHookFilter_struct_37']?.()
|
|
122
|
+
__napiInstance.exports['__napi_register__BindingHookLoadOutput_struct_38']?.()
|
|
123
|
+
__napiInstance.exports['__napi_register__BindingHookRenderChunkOutput_struct_39']?.()
|
|
124
|
+
__napiInstance.exports['__napi_register__BindingHookResolveIdExtraArgs_struct_40']?.()
|
|
125
|
+
__napiInstance.exports['__napi_register__BindingHookResolveIdOutput_struct_41']?.()
|
|
126
|
+
__napiInstance.exports['__napi_register__BindingHookSideEffects_42']?.()
|
|
127
|
+
__napiInstance.exports['__napi_register__BindingHookTransformOutput_struct_43']?.()
|
|
128
|
+
__napiInstance.exports['__napi_register__BindingPluginContextResolveOptions_struct_44']?.()
|
|
129
|
+
__napiInstance.exports['__napi_register__BindingTransformHookExtraArgs_struct_45']?.()
|
|
130
|
+
__napiInstance.exports['__napi_register__BindingBuiltinPlugin_struct_46']?.()
|
|
131
|
+
__napiInstance.exports['__napi_register__BindingBuiltinPluginName_47']?.()
|
|
132
|
+
__napiInstance.exports['__napi_register__BindingGlobImportPluginConfig_struct_48']?.()
|
|
133
|
+
__napiInstance.exports['__napi_register__BindingManifestPluginConfig_struct_49']?.()
|
|
134
|
+
__napiInstance.exports['__napi_register__BindingModulePreloadPolyfillPluginConfig_struct_50']?.()
|
|
135
|
+
__napiInstance.exports['__napi_register__BindingJsonPluginConfig_struct_51']?.()
|
|
136
|
+
__napiInstance.exports['__napi_register__BindingTransformPluginConfig_struct_52']?.()
|
|
137
|
+
__napiInstance.exports['__napi_register__BindingAliasPluginConfig_struct_53']?.()
|
|
138
|
+
__napiInstance.exports['__napi_register__BindingAliasPluginAlias_struct_54']?.()
|
|
139
|
+
__napiInstance.exports['__napi_register__BindingBuildImportAnalysisPluginConfig_struct_55']?.()
|
|
140
|
+
__napiInstance.exports['__napi_register__BindingReplacePluginConfig_struct_56']?.()
|
|
141
|
+
__napiInstance.exports['__napi_register__BindingPluginOrder_57']?.()
|
|
142
|
+
__napiInstance.exports['__napi_register__BindingPluginHookMeta_struct_58']?.()
|
|
143
|
+
__napiInstance.exports['__napi_register__ParallelJsPluginRegistry_struct_59']?.()
|
|
144
|
+
__napiInstance.exports['__napi_register__ParallelJsPluginRegistry_impl_61']?.()
|
|
145
|
+
__napiInstance.exports['__napi_register__register_plugins_62']?.()
|
|
146
|
+
__napiInstance.exports['__napi_register__BindingLog_struct_63']?.()
|
|
147
|
+
__napiInstance.exports['__napi_register__BindingLogLevel_64']?.()
|
|
148
|
+
__napiInstance.exports['__napi_register__BindingModuleInfo_struct_65']?.()
|
|
149
|
+
__napiInstance.exports['__napi_register__BindingModuleInfo_impl_67']?.()
|
|
150
|
+
__napiInstance.exports['__napi_register__BindingOutputAsset_struct_68']?.()
|
|
151
|
+
__napiInstance.exports['__napi_register__BindingOutputAsset_impl_73']?.()
|
|
152
|
+
__napiInstance.exports['__napi_register__JsOutputAsset_struct_74']?.()
|
|
153
|
+
__napiInstance.exports['__napi_register__BindingOutputChunk_struct_75']?.()
|
|
154
|
+
__napiInstance.exports['__napi_register__BindingOutputChunk_impl_90']?.()
|
|
155
|
+
__napiInstance.exports['__napi_register__JsOutputChunk_struct_91']?.()
|
|
156
|
+
__napiInstance.exports['__napi_register__BindingOutputs_struct_92']?.()
|
|
157
|
+
__napiInstance.exports['__napi_register__BindingOutputs_impl_95']?.()
|
|
158
|
+
__napiInstance.exports['__napi_register__JsChangedOutputs_struct_96']?.()
|
|
159
|
+
__napiInstance.exports['__napi_register__PreRenderedChunk_struct_97']?.()
|
|
160
|
+
__napiInstance.exports['__napi_register__RenderedChunk_struct_98']?.()
|
|
161
|
+
__napiInstance.exports['__napi_register__BindingRenderedModule_struct_99']?.()
|
|
162
|
+
__napiInstance.exports['__napi_register__AliasItem_struct_100']?.()
|
|
163
|
+
__napiInstance.exports['__napi_register__ExtensionAliasItem_struct_101']?.()
|
|
164
|
+
__napiInstance.exports['__napi_register__BindingSourcemap_struct_102']?.()
|
|
165
|
+
__napiInstance.exports['__napi_register__BindingJsonSourcemap_struct_103']?.()
|
|
166
|
+
__napiInstance.exports['__napi_register__BindingWatcher_struct_104']?.()
|
|
167
|
+
__napiInstance.exports['__napi_register__BindingWatcher_impl_107']?.()
|
|
168
|
+
__napiInstance.exports['__napi_register__BindingWatcherEvent_108']?.()
|
|
169
169
|
}
|
|
170
170
|
module.exports.BindingLog = __napiModule.exports.BindingLog
|
|
171
171
|
module.exports.BindingModuleInfo = __napiModule.exports.BindingModuleInfo
|