Comparing version 0.0.9-1 to 0.0.9-2
@@ -86,3 +86,3 @@ "use strict"; | ||
absoluteTsDir = path.dirname(absoluteTsPath); | ||
cachedDir = path.resolve(cacheDir, absoluteTsDir); | ||
cachedDir = path.resolve(cacheDir, "." + absoluteTsDir); | ||
cachedFile = path.resolve(cachedDir, jsFileName); | ||
@@ -89,0 +89,0 @@ if (!fs.existsSync(cachedFile)) return [3 /*break*/, 3]; |
{ | ||
"name": "ts-import", | ||
"version": "0.0.9-1", | ||
"version": "0.0.9-2", | ||
"license": "GPL-3.0", | ||
@@ -5,0 +5,0 @@ "author": "Artur Kurowski <radarsu@gmail.com>", |
@@ -49,3 +49,3 @@ import * as childProcess from 'child_process'; | ||
const cachedDir = path.resolve(cacheDir, absoluteTsDir); | ||
const cachedDir = path.resolve(cacheDir, `.${absoluteTsDir}`); | ||
const cachedFile = path.resolve(cachedDir, jsFileName); | ||
@@ -52,0 +52,0 @@ |
15656