@meteorjs/rspack 0.0.9 → 0.0.10

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.9",
3
+ "version": "0.0.10",
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
@@ -151,7 +151,7 @@ export default function (inMeteor = {}, argv = {}) {
151
151
  const bundlesContext = Meteor.bundlesContext || 'bundles';
152
152
  const assetsContext = Meteor.assetsContext || 'assets';
153
153
 
154
- if (Meteor.isDebug) {
154
+ if (Meteor.isDebug || Meteor.isVerbose) {
155
155
  console.log('[i] Rspack mode:', mode);
156
156
  console.log('[i] Meteor flags:', Meteor);
157
157
  }
@@ -352,7 +352,7 @@ export default function (inMeteor = {}, argv = {}) {
352
352
 
353
353
  const config = isClient ? clientConfig : serverConfig;
354
354
 
355
- if (Meteor.isDebug) {
355
+ if (Meteor.isDebug || Meteor.isVerbose) {
356
356
  console.log('Config:', inspect(config, { depth: null, colors: true }));
357
357
  }
358
358