MCPcopy Index your code
hub / github.com/angular/angular / runNgcComamnd

Function runNgcComamnd

packages/compiler-cli/src/bin/ngc.ts:16–23  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

14import {main} from '../main';
15
16async 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
25runNgcComamnd().catch((e) => {
26 console.error(e);

Callers 1

ngc.tsFile · 0.85

Calls 2

setFileSystemFunction · 0.90
mainFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…