@rspack-canary/browser 1.7.2-canary-a47337bf-20260113093003 → 1.7.3-canary-785c0f6f-20260114175124
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/RuntimeModule.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { JsAddingRuntimeModule, JsRuntimeModule } from '@rspack/binding';
|
|
1
|
+
import type { JsAddingRuntimeModule, JsRuntimeModule, JsSource } from '@rspack/binding';
|
|
2
2
|
import type { Chunk } from './Chunk';
|
|
3
3
|
import type { ChunkGraph } from './ChunkGraph';
|
|
4
4
|
import type { Compilation } from './Compilation';
|
|
@@ -23,6 +23,7 @@ export declare class RuntimeModule {
|
|
|
23
23
|
protected chunkGraph: ChunkGraph | null;
|
|
24
24
|
constructor(name: string, stage?: RuntimeModuleStage);
|
|
25
25
|
attach(compilation: Compilation, chunk: Chunk, chunkGraph: ChunkGraph): void;
|
|
26
|
+
get source(): JsSource | undefined;
|
|
26
27
|
get name(): string;
|
|
27
28
|
get stage(): RuntimeModuleStage;
|
|
28
29
|
identifier(): string;
|
package/dist/index.mjs
CHANGED
|
@@ -50923,6 +50923,7 @@ class RuntimeModule {
|
|
|
50923
50923
|
this.chunk = chunk;
|
|
50924
50924
|
this.chunkGraph = chunkGraph;
|
|
50925
50925
|
}
|
|
50926
|
+
get source() {}
|
|
50926
50927
|
get name() {
|
|
50927
50928
|
return this._name;
|
|
50928
50929
|
}
|
|
@@ -58215,7 +58216,7 @@ const applybundlerInfoDefaults = (rspackFuture, library)=>{
|
|
|
58215
58216
|
if ('object' == typeof rspackFuture) {
|
|
58216
58217
|
D(rspackFuture, 'bundlerInfo', {});
|
|
58217
58218
|
if ('object' == typeof rspackFuture.bundlerInfo) {
|
|
58218
|
-
D(rspackFuture.bundlerInfo, 'version', "1.7.
|
|
58219
|
+
D(rspackFuture.bundlerInfo, 'version', "1.7.3-canary-785c0f6f-20260114175124");
|
|
58219
58220
|
D(rspackFuture.bundlerInfo, 'bundler', 'rspack');
|
|
58220
58221
|
D(rspackFuture.bundlerInfo, 'force', !library);
|
|
58221
58222
|
}
|
|
@@ -60485,7 +60486,7 @@ class MultiStats {
|
|
|
60485
60486
|
return obj;
|
|
60486
60487
|
});
|
|
60487
60488
|
if (childOptions.version) {
|
|
60488
|
-
obj.rspackVersion = "1.7.
|
|
60489
|
+
obj.rspackVersion = "1.7.3-canary-785c0f6f-20260114175124";
|
|
60489
60490
|
obj.version = "5.75.0";
|
|
60490
60491
|
}
|
|
60491
60492
|
if (childOptions.hash) obj.hash = obj.children.map((j)=>j.hash).join('');
|
|
@@ -62317,7 +62318,7 @@ const SIMPLE_EXTRACTORS = {
|
|
|
62317
62318
|
},
|
|
62318
62319
|
version: (object)=>{
|
|
62319
62320
|
object.version = "5.75.0";
|
|
62320
|
-
object.rspackVersion = "1.7.
|
|
62321
|
+
object.rspackVersion = "1.7.3-canary-785c0f6f-20260114175124";
|
|
62321
62322
|
},
|
|
62322
62323
|
env: (object, _compilation, _context, { _env })=>{
|
|
62323
62324
|
object.env = _env;
|
|
@@ -66987,7 +66988,7 @@ function transformSync(source, options) {
|
|
|
66987
66988
|
const _options = JSON.stringify(options || {});
|
|
66988
66989
|
return external_rspack_wasi_browser_js_["default"].transformSync(source, _options);
|
|
66989
66990
|
}
|
|
66990
|
-
const exports_rspackVersion = "1.7.
|
|
66991
|
+
const exports_rspackVersion = "1.7.3-canary-785c0f6f-20260114175124";
|
|
66991
66992
|
const exports_version = "5.75.0";
|
|
66992
66993
|
const exports_WebpackError = Error;
|
|
66993
66994
|
const sources = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.3_patch_hash=b2a26650f08a2359d0a3cd81fa6fa272aa7441a28dd7e601792da5ed5d2b4aee/node_modules/webpack-sources/lib/index.js");
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rspack-canary/browser",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.3-canary-785c0f6f-20260114175124",
|
|
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.",
|