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

Breaking: Bump to [email protected], typescript@~3.2.1 #576

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ The following additional configuration options are available by specifying them

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

The version of TypeScript currently supported by this parser is `~3.1.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.
The version of TypeScript currently supported by this parser is `~3.2.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.

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

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"dependencies": {
"eslint-scope": "^4.0.0",
"eslint-visitor-keys": "^1.0.0",
"typescript-estree": "5.3.0"
"typescript-estree": "^6.0.0"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

7.0.0 just came out

Copy link
Contributor

@armano2 armano2 Dec 20, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

7.0.0 has breaking changes -> ast structure has changed
JamesHenry/typescript-estree@159c325

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@KaelWD i did pr with changes for 7.0.0 in #584

},
"devDependencies": {
"eslint": "^4.19.1",
Expand All @@ -57,7 +57,7 @@
"npm-license": "0.3.3",
"shelljs": "0.8.2",
"shelljs-nodecli": "0.1.1",
"typescript": "~3.1.1"
"typescript": "~3.2.1"
},
"jest": {
"testEnvironment": "node",
Expand Down
1 change: 1 addition & 0 deletions tests/fixtures/ecma-features/bigIntLiterals/binary.src.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0b1n;
1 change: 1 addition & 0 deletions tests/fixtures/ecma-features/bigIntLiterals/decimal.src.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1n;
1 change: 1 addition & 0 deletions tests/fixtures/ecma-features/bigIntLiterals/hex.src.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0x1n;
1 change: 1 addition & 0 deletions tests/fixtures/ecma-features/bigIntLiterals/octal.src.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0o1n;
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"devDependencies": {
"eslint": "4.19.1",
"jest": "23.1.0",
"typescript": "~3.1.1"
"typescript": "~3.2.1"
}
}
}
4 changes: 2 additions & 2 deletions tests/integration/jsdoc-indent-issues-344-422/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"devDependencies": {
"eslint": "4.19.1",
"jest": "23.1.0",
"typescript": "~3.1.1"
"typescript": "~3.2.1"
}
}
}
4 changes: 2 additions & 2 deletions tests/integration/method-overloads-issue-389/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"devDependencies": {
"eslint": "4.19.1",
"jest": "23.1.0",
"typescript": "~3.1.1"
"typescript": "~3.2.1"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"devDependencies": {
"eslint": "4.19.1",
"jest": "23.1.0",
"typescript": "~3.1.1"
"typescript": "~3.2.1"
}
}
}
4 changes: 2 additions & 2 deletions tests/integration/range-error-indent-issue-333/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"devDependencies": {
"eslint": "4.19.1",
"jest": "23.1.0",
"typescript": "~3.1.1"
"typescript": "~3.2.1"
}
}
}
Loading