Skip to content

Commit f0c0cec

Browse files
committed
1.8.0
1 parent e211dc2 commit f0c0cec

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## 1.8.0
8+
* Upgrade acorn to v7.
9+
10+
For backwards compatibility, `acorn-node` still uses the `Import` node type for dynamic imports, _NOT_ `ImportExpression` like acorn v7 and estree.
11+
* Add numeric separator support:
12+
```js
13+
var a = 10_000_000_000_000_000_000_000_000n;
14+
```
15+
716
## 1.7.0
817
* Add class instance fields support:
918
```js

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "acorn-node",
33
"description": "the acorn javascript parser, preloaded with plugins for syntax parity with recent node versions",
4-
"version": "1.7.0",
4+
"version": "1.8.0",
55
"author": "Renée Kooi <renee@kooi.me>",
66
"bugs": {
77
"url": "https://github.com/browserify/acorn-node/issues"

0 commit comments

Comments
 (0)