@rspack-canary/browser 1.7.0-canary-8f14e31b-20251221173328 → 1.7.0-canary-be5d0ef3-20251222175046
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.
|
@@ -111,10 +111,6 @@ export interface ExperimentsNormalized {
|
|
|
111
111
|
*/
|
|
112
112
|
layers?: boolean;
|
|
113
113
|
incremental?: false | Incremental;
|
|
114
|
-
/**
|
|
115
|
-
* @deprecated This option is deprecated, as it has a huge regression in some edge cases where the chunk graph has lots of cycles. We will improve performance of build_chunk_graph.
|
|
116
|
-
*/
|
|
117
|
-
parallelCodeSplitting?: boolean;
|
|
118
114
|
futureDefaults?: boolean;
|
|
119
115
|
rspackFuture?: RspackFutureOptions;
|
|
120
116
|
buildHttp?: HttpUriPluginOptions;
|
package/dist/config/types.d.ts
CHANGED
|
@@ -2129,11 +2129,6 @@ export type Experiments = {
|
|
|
2129
2129
|
* Enable incremental builds.
|
|
2130
2130
|
*/
|
|
2131
2131
|
incremental?: IncrementalPresets | Incremental;
|
|
2132
|
-
/**
|
|
2133
|
-
* Enable multi-threaded code splitting algorithm.
|
|
2134
|
-
* @deprecated This option is deprecated, it has a huge regression in some edge cases where the chunk graph has lots of cycles. We'll improve the performance of build_chunk_graph in the future instead
|
|
2135
|
-
*/
|
|
2136
|
-
parallelCodeSplitting?: boolean;
|
|
2137
2132
|
/**
|
|
2138
2133
|
* Enable future default options.
|
|
2139
2134
|
* @default false
|
package/dist/index.mjs
CHANGED
|
@@ -58210,7 +58210,6 @@ const applyExperimentsDefaults = (experiments, { development })=>{
|
|
|
58210
58210
|
D(experiments.incremental, "emitAssets", true);
|
|
58211
58211
|
}
|
|
58212
58212
|
D(experiments, "rspackFuture", {});
|
|
58213
|
-
D(experiments, "parallelCodeSplitting", false);
|
|
58214
58213
|
D(experiments, "parallelLoader", false);
|
|
58215
58214
|
D(experiments, "useInputFileSystem", false);
|
|
58216
58215
|
D(experiments, "inlineConst", true);
|
|
@@ -58222,7 +58221,7 @@ const applybundlerInfoDefaults = (rspackFuture, library)=>{
|
|
|
58222
58221
|
if ("object" == typeof rspackFuture) {
|
|
58223
58222
|
D(rspackFuture, "bundlerInfo", {});
|
|
58224
58223
|
if ("object" == typeof rspackFuture.bundlerInfo) {
|
|
58225
|
-
D(rspackFuture.bundlerInfo, "version", "1.7.0-canary-
|
|
58224
|
+
D(rspackFuture.bundlerInfo, "version", "1.7.0-canary-be5d0ef3-20251222175046");
|
|
58226
58225
|
D(rspackFuture.bundlerInfo, "bundler", "rspack");
|
|
58227
58226
|
D(rspackFuture.bundlerInfo, "force", !library);
|
|
58228
58227
|
}
|
|
@@ -59093,7 +59092,6 @@ const getNormalizedRspackOptions = (config)=>({
|
|
|
59093
59092
|
experiments: nestedConfig(config.experiments, (experiments)=>{
|
|
59094
59093
|
if (experiments.layers) util_default().deprecate(()=>{}, "`experiments.layers` config has been deprecated and will be removed in Rspack v2.0. Feature layers will be always enabled. Please remove this option from your Rspack configuration.")();
|
|
59095
59094
|
if (false === experiments.topLevelAwait) util_default().deprecate(()=>{}, "`experiments.topLevelAwait` config has been deprecated and will be removed in Rspack v2.0. Top-level await will be always enabled. Please remove this option from your Rspack configuration.")();
|
|
59096
|
-
if (experiments.parallelCodeSplitting) util_default().deprecate(()=>{}, "`experiments.parallelCodeSplitting` config has been deprecated and will be removed in next minor. It has huge regression in some edge cases where the chunk graph has lots of cycles, we'll improve the performance of build_chunk_graph in the future instead")();
|
|
59097
59095
|
if (experiments.lazyBarrel) util_default().deprecate(()=>{}, "`experiments.lazyBarrel` config has been deprecated and will be removed in Rspack v2.0. Lazy barrel is already stable and enabled by default. Please remove this option from your Rspack configuration.")();
|
|
59098
59096
|
if (experiments.inlineConst) util_default().deprecate(()=>{}, "`experiments.inlineConst` config has been deprecated and will be removed in Rspack v2.0. Inline Const is already stable and enabled by default. Please remove this option from your Rspack configuration.")();
|
|
59099
59097
|
if (experiments.inlineEnum) util_default().deprecate(()=>{}, "`experiments.inlineEnum` config has been deprecated and will be removed in Rspack v2.0. Inline Enum is already stable. Please remove this option from your Rspack configuration.")();
|
|
@@ -59129,7 +59127,6 @@ const getNormalizedRspackOptions = (config)=>({
|
|
|
59129
59127
|
}),
|
|
59130
59128
|
lazyCompilation: optionalNestedConfig(experiments.lazyCompilation, (options)=>true === options ? {} : options),
|
|
59131
59129
|
incremental: optionalNestedConfig(experiments.incremental, (options)=>getNormalizedIncrementalOptions(options)),
|
|
59132
|
-
parallelCodeSplitting: experiments.parallelCodeSplitting,
|
|
59133
59130
|
buildHttp: experiments.buildHttp,
|
|
59134
59131
|
parallelLoader: experiments.parallelLoader,
|
|
59135
59132
|
useInputFileSystem: experiments.useInputFileSystem
|
|
@@ -62382,7 +62379,7 @@ class MultiStats {
|
|
|
62382
62379
|
return obj;
|
|
62383
62380
|
});
|
|
62384
62381
|
if (childOptions.version) {
|
|
62385
|
-
obj.rspackVersion = "1.7.0-canary-
|
|
62382
|
+
obj.rspackVersion = "1.7.0-canary-be5d0ef3-20251222175046";
|
|
62386
62383
|
obj.version = "5.75.0";
|
|
62387
62384
|
}
|
|
62388
62385
|
if (childOptions.hash) obj.hash = obj.children.map((j)=>j.hash).join("");
|
|
@@ -63698,7 +63695,7 @@ const SIMPLE_EXTRACTORS = {
|
|
|
63698
63695
|
},
|
|
63699
63696
|
version: (object)=>{
|
|
63700
63697
|
object.version = "5.75.0";
|
|
63701
|
-
object.rspackVersion = "1.7.0-canary-
|
|
63698
|
+
object.rspackVersion = "1.7.0-canary-be5d0ef3-20251222175046";
|
|
63702
63699
|
},
|
|
63703
63700
|
env: (object, _compilation, _context, { _env })=>{
|
|
63704
63701
|
object.env = _env;
|
|
@@ -66835,7 +66832,7 @@ function transformSync(source, options) {
|
|
|
66835
66832
|
const _options = JSON.stringify(options || {});
|
|
66836
66833
|
return external_rspack_wasi_browser_js_["default"].transformSync(source, _options);
|
|
66837
66834
|
}
|
|
66838
|
-
const exports_rspackVersion = "1.7.0-canary-
|
|
66835
|
+
const exports_rspackVersion = "1.7.0-canary-be5d0ef3-20251222175046";
|
|
66839
66836
|
const exports_version = "5.75.0";
|
|
66840
66837
|
const exports_WebpackError = Error;
|
|
66841
66838
|
const sources = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.3_patch_hash=b2a26650f08a2359d0a3cd81fa6fa272aa7441a28dd7e601792da5ed5d2b4aee/node_modules/webpack-sources/lib/index.js");
|
package/dist/napi-binding.d.ts
CHANGED
|
@@ -2124,7 +2124,6 @@ export interface RawExperimentCacheOptionsPersistent {
|
|
|
2124
2124
|
export interface RawExperiments {
|
|
2125
2125
|
topLevelAwait: boolean
|
|
2126
2126
|
incremental?: false | { [key: string]: boolean }
|
|
2127
|
-
parallelCodeSplitting: boolean
|
|
2128
2127
|
rspackFuture?: RawRspackFuture
|
|
2129
2128
|
cache: boolean | { type: "persistent" } & RawExperimentCacheOptionsPersistent | { type: "memory" }
|
|
2130
2129
|
useInputFileSystem?: false | Array<RegExp>
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rspack-canary/browser",
|
|
3
|
-
"version": "1.7.0-canary-
|
|
3
|
+
"version": "1.7.0-canary-be5d0ef3-20251222175046",
|
|
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.",
|