fix(typings): don't test compiler-cli typings on TS 1.8
This commit is contained in:
parent
df759b8d4b
commit
54dbed4f48
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@angular/tsc-wrapped",
|
"name": "@angular/tsc-wrapped",
|
||||||
"version": "0.1.0",
|
"version": "0.2.0",
|
||||||
"description": "Wraps the tsc CLI, allowing extensions.",
|
"description": "Wraps the tsc CLI, allowing extensions.",
|
||||||
"homepage": "https://github.com/angular/angular/tree/master/tools/tsc-wrapped",
|
"homepage": "https://github.com/angular/angular/tree/master/tools/tsc-wrapped",
|
||||||
"bugs": "https://github.com/angular/angular/issues",
|
"bugs": "https://github.com/angular/angular/issues",
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import * as compiler from '@angular/compiler';
|
import * as compiler from '@angular/compiler';
|
||||||
import * as compiler_cli from '@angular/compiler-cli';
|
|
||||||
import * as compilerTesting from '@angular/compiler/testing';
|
import * as compilerTesting from '@angular/compiler/testing';
|
||||||
import * as coreTesting from '@angular/core';
|
import * as coreTesting from '@angular/core';
|
||||||
import * as core from '@angular/core/testing';
|
import * as core from '@angular/core/testing';
|
||||||
|
@ -17,7 +16,6 @@ import * as upgrade from '@angular/upgrade';
|
||||||
export default {
|
export default {
|
||||||
compiler,
|
compiler,
|
||||||
compilerTesting,
|
compilerTesting,
|
||||||
compiler_cli,
|
|
||||||
core,
|
core,
|
||||||
coreTesting,
|
coreTesting,
|
||||||
http,
|
http,
|
||||||
|
|
|
@ -2,8 +2,9 @@
|
||||||
set -ex -o pipefail
|
set -ex -o pipefail
|
||||||
|
|
||||||
# These ones can be `npm link`ed for fast development
|
# These ones can be `npm link`ed for fast development
|
||||||
|
# Note that compiler-cli does not support TS 1.8 because tsc-wrapped uses 1.9 features
|
||||||
LINKABLE_PKGS=(
|
LINKABLE_PKGS=(
|
||||||
$(pwd)/dist/packages-dist/{common,core,compiler,compiler-cli,http,router,router-deprecated,upgrade,platform-{browser,browser-dynamic,server}}
|
$(pwd)/dist/packages-dist/{common,core,compiler,http,router,router-deprecated,upgrade,platform-{browser,browser-dynamic,server}}
|
||||||
)
|
)
|
||||||
|
|
||||||
TMPDIR=${TMPDIR:-/tmp/angular-build/}
|
TMPDIR=${TMPDIR:-/tmp/angular-build/}
|
||||||
|
|
Loading…
Reference in New Issue