@meteorjs/rspack 0.0.22 → 0.0.24

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 +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meteorjs/rspack",
3
- "version": "0.0.22",
3
+ "version": "0.0.24",
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
@@ -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),