missed a var declaration so I updated it to use const instead

This commit is contained in:
Brian Mulhall
2020-03-23 20:41:58 -05:00
parent b92d65a65e
commit d25e5ea0a5

View File

@@ -10,7 +10,7 @@ Plugin.registerMinifier({
class MeteorBabelMinifier {
processFilesForBundle (files, options) {
var mode = options.minifyMode;
const mode = options.minifyMode;
// don't minify anything for development
if (mode === 'development') {