@compodoc/compodoc
Version:
The missing documentation tool for your Angular application
14 lines (11 loc) • 417 B
text/typescript
import * as path from 'node:path';
export class WatchFileClassifier {
public hasTypeScriptFile(files: string[]): boolean {
return files.some(file => path.extname(file) === '.ts');
}
public hasRootMarkdownFile(files: string[], rootDirectory: string): boolean {
return files.some(
file => path.extname(file) === '.md' && path.dirname(file) === rootDirectory
);
}
}