Skip to content

Commit

Permalink
add experimental babel-plugin-macros support (facebook#3675)
Browse files Browse the repository at this point in the history
* add experimental babel-plugin-macros support

closes facebook#2730

This will remain undocumented until the brave have tried it in the wild.

**Test Plan:**

There's currently no established way to test changes to
`babel-preset-react-app`. But I did create
[`unmaintained-react-scripts-babel-macros`](https://www.npmjs.com/package/unmaintained-react-scripts-babel-macros)
[a while back](facebook#2730 (comment))
and it worked well.

* Pin the version
  • Loading branch information
Kent C. Dodds authored and gaearon committed Jan 10, 2018
1 parent 7f121e3 commit 4390f74
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/babel-preset-react-app/index.js
Expand Up @@ -7,6 +7,9 @@
'use strict';

const plugins = [
// Experimental macros support. Will be documented after it's had some time
// in the wild.
require.resolve('babel-plugin-macros'),
// class { handleClick = () => { } }
require.resolve('babel-plugin-transform-class-properties'),
// The following two plugins use Object.assign directly, instead of Babel's
Expand Down
1 change: 1 addition & 0 deletions packages/babel-preset-react-app/package.json
Expand Up @@ -12,6 +12,7 @@
],
"dependencies": {
"babel-plugin-dynamic-import-node": "1.1.0",
"babel-plugin-macros": "2.0.0",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
Expand Down

0 comments on commit 4390f74

Please sign in to comment.