parent
20185e5aac
commit
039bd3c9f9
@ -14,6 +14,7 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
const HappyPack = require('happypack');
|
||||||
const webpack = require('webpack');
|
const webpack = require('webpack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV || 'development';
|
const ENV = process.env.NODE_ENV || 'development';
|
||||||
@ -22,10 +23,26 @@ const DEST = process.env.BUILD_DEST || '.build';
|
|||||||
|
|
||||||
let modules = [
|
let modules = [
|
||||||
'babel-polyfill',
|
'babel-polyfill',
|
||||||
'browserify-aes', 'ethereumjs-tx', 'scryptsy',
|
'bignumber.js',
|
||||||
'react', 'react-dom', 'react-redux', 'react-router',
|
'blockies',
|
||||||
'redux', 'redux-thunk', 'react-router-redux',
|
'brace',
|
||||||
'lodash', 'material-ui', 'moment', 'blockies'
|
'browserify-aes',
|
||||||
|
'chart.js',
|
||||||
|
'ethereumjs-tx',
|
||||||
|
'lodash',
|
||||||
|
'material-ui',
|
||||||
|
'mobx',
|
||||||
|
'mobx-react',
|
||||||
|
'moment',
|
||||||
|
'react',
|
||||||
|
'react-dom',
|
||||||
|
'react-redux',
|
||||||
|
'react-router',
|
||||||
|
'react-router-redux',
|
||||||
|
'recharts',
|
||||||
|
'redux',
|
||||||
|
'redux-thunk',
|
||||||
|
'scryptsy'
|
||||||
];
|
];
|
||||||
|
|
||||||
if (!isProd) {
|
if (!isProd) {
|
||||||
@ -44,6 +61,11 @@ module.exports = {
|
|||||||
{
|
{
|
||||||
test: /\.json$/,
|
test: /\.json$/,
|
||||||
loaders: ['json']
|
loaders: ['json']
|
||||||
|
},
|
||||||
|
{
|
||||||
|
test: /\.js$/,
|
||||||
|
include: /(ethereumjs-tx)/,
|
||||||
|
loaders: [ 'happypack/loader?id=js' ]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -63,6 +85,12 @@ module.exports = {
|
|||||||
'process.env': {
|
'process.env': {
|
||||||
NODE_ENV: JSON.stringify(ENV)
|
NODE_ENV: JSON.stringify(ENV)
|
||||||
}
|
}
|
||||||
|
}),
|
||||||
|
|
||||||
|
new HappyPack({
|
||||||
|
id: 'js',
|
||||||
|
threads: 4,
|
||||||
|
loaders: ['babel']
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user