refactor(compiler_cli): move it into modules/@angular and integrate properly into the build
This also does no more depend on a version on npm for the compiler_cli. Also runs the tests for tools/metadata
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
import {__compiler_private__ as _} from '@angular/compiler';
|
||||
import {__compiler_private__ as _c} from '@angular/compiler';
|
||||
|
||||
export type SelectorMatcher = typeof _.SelectorMatcher;
|
||||
export var SelectorMatcher: typeof _.SelectorMatcher = _.SelectorMatcher;
|
||||
export type SelectorMatcher = typeof _c.SelectorMatcher;
|
||||
export var SelectorMatcher: typeof _c.SelectorMatcher = _c.SelectorMatcher;
|
||||
|
||||
export type CssSelector = typeof _.CssSelector;
|
||||
export var CssSelector: typeof _.CssSelector = _.CssSelector;
|
||||
export type CssSelector = typeof _c.CssSelector;
|
||||
export var CssSelector: typeof _c.CssSelector = _c.CssSelector;
|
||||
|
Reference in New Issue
Block a user