From 54dbed4f482e3d73e3ec7481c326b6bb6425ae12 Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Thu, 23 Jun 2016 10:43:50 -0700 Subject: [PATCH] fix(typings): don't test compiler-cli typings on TS 1.8 --- tools/@angular/tsc-wrapped/package.json | 2 +- tools/typings-test/include-all.ts | 2 -- tools/typings-test/test.sh | 3 ++- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/tools/@angular/tsc-wrapped/package.json b/tools/@angular/tsc-wrapped/package.json index 8604fee3cd..574e12033a 100644 --- a/tools/@angular/tsc-wrapped/package.json +++ b/tools/@angular/tsc-wrapped/package.json @@ -1,6 +1,6 @@ { "name": "@angular/tsc-wrapped", - "version": "0.1.0", + "version": "0.2.0", "description": "Wraps the tsc CLI, allowing extensions.", "homepage": "https://github.com/angular/angular/tree/master/tools/tsc-wrapped", "bugs": "https://github.com/angular/angular/issues", diff --git a/tools/typings-test/include-all.ts b/tools/typings-test/include-all.ts index 60adc358b3..e646b5e772 100644 --- a/tools/typings-test/include-all.ts +++ b/tools/typings-test/include-all.ts @@ -1,5 +1,4 @@ import * as compiler from '@angular/compiler'; -import * as compiler_cli from '@angular/compiler-cli'; import * as compilerTesting from '@angular/compiler/testing'; import * as coreTesting from '@angular/core'; import * as core from '@angular/core/testing'; @@ -17,7 +16,6 @@ import * as upgrade from '@angular/upgrade'; export default { compiler, compilerTesting, - compiler_cli, core, coreTesting, http, diff --git a/tools/typings-test/test.sh b/tools/typings-test/test.sh index ef20426d38..75b6268b95 100755 --- a/tools/typings-test/test.sh +++ b/tools/typings-test/test.sh @@ -2,8 +2,9 @@ set -ex -o pipefail # 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=( - $(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/}