(name: string)
| 298 | } |
| 299 | |
| 300 | getOutputFileHash(name: string): string { |
| 301 | const info = this.getOutputInfo(name); |
| 302 | if (!info) throw new Error(`output file not found: ${name}`); |
| 303 | return createHash("sha256").update(info.hash).update(String(info.mtimeMs)).digest("hex"); |
| 304 | } |
| 305 | |
| 306 | getSourceInfo(name: string): FileInfo | undefined { |
| 307 | return getFileInfo(this.root, this.getSourceFilePath(name)); |
no test coverage detected