Skip to content

Commit

Permalink
Clears the usage of react-jsx-source & react-jsx-self (facebook#992)
Browse files Browse the repository at this point in the history
Explain the usage of react-jsx-source & react-jsx-self
  • Loading branch information
sathishsoundharajan authored and jarlef committed Nov 28, 2016
1 parent 60b1a2f commit 58bc07e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/babel-preset-react-app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ if (env !== 'development' && env !== 'test' && env !== 'production') {
}

if (env === 'development' || env === 'test') {
// The following two plugins are currently necessary to make React warnings
// include more valuable information. They are included here because they are
// currently not enabled in babel-preset-react. See the below threads for more info:
// https://github.com/babel/babel/issues/4702
// https://github.com/babel/babel/pull/3540#issuecomment-228673661
// https://github.com/facebookincubator/create-react-app/issues/989
plugins.push.apply(plugins, [
// Adds component stack to warning messages
require.resolve('babel-plugin-transform-react-jsx-source'),
Expand Down Expand Up @@ -99,4 +105,3 @@ if (env === 'test') {
// ]);
}
}

0 comments on commit 58bc07e

Please sign in to comment.