mirror of https://github.com/status-im/metro.git
[react-packager] In production resolve __DEV__ to NODE_ENV === 'development'
This commit is contained in:
parent
3555afb66d
commit
9c9814c134
|
@ -13,6 +13,12 @@
|
|||
var babel = require('babel-core');
|
||||
|
||||
function transform(srcTxt, filename, options) {
|
||||
var plugins = [];
|
||||
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
plugins = plugins.concat(['node-env-inline', 'dunderscore-dev-inline']);
|
||||
}
|
||||
|
||||
var result = babel.transform(srcTxt, {
|
||||
retainLines: true,
|
||||
compact: true,
|
||||
|
@ -35,7 +41,7 @@ function transform(srcTxt, filename, options) {
|
|||
'react',
|
||||
'regenerator',
|
||||
],
|
||||
plugins: ['node-env-inline'],
|
||||
plugins: plugins,
|
||||
sourceFileName: filename,
|
||||
sourceMaps: false,
|
||||
extra: options || {},
|
||||
|
|
Loading…
Reference in New Issue