From abca519487b6fdf692c3cdff9415fcaf1833b251 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Wed, 29 Mar 2017 21:04:05 +0200 Subject: [PATCH] build: fix closure tsconfig path * Due to the TSConfig file renaming in #3791 and the fact that they were merged at the same time, the path in the closure-compiler script is now invalid. --- scripts/closure-compiler/build-devapp-bundle.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/closure-compiler/build-devapp-bundle.sh b/scripts/closure-compiler/build-devapp-bundle.sh index 97d3523239b1..a292742d526f 100755 --- a/scripts/closure-compiler/build-devapp-bundle.sh +++ b/scripts/closure-compiler/build-devapp-bundle.sh @@ -13,7 +13,7 @@ $(npm bin)/gulp build:devapp $(npm bin)/gulp :package:release # Rebuild demo-app with ES2015 modules. Closure compiler is then able to parse imports. -$(npm bin)/tsc -p src/demo-app/ --target ES2015 --module ES2015 +$(npm bin)/tsc -p src/demo-app/tsconfig-build.json --target ES2015 --module ES2015 # Re-compile RxJS sources into ES2015. Otherwise closure compiler can't parse it properly. $(npm bin)/ngc -p scripts/closure-compiler/tsconfig-rxjs.json