()
| 15 | import { getConfigDir } from './app-config' |
| 16 | |
| 17 | export function getOverridesDir(): string { |
| 18 | return path.join(getConfigDir(), 'overrides') |
| 19 | } |
| 20 | |
| 21 | /** A bare `.css` filename resolving to a direct child of the overrides dir. */ |
| 22 | function isSafeName(name: unknown): name is string { |
no test coverage detected