Comparing version 1.1.0-dev.20210821.7 to 1.1.0-dev.20210821.8
@@ -28,3 +28,3 @@ module.exports = { | ||
for (const file of files) { | ||
if (file.endsWith('.js') || (!this.tsconfig.compilerOptions?.allowTS && file.endsWith('.ts'))) continue; | ||
if (file.endsWith('.js') || (!this.tsconfig.compilerOptions?.allowTs && file.endsWith('.ts'))) continue; | ||
@@ -31,0 +31,0 @@ const outFile = file.replace(this.tsconfigDir, path.resolve(this.tsconfigDir, this.tsconfig.compilerOptions.outDir)); |
{ | ||
"name": "tsc-hooks", | ||
"version": "1.1.0-dev.20210821.7", | ||
"version": "1.1.0-dev.20210821.8", | ||
"description": "Add tsc compiler hooks to your TypeScript project", | ||
@@ -19,2 +19,3 @@ "main": "run.js", | ||
"test": "docker run -it tsc-hooks-test", | ||
"inspect:tests": "docker run -it tsc-hooks-test bash", | ||
"build:tests": "docker build . -t tsc-hooks-test", | ||
@@ -21,0 +22,0 @@ "clean:tests": "docker rmi tsc-hooks-test --force", |
108161
14
149