@meteorjs/rspack 1.1.0-beta.3 → 1.1.0-beta.4
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/package.json +1 -1
- package/rspack.config.js +0 -10
package/package.json
CHANGED
package/rspack.config.js
CHANGED
|
@@ -454,11 +454,6 @@ module.exports = async function (inMeteor = {}, argv = {}) {
|
|
|
454
454
|
: isClient && isTest && testEntry
|
|
455
455
|
? path.resolve(process.cwd(), testEntry)
|
|
456
456
|
: path.resolve(process.cwd(), buildContext, entryPath);
|
|
457
|
-
console.log(
|
|
458
|
-
"--> (rspack.config.js-Line: 431)\n clientEntry: ",
|
|
459
|
-
clientEntry,
|
|
460
|
-
entryPath
|
|
461
|
-
);
|
|
462
457
|
const clientNameConfig = `[${(isTest && 'test-') || ''}client-rspack]`;
|
|
463
458
|
// Base client config
|
|
464
459
|
let clientConfig = {
|
|
@@ -581,11 +576,6 @@ module.exports = async function (inMeteor = {}, argv = {}) {
|
|
|
581
576
|
? path.resolve(process.cwd(), testEntry)
|
|
582
577
|
: path.resolve(projectDir, buildContext, entryPath);
|
|
583
578
|
const serverNameConfig = `[${(isTest && 'test-') || ''}server-rspack]`;
|
|
584
|
-
console.log(
|
|
585
|
-
"--> (rspack.config.js-Line: 576)\n serverEntry: ",
|
|
586
|
-
serverEntry,
|
|
587
|
-
entryPath
|
|
588
|
-
);
|
|
589
579
|
// Base server config
|
|
590
580
|
let serverConfig = {
|
|
591
581
|
name: serverNameConfig,
|