fix node 10 support

This commit is contained in:
Marin Petrunić 2020-02-10 15:06:26 +01:00
parent 2533f3746d
commit 42fb8d75ac
No known key found for this signature in database
GPG Key ID: 834D07135E110DA5
2 changed files with 5 additions and 1 deletions

View File

@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] - ## [Unreleased] -
### Bugfixes
- fix module compiling in node 10 (class properties)
## [1.0.0-rc4] - 2019-02-10 ## [1.0.0-rc4] - 2019-02-10
### Bugfixes ### Bugfixes

View File

@ -13,6 +13,7 @@
"plugins": [ "plugins": [
"@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-export-default-from", "@babel/plugin-proposal-export-default-from",
"@babel/plugin-proposal-async-generator-functions" "@babel/plugin-proposal-async-generator-functions",
"@babel/plugin-proposal-class-properties"
] ]
} }