Skip to content

Commit b6b00eb

Browse files
filipesilvaalexeagle
authored andcommitted
build: update typescript to version 3.4.3
1 parent 0a59307 commit b6b00eb

File tree

10 files changed

+5406
-2879
lines changed

10 files changed

+5406
-2879
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"quicktype-core": "^6.0.15",
7575
"temp": "^0.9.0",
7676
"tslint": "^5.13.1",
77-
"typescript": "3.3.4000"
77+
"typescript": "3.4.3"
7878
},
7979
"devDependencies": {
8080
"@angular/compiler": "^8.0.0-beta.11",

packages/angular/cli/models/schematic-command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ export abstract class SchematicCommand<
492492
}
493493

494494
const pathOptions = o ? this.setPathOptions(o, workingDir) : {};
495-
let input = Object.assign(pathOptions, args);
495+
let input = { ...pathOptions, ...args };
496496

497497
// Read the default values from the workspace.
498498
const projectName = input.project !== undefined ? '' + input.project : null;

packages/angular_devkit/build_angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,6 @@
8787
"zone.js": "^0.9.0"
8888
},
8989
"peerDependencies": {
90-
"typescript": ">=2.7 < 3.4"
90+
"typescript": ">=2.7 < 3.5"
9191
}
9292
}

packages/angular_devkit/build_optimizer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"dependencies": {
1212
"loader-utils": "1.2.3",
1313
"source-map": "0.5.6",
14-
"typescript": "3.3.4000",
14+
"typescript": "3.4.3",
1515
"webpack-sources": "1.3.0"
1616
}
1717
}

packages/ngtools/webpack/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@
2929
},
3030
"peerDependencies": {
3131
"@angular/compiler-cli": ">=6.0.0 <9.0.0 || ^8.0.0-beta.0",
32-
"typescript": ">=2.7 < 3.4",
32+
"typescript": ">=2.7 < 3.5",
3333
"webpack": "^4.0.0"
3434
},
3535
"devDependencies": {
3636
"@angular/compiler": "^8.0.0-beta.11",
3737
"@angular/compiler-cli": "^8.0.0-beta.11",
38-
"typescript": "3.3.4000",
38+
"typescript": "3.4.3",
3939
"webpack": "4.29.6"
4040
}
4141
}

0 commit comments

Comments
 (0)