()
| 14 | import {main} from '../main'; |
| 15 | |
| 16 | async function runNgcComamnd() { |
| 17 | process.title = 'Angular Compiler (ngc)'; |
| 18 | const args = process.argv.slice(2); |
| 19 | // We are running the real compiler so run against the real file-system |
| 20 | setFileSystem(new NodeJSFileSystem()); |
| 21 | |
| 22 | process.exitCode = main(args, undefined, undefined, undefined, undefined, undefined); |
| 23 | } |
| 24 | |
| 25 | runNgcComamnd().catch((e) => { |
| 26 | console.error(e); |
no test coverage detected
searching dependent graphs…