mirror of
https://github.com/zebrajr/react.git
synced 2025-12-07 12:20:38 +01:00
52 lines
1.0 KiB
JavaScript
52 lines
1.0 KiB
JavaScript
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @emails react-core
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const webpack = require('webpack');
|
|
|
|
let __DEV__;
|
|
switch (process.env.NODE_ENV) {
|
|
case 'development':
|
|
__DEV__ = true;
|
|
break;
|
|
case 'production':
|
|
__DEV__ = false;
|
|
break;
|
|
default:
|
|
throw new Error('Unknown environment.');
|
|
}
|
|
|
|
module.exports = {
|
|
entry: './index',
|
|
output: {
|
|
library: 'update',
|
|
libraryTarget: 'umd',
|
|
filename: __DEV__ ? 'react-addons-update.js' : 'react-addons-update.min.js'
|
|
},
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
'process.env.NODE_ENV': __DEV__ ? '"development"' : '"production"'
|
|
})
|
|
].concat(
|
|
__DEV__
|
|
? []
|
|
: [
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
compress: {
|
|
warnings: false
|
|
},
|
|
output: {
|
|
comments: false
|
|
}
|
|
})
|
|
]
|
|
)
|
|
};
|