(basePath, outputFilePath = process.cwd())
| 28 | } |
| 29 | |
| 30 | cachePath(basePath, outputFilePath = process.cwd()) { |
| 31 | const projectHash = CacheManager.hash(path.join(basePath, outputFilePath)); |
| 32 | const cachePath = path.join(this.tempPath, `${projectHash}.cache`); |
| 33 | return cachePath; |
| 34 | } |
| 35 | |
| 36 | get checkFilePath() { |
| 37 | const checkFilePath = path.join(this.tempPath, 'last.touch'); |