@meteorjs/rspack 0.0.41 → 0.0.42
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 +2 -2
package/package.json
CHANGED
package/rspack.config.js
CHANGED
|
@@ -261,8 +261,8 @@ export default function (inMeteor = {}, argv = {}) {
|
|
|
261
261
|
? [
|
|
262
262
|
new rsdoctorModule.RsdoctorRspackPlugin({
|
|
263
263
|
port: isClient
|
|
264
|
-
? (Meteor.rsdoctorClientPort || 8888)
|
|
265
|
-
: (Meteor.rsdoctorServerPort || 8889),
|
|
264
|
+
? (parseInt(Meteor.rsdoctorClientPort || '8888', 10))
|
|
265
|
+
: (parseInt(Meteor.rsdoctorServerPort || '8889', 10)),
|
|
266
266
|
}),
|
|
267
267
|
]
|
|
268
268
|
: [];
|