@rspack-canary/browser 1.7.1-canary-47901fb5-20260104173636 → 1.7.1-canary-3de0ea56-20260105174238
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/index.mjs +6 -6
- package/dist/rspack.wasm32-wasi.wasm +0 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -55290,8 +55290,8 @@ function resolveStringifyLoaders(use, path, compiler, isBuiltin) {
|
|
|
55290
55290
|
else if ('object' == typeof use.options && use.options.ident) obj.query = `??${ident = use.options.ident}`;
|
|
55291
55291
|
else if ('object' == typeof use.options) obj.query = `??${ident = path}`;
|
|
55292
55292
|
else obj.query = `?${JSON.stringify(use.options)}`;
|
|
55293
|
-
const parallelism =
|
|
55294
|
-
if (parallelism && (!use.options || 'object' != typeof use.options)) throw new Error(`\`Rule.use.parallel\` requires \`Rule.use.options\` to be an object.\nHowever the received value is \`${use.options}\` under option path \`${path}\`\nInternally, parallelism is provided by passing \`Rule.use.ident\` to the loader as an identifier to ident the parallelism option\nYou can either replace the \`Rule.use.loader\` with \`Rule.use.options = {}\` or remove \`Rule.use.parallel\`.`);
|
|
55293
|
+
const parallelism = use.parallel;
|
|
55294
|
+
if (!!parallelism && (!use.options || 'object' != typeof use.options)) throw new Error(`\`Rule.use.parallel\` requires \`Rule.use.options\` to be an object.\nHowever the received value is \`${use.options}\` under option path \`${path}\`\nInternally, parallelism is provided by passing \`Rule.use.ident\` to the loader as an identifier to ident the parallelism option\nYou can either replace the \`Rule.use.loader\` with \`Rule.use.options = {}\` or remove \`Rule.use.parallel\`.`);
|
|
55295
55295
|
if (use.options && 'object' == typeof use.options) {
|
|
55296
55296
|
if (!ident) ident = '[[missing ident]]';
|
|
55297
55297
|
compiler.__internal__ruleSet.references.set(ident, use.options);
|
|
@@ -58172,7 +58172,7 @@ const applybundlerInfoDefaults = (rspackFuture, library)=>{
|
|
|
58172
58172
|
if ('object' == typeof rspackFuture) {
|
|
58173
58173
|
D(rspackFuture, 'bundlerInfo', {});
|
|
58174
58174
|
if ('object' == typeof rspackFuture.bundlerInfo) {
|
|
58175
|
-
D(rspackFuture.bundlerInfo, 'version', "1.7.1-canary-
|
|
58175
|
+
D(rspackFuture.bundlerInfo, 'version', "1.7.1-canary-3de0ea56-20260105174238");
|
|
58176
58176
|
D(rspackFuture.bundlerInfo, 'bundler', 'rspack');
|
|
58177
58177
|
D(rspackFuture.bundlerInfo, 'force', !library);
|
|
58178
58178
|
}
|
|
@@ -62365,7 +62365,7 @@ class MultiStats {
|
|
|
62365
62365
|
return obj;
|
|
62366
62366
|
});
|
|
62367
62367
|
if (childOptions.version) {
|
|
62368
|
-
obj.rspackVersion = "1.7.1-canary-
|
|
62368
|
+
obj.rspackVersion = "1.7.1-canary-3de0ea56-20260105174238";
|
|
62369
62369
|
obj.version = "5.75.0";
|
|
62370
62370
|
}
|
|
62371
62371
|
if (childOptions.hash) obj.hash = obj.children.map((j)=>j.hash).join('');
|
|
@@ -63681,7 +63681,7 @@ const SIMPLE_EXTRACTORS = {
|
|
|
63681
63681
|
},
|
|
63682
63682
|
version: (object)=>{
|
|
63683
63683
|
object.version = "5.75.0";
|
|
63684
|
-
object.rspackVersion = "1.7.1-canary-
|
|
63684
|
+
object.rspackVersion = "1.7.1-canary-3de0ea56-20260105174238";
|
|
63685
63685
|
},
|
|
63686
63686
|
env: (object, _compilation, _context, { _env })=>{
|
|
63687
63687
|
object.env = _env;
|
|
@@ -66818,7 +66818,7 @@ function transformSync(source, options) {
|
|
|
66818
66818
|
const _options = JSON.stringify(options || {});
|
|
66819
66819
|
return external_rspack_wasi_browser_js_["default"].transformSync(source, _options);
|
|
66820
66820
|
}
|
|
66821
|
-
const exports_rspackVersion = "1.7.1-canary-
|
|
66821
|
+
const exports_rspackVersion = "1.7.1-canary-3de0ea56-20260105174238";
|
|
66822
66822
|
const exports_version = "5.75.0";
|
|
66823
66823
|
const exports_WebpackError = Error;
|
|
66824
66824
|
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.1-canary-
|
|
3
|
+
"version": "1.7.1-canary-3de0ea56-20260105174238",
|
|
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.",
|