@@ -292,7 +292,7 @@ Then update `protractor.conf.js` to use the e2e config as well:
292
292
```
293
293
beforeLaunch: function() {
294
294
require('ts-node').register({
295
- project: 'e2e'
295
+ project: 'e2e/tsconfig.e2e.json '
296
296
});
297
297
},
298
298
```
@@ -303,20 +303,23 @@ We've updated a lot of packages over the last months in order to keep projects u
303
303
304
304
Additions or removals are found in bold below.
305
305
306
+ ` "angular-cli": {}, ` was ** removed**
307
+
306
308
Packages in ` dependencies ` :
307
309
- ` @angular/* ` packages now have a ` ^2.4.0 ` minimum (` ^3.4.0 ` for router)
308
310
- ` core-js ` remains unchanged at ` ^2.4.1 `
309
311
- ` rxjs ` to ` ^5.1.0 `
312
+ - ` ts-helpers ` was ** removed**
310
313
- ` zone.js ` to ` ^0.7.6 `
311
314
312
- Packages in ` dependencies ` :
315
+ Packages in ` devDependencies ` :
313
316
- ` @angular/cli ` at ` 1.0.0-rc.0 ` replaces ` angular-cli `
314
317
- ` @angular/compiler-cli ` is also at ` ^2.4.0 `
315
318
- ` @types/jasmine ` remains unchanged and pinned at ` 2.5.38 `
316
319
- ` @types/node ` was updated to ` ~6.0.60 `
317
320
- ` codelyzer ` was updated to ` ~2.0.0 `
318
321
- ` jasmine-core ` was updated to ` ~2.5.2 `
319
- - ` jasmine-spec-reporter ` was ** removed **
322
+ - ` jasmine-spec-reporter ` was updated to ~ 3.2.0
320
323
- ` karma ` was updated to ` ~1.4.1 `
321
324
- ` karma-chrome-launcher ` was updated to ` ~2.0.0 `
322
325
- ` karma-cli ` was updated to ` ~1.0.1 `
@@ -340,6 +343,7 @@ We also updated the scripts section to make it more simple:
340
343
"scripts": {
341
344
"ng": "ng",
342
345
"start": "ng serve",
346
+ "build": "ng build"
343
347
"test": "ng test",
344
348
"lint": "ng lint",
345
349
"e2e": "ng e2e"
@@ -448,4 +452,3 @@ Add these new rules:
448
452
449
453
Update ` no-inferrable-types ` to ` "no-inferrable-types": [true, "ignore-params"] ` .
450
454
451
-
0 commit comments