(filename)
| 4 | export const repoRoot = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "../.."); |
| 5 | |
| 6 | export function toRepoRelative(filename) { |
| 7 | return path.relative(repoRoot, path.resolve(filename)).split(path.sep).join("/"); |
| 8 | } |
| 9 | |
| 10 | export function isConfigOrTooling(filename) { |
| 11 | const normalized = toRepoRelative(filename); |
no test coverage detected