Merge branch 'master' of github.com:babel/babel

This commit is contained in:
Sebastian McKenzie
2015-05-18 10:33:12 +01:00
2 changed files with 4 additions and 4 deletions

View File

@@ -1,9 +1,9 @@
import path from "path";
import os from "os";
import fs from "fs";
import userHome from "user-home";
import homeOrTmp from "home-or-tmp";
const FILENAME = process.env.BABEL_CACHE_PATH || path.join(userHome || os.tmpdir(), ".babel.json");
const FILENAME = process.env.BABEL_CACHE_PATH || path.join(homeOrTmp, ".babel.json");
var data = {};
export function save() {