vant/build/webpack.build.js
张敏 6331645a51 修复:webpack打包修复 (#21)
* 修复打包逻辑问题
2017-04-26 18:02:19 +08:00

49 lines
911 B
JavaScript

var webpack = require('webpack');
var getPostcssPlugin = require('./utils/postcss_pipe');
var config = require('./webpack.config.dev.js');
config.entry = {
'vant': './src/index.js'
};
config.output = {
filename: './lib/[name].js',
library: 'vant',
libraryTarget: 'umd'
};
config.externals = {
vue: {
root: 'Vue',
commonjs: 'vue',
commonjs2: 'vue',
amd: 'vue'
}
};
config.plugins = [
new webpack.DefinePlugin({
'process.env.NODE_ENV': '"production"'
}),
new webpack.LoaderOptionsPlugin({
minimize: true,
debug: false,
options: {
postcss: getPostcssPlugin,
babel: {
presets: ['es2015'],
plugins: ['transform-runtime', 'transform-vue-jsx']
},
vue: {
autoprefixer: false,
preserveWhitespace: false,
postcss: getPostcssPlugin
}
}
})
];
delete config.devtool;
module.exports = config;