@rspack-canary/browser 1.5.9-canary-a915dabc-20251013174148 → 1.6.0-canary-5bacb922-20251015173619
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/Compilation.d.ts +13 -16
- package/dist/config/devServer.d.ts +1 -1
- package/dist/config/types.d.ts +2 -0
- package/dist/index.mjs +927 -960
- package/dist/napi-binding.d.ts +2 -0
- package/dist/rspack.wasm32-wasi.wasm +0 -0
- package/dist/util/fs.d.ts +2 -2
- package/package.json +1 -1
package/dist/napi-binding.d.ts
CHANGED
|
@@ -2488,6 +2488,8 @@ export interface RawModuleRule {
|
|
|
2488
2488
|
rules?: Array<RawModuleRule>
|
|
2489
2489
|
/** Specifies the category of the loader. No value means normal loader. */
|
|
2490
2490
|
enforce?: 'pre' | 'post'
|
|
2491
|
+
/** Whether to extract source maps from the module. */
|
|
2492
|
+
extractSourceMap?: boolean
|
|
2491
2493
|
}
|
|
2492
2494
|
|
|
2493
2495
|
/**
|
|
Binary file
|
package/dist/util/fs.d.ts
CHANGED
|
@@ -326,9 +326,9 @@ export type Open = (file: PathLike, flags: undefined | string | number, callback
|
|
|
326
326
|
export type IntermediateFileSystemExtras = {
|
|
327
327
|
rename: (arg0: PathLike, arg1: PathLike, arg2: (arg0: null | NodeJS.ErrnoException) => void) => void;
|
|
328
328
|
mkdirSync: MkdirSync;
|
|
329
|
-
write: Write
|
|
329
|
+
write: Write;
|
|
330
330
|
open: Open;
|
|
331
|
-
read: Read
|
|
331
|
+
read: Read;
|
|
332
332
|
close: (arg0: number, arg1: (arg0: null | NodeJS.ErrnoException) => void) => void;
|
|
333
333
|
};
|
|
334
334
|
export declare function rmrf(fs: OutputFileSystem, p: string, callback: (err?: Error | null) => void): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rspack-canary/browser",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0-canary-5bacb922-20251015173619",
|
|
4
4
|
"webpackVersion": "5.75.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Rspack for running in the browser. This is still in early stage and may not follow the semver.",
|