@@ -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
```
@@ -311,20 +311,23 @@ We've updated a lot of packages over the last months in order to keep projects u
311
311
312
312
Additions or removals are found in bold below.
313
313
314
+ ` "angular-cli": {}, ` was ** removed**
315
+
314
316
Packages in ` dependencies ` :
315
317
- ` @angular/* ` packages now have a ` ^2.4.0 ` minimum (` ^3.4.0 ` for router)
316
318
- ` core-js ` remains unchanged at ` ^2.4.1 `
317
319
- ` rxjs ` to ` ^5.1.0 `
320
+ - ` ts-helpers ` was ** removed**
318
321
- ` zone.js ` to ` ^0.7.6 `
319
322
320
- Packages in ` dependencies ` :
323
+ Packages in ` devDependencies ` :
321
324
- ` @angular/cli ` at ` 1.0.0-rc.0 ` replaces ` angular-cli `
322
325
- ` @angular/compiler-cli ` is also at ` ^2.4.0 `
323
326
- ` @types/jasmine ` remains unchanged and pinned at ` 2.5.38 `
324
327
- ` @types/node ` was updated to ` ~6.0.60 `
325
328
- ` codelyzer ` was updated to ` ~2.0.0 `
326
329
- ` jasmine-core ` was updated to ` ~2.5.2 `
327
- - ` jasmine-spec-reporter ` was ** removed **
330
+ - ` jasmine-spec-reporter ` was updated to ~ 3.2.0
328
331
- ` karma ` was updated to ` ~1.4.1 `
329
332
- ` karma-chrome-launcher ` was updated to ` ~2.0.0 `
330
333
- ` karma-cli ` was updated to ` ~1.0.1 `
@@ -348,6 +351,7 @@ We also updated the scripts section to make it more simple:
348
351
"scripts": {
349
352
"ng": "ng",
350
353
"start": "ng serve",
354
+ "build": "ng build",
351
355
"test": "ng test",
352
356
"lint": "ng lint",
353
357
"e2e": "ng e2e"
@@ -456,4 +460,3 @@ Add these new rules:
456
460
457
461
Update ` no-inferrable-types ` to ` "no-inferrable-types": [true, "ignore-params"] ` .
458
462
459
-
0 commit comments