chore: rename temp dir for clarity

This commit is contained in:
M. George Hansen 2020-06-10 18:16:19 -07:00
parent df114ea5b2
commit d105e364cc
3 changed files with 5 additions and 5 deletions

View file

@ -8,7 +8,7 @@ import * as path from "path";
const ROOT_DIR = path.resolve(__dirname, "..");
const DIST_DIR = path.join(ROOT_DIR, "dist");
const TEST_DIR = path.join(ROOT_DIR, ".test-dist");
const TEST_DIR = path.join(ROOT_DIR, ".temp");
const rmdirRecursive = (dirPath: string): void => {
if (!fs.existsSync(dirPath)) {