fix(compiler-cli): import shallow import to @angular/upgrade/static correctly (#14658)

Fixes #14648
This commit is contained in:
Chuck Jazdzewski
2017-02-22 17:23:08 -08:00
committed by Igor Minar
parent a1d4769199
commit 801b09066b
2 changed files with 13 additions and 1 deletions

View File

@ -18,7 +18,7 @@ const NODE_MODULES = '/node_modules/';
const IS_GENERATED = /\.(ngfactory|ngstyle)$/;
const GENERATED_FILES = /\.ngfactory\.ts$|\.ngstyle\.ts$/;
const GENERATED_OR_DTS_FILES = /\.d\.ts$|\.ngfactory\.ts$|\.ngstyle\.ts$/;
const SHALLOW_IMPORT = /^((\w|-)+|(@(\w|-)+\/(\w|-)+))$/;
const SHALLOW_IMPORT = /^((\w|-)+|(@(\w|-)+(\/(\w|-)+)+))$/;
export interface CompilerHostContext extends ts.ModuleResolutionHost {
readResource(fileName: string): Promise<string>;