Skip to content

Commit

Permalink
Add for-of transform to babel configurations
Browse files Browse the repository at this point in the history
Summary:
Adds babel-plugin-transform-es2015-for-of to babel configuration.

public

Reviewed By: tadeuzagallo

Differential Revision: D2712220

fb-gh-sync-id: cc6dd9e6e70946607ef9bb9f659eb628cf2eb555
  • Loading branch information
davidaurelio authored and facebook-github-bot-0 committed Dec 2, 2015
1 parent 0418753 commit 5dc40af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -69,6 +69,7 @@
"babel-plugin-transform-es2015-computed-properties": "^6.0.14",
"babel-plugin-transform-es2015-constants": "^6.0.15",
"babel-plugin-transform-es2015-destructuring": "^6.0.18",
"babel-plugin-transform-es2015-for-of": "^6.0.14",
"babel-plugin-transform-es2015-modules-commonjs": "^6.1.3",
"babel-plugin-transform-es2015-parameters": "^6.0.18",
"babel-plugin-transform-es2015-shorthand-properties": "^6.0.14",
Expand Down
3 changes: 2 additions & 1 deletion packager/react-packager/.babelrc
Expand Up @@ -23,7 +23,8 @@
"transform-object-rest-spread",
"transform-react-display-name",
"transform-react-jsx",
"transform-regenerator"
"transform-regenerator",
"transform-es2015-for-of"
],
"sourceMaps": false
}

1 comment on commit 5dc40af

@mkonicek
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 Awesome!

Please sign in to comment.