@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.
- package/package.json +1 -1
- package/rspack.config.js +3 -3
package/package.json
CHANGED
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(
|
|
378
|
-
"Meteor.isServer": JSON.stringify(
|
|
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),
|