@meteorjs/rspack 0.0.22 → 0.0.23

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 +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meteorjs/rspack",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
4
4
  "description": "Configuration logic for using Rspack in Meteor projects",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/rspack.config.js CHANGED
@@ -313,7 +313,7 @@ export default function (inMeteor = {}, argv = {}) {
313
313
  banner: bannerOutput,
314
314
  entryOnly: true,
315
315
  }),
316
- Meteor.HtmlRspackPlugin(),
316
+ // Meteor.HtmlRspackPlugin(),
317
317
  ],
318
318
  watchOptions,
319
319
  devtool: isDevEnvironment || isTest ? 'source-map' : 'hidden-source-map',
@@ -374,8 +374,8 @@ export default function (inMeteor = {}, argv = {}) {
374
374
  "Meteor.isDevelopment": JSON.stringify(isDev),
375
375
  }
376
376
  : {
377
- "Meteor.isClient": JSON.stringify(true),
378
- "Meteor.isServer": JSON.stringify(false),
377
+ "Meteor.isClient": JSON.stringify(false),
378
+ "Meteor.isServer": JSON.stringify(true),
379
379
  "Meteor.isTest": JSON.stringify(isTest),
380
380
  "Meteor.isDevelopment": JSON.stringify(isDev),
381
381
  "Meteor.isProduction": JSON.stringify(isProd),