@meteorjs/rspack 0.3.56 → 1.1.0-beta.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/rspack.config.js +0 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meteorjs/rspack",
3
- "version": "0.3.56",
3
+ "version": "1.1.0-beta.1",
4
4
  "description": "Configuration logic for using Rspack in Meteor projects",
5
5
  "main": "index.js",
6
6
  "type": "commonjs",
package/rspack.config.js CHANGED
@@ -230,8 +230,6 @@ module.exports = async function (inMeteor = {}, argv = {}) {
230
230
  const projectConfigPath = Meteor.projectConfigPath || path.resolve(projectDir, 'rspack.config.js');
231
231
  const configPath = Meteor.configPath;
232
232
  const testEntry = Meteor.testEntry;
233
- const testClientEntry = Meteor.testClientEntry;
234
- const testServerEntry = Meteor.testServerEntry;
235
233
 
236
234
  const isTypescriptEnabled = Meteor.isTypescriptEnabled || false;
237
235
  const isJsxEnabled =
@@ -451,8 +449,6 @@ module.exports = async function (inMeteor = {}, argv = {}) {
451
449
  })
452
450
  : isTest && testEntry
453
451
  ? path.resolve(process.cwd(), testEntry)
454
- : isTest && testClientEntry
455
- ? path.resolve(process.cwd(), testClientEntry)
456
452
  : path.resolve(process.cwd(), buildContext, entryPath);
457
453
  const clientNameConfig = `[${(isTest && 'test-') || ''}client-rspack]`;
458
454
  // Base client config
@@ -570,8 +566,6 @@ module.exports = async function (inMeteor = {}, argv = {}) {
570
566
  })
571
567
  : isTest && testEntry
572
568
  ? path.resolve(process.cwd(), testEntry)
573
- : isTest && testServerEntry
574
- ? path.resolve(process.cwd(), testServerEntry)
575
569
  : path.resolve(projectDir, buildContext, entryPath);
576
570
  const serverNameConfig = `[${(isTest && 'test-') || ''}server-rspack]`;
577
571
  // Base server config