fix(compiler-cli): remove minimist dependency of compiler-cli/index (#18532)

Indirectly removes the minimist dependency in the language service
package was added with the addition of `ngc.ts`.
This commit is contained in:
Chuck Jazdzewski
2017-08-07 14:30:35 -07:00
committed by Victor Berchet
parent 04b18a9f46
commit 5b7432b6ea
4 changed files with 197 additions and 176 deletions

View File

@ -11,7 +11,8 @@ import * as fs from 'fs';
import * as path from 'path';
import * as ts from 'typescript';
import {main, performCompilation} from '../src/ngc';
import {main} from '../src/ngc';
import {performCompilation} from '../src/perform-compile';
function getNgRootDir() {
const moduleFilename = module.filename.replace(/\\/g, '/');