Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 jsx developer
// friendly messages, if you wondering why it is added here seprately rather
// it comes with 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') {
// ]);
}
}