File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,19 @@ cd $(dirname $0)/../..
1212$( npm bin) /gulp build:devapp
1313$( npm bin) /gulp :package:release
1414
15+ echo ' Rebuild demo-app with ES2015 modules'
1516# Rebuild demo-app with ES2015 modules. Closure compiler is then able to parse imports.
1617$( npm bin) /tsc -p src/demo-app/tsconfig-build.json --target ES2015 --module ES2015
1718
19+ echo ' Re-compile RxJS sources into ES2015'
1820# Re-compile RxJS sources into ES2015. Otherwise closure compiler can't parse it properly.
1921$( npm bin) /ngc -p scripts/closure-compiler/tsconfig-rxjs.json
2022
23+ echo ' Create a list of all RxJS source files.'
2124# Create a list of all RxJS source files.
2225rxjsSourceFiles=$( find dist/packages/rxjs -name ' *.js' ) ;
2326
27+ echo ' exports to the different RxJS ES2015 files'
2428# Due a Closure Compiler issue https://github.com/google/closure-compiler/issues/2247
2529# we need to add exports to the different RxJS ES2015 files.
2630for i in $rxjsSourceFiles ; do
You can’t perform that action at this time.
0 commit comments