Skip to content

Commit

Permalink
v3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alangpierce committed Nov 12, 2018
1 parent fadf8af commit 9fdabab
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 9 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 3.7.0 (2018-11-21)

* Fix perf regression in TypeScript parsing ([#327])
* Fix broken line numbers in syntax errors, improve parser backtracking performance ([#331])
* Add Parser features and bugfixes from the Babel parser, including TypeScript 3.0 support ([#333])

# 3.6.0 (2018-10-29)

* Add CLI support for jsx pragmas ([#321]) (Josiah Savary)
Expand Down Expand Up @@ -120,3 +126,6 @@
[#317]: https://github.com/alangpierce/sucrase/pull/317
[#321]: https://github.com/alangpierce/sucrase/pull/321
[#324]: https://github.com/alangpierce/sucrase/pull/324
[#327]: https://github.com/alangpierce/sucrase/pull/327
[#331]: https://github.com/alangpierce/sucrase/pull/331
[#333]: https://github.com/alangpierce/sucrase/pull/333
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sucrase",
"version": "3.6.0",
"version": "3.7.0",
"description": "Super-fast alternative to Babel for when you can target modern JS runtimes",
"author": "Alan Pierce <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -65,7 +65,7 @@
"mocha": "^3.5.3",
"nyc": "^12.0.2",
"prettier": "^1.12.1",
"sucrase": "^3.6.0",
"sucrase": "^3.7.0",
"tslint": "^5.9.1",
"tslint-language-service": "^0.9.9",
"typescript": "^2.9.1",
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"react-monaco-editor": "^0.10.1",
"react-virtualized": "^9.14.1",
"style-loader": "0.18.2",
"sucrase": "^3.6.0",
"sucrase": "^3.7.0",
"sw-precache-webpack-plugin": "0.11.4",
"typescript": "^2.8.3",
"uglifyjs-webpack-plugin": "^1.1.4",
Expand Down
7 changes: 4 additions & 3 deletions website/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6236,9 +6236,10 @@ [email protected]:
loader-utils "^1.0.2"
schema-utils "^0.3.0"

sucrase@^3.6.0:
version "3.6.0"
resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.6.0.tgz#2b3cf5d39bb2da58efc171b90b3cd367e85b3c04"
sucrase@^3.7.0:
version "3.7.0"
resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.7.0.tgz#d167b54498b8278f7cd874037b25b5489b6671a2"
integrity sha512-VFKLwscIt5Y8wtjpiYOHtdrMZz1VmUNNVSpXmHVDHPi7eRW8mkP9ISlQjv/X8ranYmvvPqt5hvLHKymG7o4ikQ==
dependencies:
commander "^2.12.2"
lines-and-columns "^1.1.6"
Expand Down
7 changes: 4 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2911,9 +2911,10 @@ strip-json-comments@~2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"

sucrase@^3.6.0:
version "3.6.0"
resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.6.0.tgz#2b3cf5d39bb2da58efc171b90b3cd367e85b3c04"
sucrase@^3.7.0:
version "3.7.0"
resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.7.0.tgz#d167b54498b8278f7cd874037b25b5489b6671a2"
integrity sha512-VFKLwscIt5Y8wtjpiYOHtdrMZz1VmUNNVSpXmHVDHPi7eRW8mkP9ISlQjv/X8ranYmvvPqt5hvLHKymG7o4ikQ==
dependencies:
commander "^2.12.2"
lines-and-columns "^1.1.6"
Expand Down

0 comments on commit 9fdabab

Please sign in to comment.