rolldown 1.0.0-beta.6 → 1.0.0-beta.6-commit.231bdea
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 +69 -65
- package/dist/cjs/experimental-index.cjs +2 -2
- package/dist/cjs/index.cjs +2 -2
- package/dist/cjs/parallel-plugin-worker.cjs +2 -2
- package/dist/cjs/parse-ast-index.cjs +1 -1
- package/dist/esm/cli.mjs +69 -65
- package/dist/esm/experimental-index.mjs +2 -2
- package/dist/esm/index.mjs +2 -2
- package/dist/esm/parallel-plugin-worker.mjs +2 -2
- package/dist/esm/parse-ast-index.mjs +1 -1
- package/dist/shared/{parse-ast-index-D7XtMFo4.cjs → parse-ast-index-BytJf1vj.cjs} +2 -0
- package/dist/shared/{parse-ast-index-CyX8MVZE.mjs → parse-ast-index-D8k04LFo.mjs} +2 -0
- package/dist/shared/{prompt-CxK9euq3.mjs → prompt-C6jWWCza.mjs} +236 -235
- package/dist/shared/{prompt-ZZScCEWI.cjs → prompt-_yrURmmm.cjs} +240 -239
- package/dist/shared/{src-Pitn1YVy.cjs → src-ChN-bJhZ.cjs} +14 -6
- package/dist/shared/{src-CAzFGvqS.mjs → src-CwiTaRcN.mjs} +14 -6
- package/dist/types/binding.d.ts +16 -0
- package/dist/types/utils/create-bundler.d.ts +1 -0
- package/package.json +15 -15
|
@@ -582,6 +582,8 @@ var require_binding = require_chunk.__commonJS({ "src/binding.js"(exports, modul
|
|
|
582
582
|
module.exports.rawTransferSupported = nativeBinding.rawTransferSupported;
|
|
583
583
|
module.exports.registerPlugins = nativeBinding.registerPlugins;
|
|
584
584
|
module.exports.Severity = nativeBinding.Severity;
|
|
585
|
+
module.exports.shutdownAsyncRuntime = nativeBinding.shutdownAsyncRuntime;
|
|
586
|
+
module.exports.startAsyncRuntime = nativeBinding.startAsyncRuntime;
|
|
585
587
|
module.exports.transform = nativeBinding.transform;
|
|
586
588
|
} });
|
|
587
589
|
var import_binding = require_chunk.__toESM(require_binding());
|
|
@@ -608,6 +608,8 @@ var require_binding = __commonJS({ "src/binding.js"(exports, module) {
|
|
|
608
608
|
module.exports.rawTransferSupported = nativeBinding.rawTransferSupported;
|
|
609
609
|
module.exports.registerPlugins = nativeBinding.registerPlugins;
|
|
610
610
|
module.exports.Severity = nativeBinding.Severity;
|
|
611
|
+
module.exports.shutdownAsyncRuntime = nativeBinding.shutdownAsyncRuntime;
|
|
612
|
+
module.exports.startAsyncRuntime = nativeBinding.startAsyncRuntime;
|
|
611
613
|
module.exports.transform = nativeBinding.transform;
|
|
612
614
|
} });
|
|
613
615
|
var import_binding = __toESM(require_binding());
|