@@ -221,20 +221,24 @@ private void addDependencies(SemVer angularVersion) {
221
221
supportingFiles .add (new SupportingFile ("package.mustache" , getIndexDirectory (), "package.json" ));
222
222
supportingFiles .add (new SupportingFile ("ng-package.mustache" , getIndexDirectory (), "ng-package.json" ));
223
223
supportingFiles .add (new SupportingFile ("tsconfig.mustache" , getIndexDirectory (), "tsconfig.json" ));
224
- additionalProperties .put ("zonejsVersion" , "0.10.2" );
224
+ additionalProperties .put ("zonejsVersion" , "0.11.4" );
225
+
226
+ final String tsVersion = "tsVersion" ;
227
+ final String ngPackagrVersion = "ngPackagrVersion" ;
228
+ final String rxjsVersion = "rxjsVersion" ;
225
229
226
230
if (angularVersion .atLeast ("13.0.0" )) {
227
- additionalProperties .put (" tsVersion" , ">=4.4.2" );
228
- additionalProperties .put (" ngPackagrVersion" , "13.0.1" );
229
- additionalProperties .put (" rxjsVersion" , "7.0.1 " );
231
+ additionalProperties .put (tsVersion , ">=4.4.2" );
232
+ additionalProperties .put (ngPackagrVersion , "13.0.1" );
233
+ additionalProperties .put (rxjsVersion , "7.5.0 " );
230
234
} else if (angularVersion .atLeast ("11.0.0" )) {
231
- additionalProperties .put (" tsVersion" , ">=4.2.0" );
232
- additionalProperties .put (" ngPackagrVersion" , "11.0.0" );
233
- additionalProperties .put (" rxjsVersion" , "6.6.0" );
235
+ additionalProperties .put (tsVersion , ">=4.2.0" );
236
+ additionalProperties .put (ngPackagrVersion , "11.0.0" );
237
+ additionalProperties .put (rxjsVersion , "6.6.0" );
234
238
} else {
235
- additionalProperties .put (" tsVersion" , ">=3.9.2" );
236
- additionalProperties .put (" ngPackagrVersion" , "10.0.3" );
237
- additionalProperties .put (" rxjsVersion" , "6.6.0" );
239
+ additionalProperties .put (tsVersion , ">=3.9.2" );
240
+ additionalProperties .put (ngPackagrVersion , "10.0.3" );
241
+ additionalProperties .put (rxjsVersion , "6.6.0" );
238
242
}
239
243
}
240
244
}
0 commit comments