@rspack/browser 1.7.0 → 1.7.2

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.
@@ -1205,6 +1205,8 @@ export interface JsRuntimeModule {
1205
1205
  moduleIdentifier: string
1206
1206
  constructorName: string
1207
1207
  name: string
1208
+ stage: number
1209
+ isolate: boolean
1208
1210
  }
1209
1211
 
1210
1212
  export interface JsRuntimeModuleArg {
@@ -2337,6 +2339,11 @@ export interface RawJavascriptParserOptions {
2337
2339
  worker?: Array<string>
2338
2340
  overrideStrict?: string
2339
2341
  importMeta?: boolean
2342
+ /**
2343
+ * This option is experimental in Rspack only and subject to change or be removed anytime.
2344
+ * @experimental
2345
+ */
2346
+ requireAlias?: boolean
2340
2347
  /**
2341
2348
  * This option is experimental in Rspack only and subject to change or be removed anytime.
2342
2349
  * @experimental
@@ -2790,6 +2797,7 @@ export interface RawRstestPluginOptions {
2790
2797
  importMetaPathName: boolean
2791
2798
  hoistMockModule: boolean
2792
2799
  manualMockRoot: string
2800
+ preserveNewUrl?: Array<string>
2793
2801
  }
2794
2802
 
2795
2803
  export interface RawRuleSetCondition {
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rspack/browser",
3
- "version": "1.7.0",
3
+ "version": "1.7.2",
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.",