Skip to content

Commit

Permalink
Fix an issue where helpers were not included in external node_modules…
Browse files Browse the repository at this point in the history
… imported through babel
  • Loading branch information
tannerlinsley committed Dec 19, 2018
1 parent a6125ba commit 7f4f7b0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,9 @@
# 6.0.9

#### Fixes & Optimizations

- Fixed an issue where helpers were not included in external node_modules imported through babel

# 6.0.8

#### Fixes & Optimizations
Expand Down
2 changes: 1 addition & 1 deletion packages/react-static/babelPreset.js
Expand Up @@ -48,7 +48,7 @@ module.exports = (api, options = {}) => {
[
r('@babel/plugin-transform-runtime'),
{
helpers: false,
helpers: !!options.helpers,
regenerator: true,
},
],
Expand Down

0 comments on commit 7f4f7b0

Please sign in to comment.