From 433fa5d3d2d8ffdac506041bf62daf09f4b58481 Mon Sep 17 00:00:00 2001 From: Landon Abney Date: Fri, 21 Jul 2017 15:14:33 -0700 Subject: [PATCH] Force atom-babel6-transpiler to not set BABEL_ENV Although we aren't utilizing it, `atom-babel6-transpiler` was setting `BABEL_ENV` to `undefined` whenever this package was transpiled leading to other Atom packages that use that environment variable to become corrupted. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 5d2163a8..07b38423 100644 --- a/package.json +++ b/package.json @@ -178,6 +178,7 @@ "glob": "{src,spec}/*.js", "transpiler": "atom-babel6-transpiler", "options": { + "setBabelEnv": false, "babel": { "presets": [ "node5"