@rolldown/browser 1.0.0-beta.52 → 1.0.0-beta.53
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/cli.mjs +8 -10
- package/dist/config.d.mts +1 -3
- package/dist/config.mjs +6 -9
- package/dist/{constructors-DW3R_Jog.js → constructors-YnYYKXAq.js} +2 -8
- package/dist/experimental-index.browser.mjs +21 -9
- package/dist/experimental-index.d.mts +20 -8
- package/dist/experimental-index.mjs +23 -14
- package/dist/filter-index.d.mts +1 -3
- package/dist/index.browser.mjs +2 -2
- package/dist/index.d.mts +3 -3
- package/dist/index.mjs +6 -9
- package/dist/{normalize-string-or-regex-BcbPUrYo.js → normalize-string-or-regex-BVvsez4S.js} +41 -4
- package/dist/parallel-plugin-worker.mjs +3 -6
- package/dist/parallel-plugin.d.mts +2 -3
- package/dist/parse-ast-index.d.mts +1 -1
- package/dist/parse-ast-index.mjs +1 -2
- package/dist/plugins-index.browser.mjs +2 -2
- package/dist/plugins-index.d.mts +3 -3
- package/dist/plugins-index.mjs +2 -4
- package/dist/rolldown-binding.wasm32-wasi.wasm +0 -0
- package/dist/{rolldown-build-CUYnBV3u.js → rolldown-build-DdLgyfGg.js} +332 -184
- package/dist/shared/{binding-BKL2JHoJ.d.mts → binding-CY7Z709f.d.mts} +45 -3
- package/dist/shared/{bindingify-input-options-D4i1DYzt.mjs → bindingify-input-options-DcGFRvkp.mjs} +7 -5
- package/dist/shared/{constructors-XFp0WhK3.mjs → constructors-Bi2whoYR.mjs} +2 -8
- package/dist/shared/{constructors-BvaMwihu.d.mts → constructors-S9gqtBdT.d.mts} +3 -5
- package/dist/shared/{define-config-Buedmg9e.d.mts → define-config-CPSppdHs.d.mts} +2 -2
- package/dist/shared/{load-config-C9CjEv2m.mjs → load-config-B09j7Dnd.mjs} +1 -1
- package/dist/shared/{normalize-string-or-regex-D1mB67Iy.mjs → normalize-string-or-regex-Bsz_9HAl.mjs} +41 -4
- package/dist/shared/{parse-ast-index-BSDTTjWT.mjs → parse-ast-index-BOAjpcDq.mjs} +1 -1
- package/dist/shared/{rolldown-build-BWJGpMD0.mjs → rolldown-build-CyazSAHY.mjs} +333 -187
- package/dist/shared/{rolldown-0ID0Q4xL.mjs → rolldown-vJGs7rCs.mjs} +1 -1
- package/dist/shared/{utils-DKydZ4iH.d.mts → utils-m9n-gTFq.d.mts} +1 -1
- package/dist/shared/{watch-CwnSQOS4.mjs → watch-Abdexkk9.mjs} +3 -3
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { l as PluginDriver, s as validateOption, t as RolldownBuild } from "./rolldown-build-
|
|
1
|
+
import { l as PluginDriver, s as validateOption, t as RolldownBuild } from "./rolldown-build-CyazSAHY.mjs";
|
|
2
2
|
|
|
3
3
|
//#region src/api/rolldown/index.ts
|
|
4
4
|
const rolldown = async (input) => {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { o as logMultiplyNotifyOption } from "./logs-CPsamAuj.mjs";
|
|
2
2
|
import { t as arraify } from "./misc-5GYLGQ20.mjs";
|
|
3
|
-
import {
|
|
4
|
-
import { l as PluginDriver, n as createBundlerOptions } from "./rolldown-build-
|
|
5
|
-
import { a as aggregateBindingErrorsIntoJsError } from "./bindingify-input-options-
|
|
3
|
+
import { E as LOG_LEVEL_WARN } from "./normalize-string-or-regex-Bsz_9HAl.mjs";
|
|
4
|
+
import { l as PluginDriver, n as createBundlerOptions } from "./rolldown-build-CyazSAHY.mjs";
|
|
5
|
+
import { a as aggregateBindingErrorsIntoJsError } from "./bindingify-input-options-DcGFRvkp.mjs";
|
|
6
6
|
import { BindingWatcher, shutdownAsyncRuntime } from "../rolldown-binding.wasi.cjs";
|
|
7
7
|
|
|
8
8
|
//#region ../../node_modules/.pnpm/signal-exit@4.1.0/node_modules/signal-exit/dist/mjs/signals.js
|
package/package.json
CHANGED