@rspack-canary/core 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.js +305 -337
- package/dist/util/fs.d.ts +2 -2
- package/package.json +3 -3
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/core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0-canary-5bacb922-20251015173619",
|
|
4
4
|
"webpackVersion": "5.75.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "The fast Rust-based web bundler with webpack-compatible API",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@ast-grep/napi": "^0.39.6",
|
|
41
41
|
"@rsbuild/plugin-node-polyfill": "^1.4.2",
|
|
42
|
-
"@rslib/core": "0.15.
|
|
42
|
+
"@rslib/core": "0.15.1",
|
|
43
43
|
"@swc/types": "0.1.25",
|
|
44
44
|
"@types/graceful-fs": "4.1.9",
|
|
45
45
|
"@types/watchpack": "^2.4.4",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@module-federation/runtime-tools": "0.20.0",
|
|
62
62
|
"@rspack/lite-tapable": "1.0.1",
|
|
63
|
-
"@rspack/binding": "npm:@rspack-canary/binding@1.
|
|
63
|
+
"@rspack/binding": "npm:@rspack-canary/binding@1.6.0-canary-5bacb922-20251015173619"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
66
|
"@swc/helpers": ">=0.5.1"
|