File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 115
115
"ts-node" : " ^3.0.0" ,
116
116
"tslint" : " ^5.0.0" ,
117
117
"tslint-no-unused-var" : " 0.0.6" ,
118
- "typescript" : " ~2.1 .1" ,
118
+ "typescript" : " ~2.2 .1" ,
119
119
"uglify-js" : " ^2.8.14" ,
120
120
"web-animations-js" : " ^2.2.2"
121
121
}
Original file line number Diff line number Diff line change @@ -12,15 +12,19 @@ cd $(dirname $0)/../..
12
12
$( npm bin) /gulp build:devapp
13
13
$( npm bin) /gulp :package:release
14
14
15
+ echo ' Rebuild demo-app with ES2015 modules'
15
16
# Rebuild demo-app with ES2015 modules. Closure compiler is then able to parse imports.
16
17
$( npm bin) /tsc -p src/demo-app/tsconfig-build.json --target ES2015 --module ES2015
17
18
19
+ echo ' Re-compile RxJS sources into ES2015'
18
20
# Re-compile RxJS sources into ES2015. Otherwise closure compiler can't parse it properly.
19
21
$( npm bin) /ngc -p scripts/closure-compiler/tsconfig-rxjs.json
20
22
23
+ echo ' Create a list of all RxJS source files.'
21
24
# Create a list of all RxJS source files.
22
25
rxjsSourceFiles=$( find dist/packages/rxjs -name ' *.js' ) ;
23
26
27
+ echo ' exports to the different RxJS ES2015 files'
24
28
# Due a Closure Compiler issue https://github.com/google/closure-compiler/issues/2247
25
29
# we need to add exports to the different RxJS ES2015 files.
26
30
for i in $rxjsSourceFiles ; do
You can’t perform that action at this time.
0 commit comments