Skip to content

Commit

Permalink
1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop committed May 24, 2019
1 parent ae4126d commit 5a623a5
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.

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

## 1.7.0
* Add class instance fields support:
```js
class X {
public = 1;
#private = 2;
}
```
* Add class static fields support:
```js
class X {
static public = 1;
static #private = 2;
}
```
* Add `export * as ns` support when `sourceType` is 'module':
```js
export * as ns from './ns.mjs';
```

## 1.6.2

* Allow dynamic `import()` in scripts.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "acorn-node",
"description": "the acorn javascript parser, preloaded with plugins for syntax parity with recent node versions",
"version": "1.6.2",
"version": "1.7.0",
"author": "Renée Kooi <renee@kooi.me>",
"bugs": {
"url": "https://github.com/browserify/acorn-node/issues"
Expand Down

0 comments on commit 5a623a5

Please sign in to comment.