@rolldown/binding-wasm32-wasi 1.0.0-beta.16 → 1.0.0-beta.17
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/package.json
CHANGED
|
@@ -5,7 +5,6 @@ import {
|
|
|
5
5
|
WASI as __WASI,
|
|
6
6
|
} from '@napi-rs/wasm-runtime'
|
|
7
7
|
import { memfs } from '@napi-rs/wasm-runtime/fs'
|
|
8
|
-
import __wasmUrl from './rolldown-binding.wasm32-wasi.wasm?url'
|
|
9
8
|
|
|
10
9
|
export const { fs: __fs, vol: __volume } = memfs()
|
|
11
10
|
|
|
@@ -17,6 +16,7 @@ const __wasi = new __WASI({
|
|
|
17
16
|
},
|
|
18
17
|
})
|
|
19
18
|
|
|
19
|
+
const __wasmUrl = new URL('./rolldown-binding.wasm32-wasi.wasm', import.meta.url).href
|
|
20
20
|
const __emnapiContext = __emnapiGetDefaultContext()
|
|
21
21
|
|
|
22
22
|
const __sharedMemory = new WebAssembly.Memory({
|
|
@@ -83,6 +83,8 @@ export const moduleRunnerTransform = __napiModule.exports.moduleRunnerTransform
|
|
|
83
83
|
export const transform = __napiModule.exports.transform
|
|
84
84
|
export const BindingBundleEndEventData = __napiModule.exports.BindingBundleEndEventData
|
|
85
85
|
export const BindingBundleErrorEventData = __napiModule.exports.BindingBundleErrorEventData
|
|
86
|
+
export const BindingBundler = __napiModule.exports.BindingBundler
|
|
87
|
+
export const BindingBundlerImpl = __napiModule.exports.BindingBundlerImpl
|
|
86
88
|
export const BindingCallableBuiltinPlugin = __napiModule.exports.BindingCallableBuiltinPlugin
|
|
87
89
|
export const BindingError = __napiModule.exports.BindingError
|
|
88
90
|
export const BindingHmrOutput = __napiModule.exports.BindingHmrOutput
|
|
@@ -99,7 +101,6 @@ export const BindingTransformPluginContext = __napiModule.exports.BindingTransfo
|
|
|
99
101
|
export const BindingWatcher = __napiModule.exports.BindingWatcher
|
|
100
102
|
export const BindingWatcherChangeData = __napiModule.exports.BindingWatcherChangeData
|
|
101
103
|
export const BindingWatcherEvent = __napiModule.exports.BindingWatcherEvent
|
|
102
|
-
export const Bundler = __napiModule.exports.Bundler
|
|
103
104
|
export const ParallelJsPluginRegistry = __napiModule.exports.ParallelJsPluginRegistry
|
|
104
105
|
export const BindingAttachDebugInfo = __napiModule.exports.BindingAttachDebugInfo
|
|
105
106
|
export const BindingBuiltinPluginName = __napiModule.exports.BindingBuiltinPluginName
|
|
@@ -107,6 +107,8 @@ module.exports.moduleRunnerTransform = __napiModule.exports.moduleRunnerTransfor
|
|
|
107
107
|
module.exports.transform = __napiModule.exports.transform
|
|
108
108
|
module.exports.BindingBundleEndEventData = __napiModule.exports.BindingBundleEndEventData
|
|
109
109
|
module.exports.BindingBundleErrorEventData = __napiModule.exports.BindingBundleErrorEventData
|
|
110
|
+
module.exports.BindingBundler = __napiModule.exports.BindingBundler
|
|
111
|
+
module.exports.BindingBundlerImpl = __napiModule.exports.BindingBundlerImpl
|
|
110
112
|
module.exports.BindingCallableBuiltinPlugin = __napiModule.exports.BindingCallableBuiltinPlugin
|
|
111
113
|
module.exports.BindingError = __napiModule.exports.BindingError
|
|
112
114
|
module.exports.BindingHmrOutput = __napiModule.exports.BindingHmrOutput
|
|
@@ -123,7 +125,6 @@ module.exports.BindingTransformPluginContext = __napiModule.exports.BindingTrans
|
|
|
123
125
|
module.exports.BindingWatcher = __napiModule.exports.BindingWatcher
|
|
124
126
|
module.exports.BindingWatcherChangeData = __napiModule.exports.BindingWatcherChangeData
|
|
125
127
|
module.exports.BindingWatcherEvent = __napiModule.exports.BindingWatcherEvent
|
|
126
|
-
module.exports.Bundler = __napiModule.exports.Bundler
|
|
127
128
|
module.exports.ParallelJsPluginRegistry = __napiModule.exports.ParallelJsPluginRegistry
|
|
128
129
|
module.exports.BindingAttachDebugInfo = __napiModule.exports.BindingAttachDebugInfo
|
|
129
130
|
module.exports.BindingBuiltinPluginName = __napiModule.exports.BindingBuiltinPluginName
|
|
Binary file
|