@meteorjs/rspack 0.0.47 → 0.0.48

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meteorjs/rspack",
3
- "version": "0.0.47",
3
+ "version": "0.0.48",
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
@@ -369,9 +369,9 @@ module.exports = function (inMeteor = {}, argv = {}) {
369
369
 
370
370
  const serverEntry =
371
371
  isTest && isTestEager && isTestFullApp
372
- ? path.resolve(process.cwd(), 'node_modules/@meteorjs/rspack/entries/eager-app-tests.js')
372
+ ? path.resolve(process.cwd(), 'node_modules/@meteorjs/rspack/entries/eager-app-tests.mjs')
373
373
  : isTest && isTestEager
374
- ? path.resolve(process.cwd(), 'node_modules/@meteorjs/rspack/entries/eager-tests.js')
374
+ ? path.resolve(process.cwd(), 'node_modules/@meteorjs/rspack/entries/eager-tests.mjs')
375
375
  : path.resolve(process.cwd(), buildContext, entryPath);
376
376
  const serverNameConfig = `[${(isTest && 'test-') || ''}${
377
377
  (isTestModule && 'module') || 'server'
File without changes