metamaps--metamaps/webpack.config.js

59 lines
1.4 KiB
JavaScript
Raw Normal View History

2016-08-11 11:42:35 +08:00
const webpack = require('webpack')
const NODE_ENV = process.env.NODE_ENV || 'development'
const plugins = [
new webpack.DefinePlugin({
"process.env.NODE_ENV": `"${NODE_ENV}"`
}),
new webpack.IgnorePlugin(/^mock-firmata$/), // work around bindings.js error
new webpack.ContextReplacementPlugin(/bindings$/, /^$/) // work around bindings.js error
2016-08-11 11:42:35 +08:00
]
const externals = ["bindings"] // work around bindings.js error
2016-08-11 11:42:35 +08:00
if (NODE_ENV === 'production') {
plugins.push(new webpack.optimize.UglifyJsPlugin({
compress: { warnings: false }
}))
2016-10-03 08:32:37 +08:00
} else {
// enable this to test for circular dependencies
// const CircularDependencyPlugin = require('circular-dependency-plugin')
// plugins.push(new CircularDependencyPlugin({
// exclude: /^node_modules\//,
// failOnError: true
// }))
2016-08-11 11:42:35 +08:00
}
2016-10-01 10:49:03 +08:00
const devtool = NODE_ENV === 'production' ? undefined : 'cheap-module-eval-source-map'
module.exports = {
context: __dirname,
2016-08-11 11:42:35 +08:00
plugins,
externals,
2016-10-01 10:49:03 +08:00
devtool,
module: {
loaders: [
{
test: /\.json$/, loader: 'json-loader'
},
{
test: /\.(js|jsx)?$/,
exclude: /node_modules/,
2016-10-03 08:32:37 +08:00
loader: 'babel-loader?cacheDirectory&retainLines=true'
}
]
},
entry: {
2018-02-15 13:47:28 -05:00
'metamaps.bundle': './src/index.js'
},
2018-02-15 13:47:28 -05:00
devServer: {
contentBase: './public'
},
output: {
2018-02-15 13:47:28 -05:00
path: __dirname + '/public',
2016-10-01 12:32:40 +08:00
filename: '[name].js',
2018-02-15 14:16:54 -05:00
devtoolModuleFilenameTemplate: '[absolute-resource-path]',
publicPath: '/'
}
}