Comparing version 1.1.2-dev.20211011.1 to 1.1.2-dev.20211011.2
@@ -9,1 +9,2 @@ - Only cache hooks that are requested, then take from GitHub/put hooks in npmignore | ||
- Add arguments | ||
- Make tests run locally instead of needing a dev publish |
@@ -52,6 +52,6 @@ let include, exclude; | ||
const outDir = path.dirname(outFile); | ||
const dir = path.dirname(outFile); | ||
if (!fs.existsSync(outDir)) { | ||
fs.mkdirSync(outDir, { recursive: true }); | ||
if (!fs.existsSync(dir)) { | ||
fs.mkdirSync(dir, { recursive: true }); | ||
} | ||
@@ -58,0 +58,0 @@ |
{ | ||
"name": "tsc-hooks", | ||
"version": "1.1.2-dev.20211011.1", | ||
"version": "1.1.2-dev.20211011.2", | ||
"description": "Add tsc compiler hooks to your TypeScript project", | ||
@@ -5,0 +5,0 @@ "main": "run.js", |
115443