@meteorjs/rspack 0.0.43 → 0.0.44

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 +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meteorjs/rspack",
3
- "version": "0.0.43",
3
+ "version": "0.0.44",
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
@@ -161,7 +161,7 @@ export default function (inMeteor = {}, argv = {}) {
161
161
  const runPath = Meteor.runPath;
162
162
 
163
163
  // Determine banner
164
- const bannerOutput = JSON.parse(Meteor.bannerOutput || '');
164
+ const bannerOutput = JSON.parse(Meteor.bannerOutput || process.env.RSPACK_BANNER || '""');
165
165
 
166
166
  // Determine output directories
167
167
  const clientOutputDir = path.resolve(process.cwd(), 'public');