build: add warning about changing ngtools_api2
This commit is contained in:
parent
820bb7bd8c
commit
14380ff086
|
@ -7,9 +7,12 @@
|
||||||
#
|
#
|
||||||
# alexeagle - Alex Eagle
|
# alexeagle - Alex Eagle
|
||||||
# alxhub - Alex Rickabaugh
|
# alxhub - Alex Rickabaugh
|
||||||
|
# brocco - Mike Brocchi
|
||||||
# chuckjaz - Chuck Jazdzewski
|
# chuckjaz - Chuck Jazdzewski
|
||||||
|
# filipesilva - Filipe Silva
|
||||||
# Foxandxss - Jesús Rodríguez
|
# Foxandxss - Jesús Rodríguez
|
||||||
# gkalpak - George Kalpakas
|
# gkalpak - George Kalpakas
|
||||||
|
# hansl - Hans Larsen
|
||||||
# IgorMinar - Igor Minar
|
# IgorMinar - Igor Minar
|
||||||
# jasonaden - Jason Aden
|
# jasonaden - Jason Aden
|
||||||
# juleskremer - Jules Kremer
|
# juleskremer - Jules Kremer
|
||||||
|
@ -144,11 +147,23 @@ groups:
|
||||||
- mhevery
|
- mhevery
|
||||||
- IgorMinar #fallback
|
- IgorMinar #fallback
|
||||||
|
|
||||||
|
compiler-cli/ngtools:
|
||||||
|
conditions:
|
||||||
|
files:
|
||||||
|
- "packages/compiler-cli/src/ngtools*"
|
||||||
|
users:
|
||||||
|
- hansl
|
||||||
|
- filipesilva #fallback
|
||||||
|
- brocco #fallback
|
||||||
|
|
||||||
compiler-cli:
|
compiler-cli:
|
||||||
conditions:
|
conditions:
|
||||||
files:
|
files:
|
||||||
- "packages/compiler-cli/*"
|
include:
|
||||||
- "packages/bazel/*"
|
- "packages/compiler-cli/*"
|
||||||
|
- "packages/bazel/*"
|
||||||
|
exclude:
|
||||||
|
- "packages/compiler-cli/src/ngtools*"
|
||||||
users:
|
users:
|
||||||
- alexeagle
|
- alexeagle
|
||||||
- chuckjaz
|
- chuckjaz
|
||||||
|
|
|
@ -13,6 +13,12 @@
|
||||||
* something else.
|
* something else.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
*********************************************************************
|
||||||
|
* Changes to this file need to be approved by the Angular CLI team. *
|
||||||
|
*********************************************************************
|
||||||
|
*/
|
||||||
|
|
||||||
import {AotCompilerHost, AotSummaryResolver, StaticReflector, StaticSymbolCache, StaticSymbolResolver} from '@angular/compiler';
|
import {AotCompilerHost, AotSummaryResolver, StaticReflector, StaticSymbolCache, StaticSymbolResolver} from '@angular/compiler';
|
||||||
import * as ts from 'typescript';
|
import * as ts from 'typescript';
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,12 @@
|
||||||
* Once the ngc api is public and stable, this can be removed.
|
* Once the ngc api is public and stable, this can be removed.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
*********************************************************************
|
||||||
|
* Changes to this file need to be approved by the Angular CLI team. *
|
||||||
|
*********************************************************************
|
||||||
|
*/
|
||||||
|
|
||||||
import {ParseSourceSpan} from '@angular/compiler';
|
import {ParseSourceSpan} from '@angular/compiler';
|
||||||
import * as ts from 'typescript';
|
import * as ts from 'typescript';
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,13 @@
|
||||||
* This API should be stable for NG 2. It can be removed in NG 4..., but should be replaced by
|
* This API should be stable for NG 2. It can be removed in NG 4..., but should be replaced by
|
||||||
* something else.
|
* something else.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
*********************************************************************
|
||||||
|
* Changes to this file need to be approved by the Angular CLI team. *
|
||||||
|
*********************************************************************
|
||||||
|
*/
|
||||||
|
|
||||||
import {AotCompilerHost, StaticReflector, StaticSymbol, core} from '@angular/compiler';
|
import {AotCompilerHost, StaticReflector, StaticSymbol, core} from '@angular/compiler';
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue