48 lines
981 B
JavaScript
48 lines
981 B
JavaScript
|
var path = require('path')
|
||
|
var webpack = require('webpack')
|
||
|
|
||
|
module.exports = {
|
||
|
entry: './src/main.js',
|
||
|
output: {
|
||
|
path: path.resolve(__dirname, './dist'),
|
||
|
publicPath: '/dist/',
|
||
|
filename: 'vue-radial-progress.min.js',
|
||
|
library: 'RadialProgressBar',
|
||
|
libraryTarget: 'umd',
|
||
|
umdNamedDefine: true
|
||
|
},
|
||
|
|
||
|
module: {
|
||
|
loaders: [
|
||
|
{
|
||
|
test: /\.vue$/,
|
||
|
loader: 'vue'
|
||
|
},
|
||
|
{
|
||
|
test: /\.js$/,
|
||
|
loader: 'babel',
|
||
|
exclude: /node_modules/
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
devtool: '#eval-source-map'
|
||
|
}
|
||
|
|
||
|
if (process.env.NODE_ENV === 'production') {
|
||
|
module.exports.devtool = false
|
||
|
module.exports.plugins = (module.exports.plugins || []).concat([
|
||
|
new webpack.DefinePlugin({
|
||
|
'process.env': {
|
||
|
NODE_ENV: '"production"'
|
||
|
}
|
||
|
}),
|
||
|
new webpack.optimize.UglifyJsPlugin({
|
||
|
compress: {
|
||
|
warnings: false
|
||
|
},
|
||
|
sourceMap: false
|
||
|
}),
|
||
|
new webpack.optimize.OccurenceOrderPlugin()
|
||
|
])
|
||
|
}
|