Skip to content
This repository was archived by the owner on Jan 19, 2019. It is now read-only.

Commit 46479e8

Browse files
authored
Breaking: Support TypeScript 2.6 (fixes #394) (#397)
1 parent 5e9e7fa commit 46479e8

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ node_js:
66
- "6"
77
- "7"
88
- "8"
9+
- "9"
910
after_success:
1011
- npm run coveralls

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A parser that converts TypeScript into an [ESTree](https://github.com/estree/est
88

99
We will always endeavor to support the latest stable version of TypeScript.
1010

11-
The version of TypeScript currently supported by this parser is `~2.5.1`. This is reflected in the `devDependency` requirement within the package.json file, and it is what the tests will be run against. We have an open `peerDependency` requirement in order to allow for experimentation on newer/beta versions of TypeScript.
11+
The version of TypeScript currently supported by this parser is `~2.6.1`. This is reflected in the `devDependency` requirement within the package.json file, and it is what the tests will be run against. We have an open `peerDependency` requirement in order to allow for experimentation on newer/beta versions of TypeScript.
1212

1313
If you use a non-supported version of TypeScript, the parser will log a warning to the console.
1414

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@
1818
},
1919
"license": "BSD-2-Clause",
2020
"devDependencies": {
21-
"babel-code-frame": "^6.26.0",
21+
"babel-code-frame": "6.26.0",
2222
"babylon": "7.0.0-beta.24",
23-
"eslint": "4.6.1",
23+
"eslint": "4.10.0",
2424
"eslint-config-eslint": "4.0.0",
25-
"eslint-plugin-node": "5.1.1",
25+
"eslint-plugin-node": "5.2.1",
2626
"eslint-release": "0.10.3",
27-
"glob": "^7.1.2",
28-
"jest": "21.0.1",
29-
"lodash.isplainobject": "^4.0.6",
27+
"glob": "7.1.2",
28+
"jest": "21.2.1",
29+
"lodash.isplainobject": "4.0.6",
3030
"npm-license": "0.3.3",
3131
"shelljs": "0.7.8",
3232
"shelljs-nodecli": "0.1.1",
33-
"typescript": "~2.5.1"
33+
"typescript": "~2.6.1"
3434
},
3535
"keywords": [
3636
"ast",

0 commit comments

Comments
 (0)