@rspack-canary/browser 1.5.9-canary-e259bc79-20251014173821 → 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/index.mjs +917 -954
- package/dist/rspack.wasm32-wasi.wasm +0 -0
- package/dist/util/fs.d.ts +2 -2
- package/package.json +1 -1
|
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.",
|