@rolldown/browser 1.0.0-beta.51 → 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-DoUEJY6G.js → constructors-YnYYKXAq.js} +5 -8
- package/dist/experimental-index.browser.mjs +23 -11
- package/dist/experimental-index.d.mts +31 -9
- package/dist/experimental-index.mjs +25 -16
- 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-BXFT9GiS.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-C0UB1WZy.js → rolldown-build-DdLgyfGg.js} +353 -191
- package/dist/shared/{binding-lSvYApx7.d.mts → binding-CY7Z709f.d.mts} +59 -12
- package/dist/shared/{bindingify-input-options-CSdAtTcQ.mjs → bindingify-input-options-DcGFRvkp.mjs} +7 -5
- package/dist/shared/{constructors-DF6M1PTb.mjs → constructors-Bi2whoYR.mjs} +5 -8
- package/dist/shared/{constructors-DgFF472b.d.mts → constructors-S9gqtBdT.d.mts} +4 -5
- package/dist/shared/{define-config-BKu-xa_0.d.mts → define-config-CPSppdHs.d.mts} +23 -10
- package/dist/shared/{load-config-Beo_LOwd.mjs → load-config-B09j7Dnd.mjs} +1 -1
- package/dist/shared/{normalize-string-or-regex-DvECZN2V.mjs → normalize-string-or-regex-Bsz_9HAl.mjs} +41 -4
- package/dist/shared/{parse-ast-index-C_M-Y4oC.mjs → parse-ast-index-BOAjpcDq.mjs} +19 -5
- package/dist/shared/{rolldown-build-DYR94CyF.mjs → rolldown-build-CyazSAHY.mjs} +334 -188
- package/dist/shared/{rolldown-BhV7L6Kg.mjs → rolldown-vJGs7rCs.mjs} +1 -1
- package/dist/shared/{utils-BJWI2OzT.d.mts → utils-m9n-gTFq.d.mts} +1 -1
- package/dist/shared/{watch-Cjxo-3u4.mjs → watch-Abdexkk9.mjs} +3 -3
- package/package.json +5 -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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolldown/browser",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.53",
|
|
4
4
|
"description": "Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.",
|
|
5
5
|
"homepage": "https://rolldown.rs/",
|
|
6
6
|
"type": "module",
|
|
@@ -39,6 +39,10 @@
|
|
|
39
39
|
"browser": "./dist/experimental-index.browser.mjs",
|
|
40
40
|
"default": "./dist/experimental-index.mjs"
|
|
41
41
|
},
|
|
42
|
+
"./plugins": {
|
|
43
|
+
"browser": "./dist/plugins-index.browser.mjs",
|
|
44
|
+
"default": "./dist/plugins-index.mjs"
|
|
45
|
+
},
|
|
42
46
|
"./filter": "./dist/filter-index.mjs",
|
|
43
47
|
"./parallelPlugin": "./dist/parallel-plugin.mjs",
|
|
44
48
|
"./parseAst": "./dist/parse-ast-index.mjs",
|