diff --git a/gulpfile.js b/gulpfile.js index 8fc5b44c8..eb58dfe83 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -90,7 +90,7 @@ var CSS_VARIABLES_CONFIG = { preserve: true, }; -var DEFINES = { +const DEFINES = Object.freeze({ PRODUCTION: true, SKIP_BABEL: true, TESTING: false, @@ -102,7 +102,7 @@ var DEFINES = { COMPONENTS: false, LIB: false, IMAGE_DECODERS: false, -}; +}); function transform(charEncoding, transformFunction) { return through.obj(function (vinylFile, enc, done) {