Skip to content

Commit

Permalink
feat(@angular/cli): support TypeScript 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Lyding authored and filipesilva committed May 4, 2017
1 parent 8c78fb9 commit 69d3d2b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"temp": "0.8.3",
"typescript": "~2.2.0",
"typescript": "~2.3.1",
"url-loader": "^0.5.7",
"walk-sync": "^0.3.1",
"webpack": "~2.4.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/@angular/cli/blueprints/ng/files/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@
"protractor": "~5.1.0",
"ts-node": "~2.0.0",
"tslint": "~5.1.0",
"typescript": "~2.2.0"
"typescript": "~2.3.1"
}
}
2 changes: 1 addition & 1 deletion packages/@angular/cli/lib/ast-tools/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function findNodes(node: ts.Node, kind: ts.SyntaxKind, max: number = Infi
export function removeAstNode(node: ts.Node): Change {
const source = node.getSourceFile();
return new RemoveChange(
source.path,
(source as any).path,
node.getStart(source),
node.getFullText(source)
);
Expand Down
2 changes: 1 addition & 1 deletion packages/@angular/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"temp": "0.8.3",
"typescript": ">=2.0.0 <2.3.0",
"typescript": ">=2.0.0 <2.4.0",
"url-loader": "^0.5.7",
"walk-sync": "^0.3.1",
"webpack": "~2.4.0",
Expand Down

0 comments on commit 69d3d2b

Please sign in to comment.