mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
missed a var declaration so I updated it to use const instead
This commit is contained in:
@@ -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') {
|
||||
|
||||
Reference in New Issue
Block a user