From a7121e28a1db08c9d366fd0b04100285dfb33498 Mon Sep 17 00:00:00 2001 From: Sathish Date: Thu, 17 Nov 2016 18:24:12 +0530 Subject: [PATCH] Clears the usage of react-jsx-source & react-jsx-self (#992) Explain the usage of react-jsx-source & react-jsx-self --- packages/babel-preset-react-app/index.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/babel-preset-react-app/index.js b/packages/babel-preset-react-app/index.js index 7af36414246..2aa1641ce35 100644 --- a/packages/babel-preset-react-app/index.js +++ b/packages/babel-preset-react-app/index.js @@ -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'), @@ -99,4 +105,3 @@ if (env === 'test') { // ]); } } -