diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c95d15..4136ac6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - +### Bugfixes +- fix module compiling in node 10 (class properties) + ## [1.0.0-rc4] - 2019-02-10 ### Bugfixes diff --git a/babel.config.json b/babel.config.json index 7cdd358..fc69aa9 100644 --- a/babel.config.json +++ b/babel.config.json @@ -13,6 +13,7 @@ "plugins": [ "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-export-default-from", - "@babel/plugin-proposal-async-generator-functions" + "@babel/plugin-proposal-async-generator-functions", + "@babel/plugin-proposal-class-properties" ] }