-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathwebpack.config.js
36 lines (35 loc) · 1.13 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
var path = require('path');
var webpack = require('webpack');
var autoprefixer = require('autoprefixer');
var pkg = require('./package.json');
var banner = `${pkg.name} v${pkg.version}\n${pkg.description}\n${pkg.homepage}\n@author ${pkg.author}`;
module.exports = {
entry: {
'vue-swiper': path.join(__dirname, 'src/vue-swiper.vue')
},
output: {
path: path.join(__dirname, 'dist'),
publicPath: '/',
library: 'VueSwiper',
libraryTarget: 'umd',
filename: "[name].js"
},
module: {
loaders: [
{test: /\.js$/, loader: 'babel', exclude: /node_modules/},
{test: /\.vue$/, loader: 'vue'},
{test: /\.less$/, loader: "css?sourceMap!postcss!less?sourceMap"}
]
},
postcss: [autoprefixer({browsers: ['last 2 versions', 'Android 2.3']})],
babel: {
"presets": ["es2015"]
},
plugins: []
};
if (process.env.NODE_ENV === 'dev') {
module.exports.devtool = '#eval-source-map';
} else {
module.exports.plugins.push(new webpack.optimize.UglifyJsPlugin());
module.exports.plugins.push(new webpack.BannerPlugin(banner));
}