vant/build/webpack.components.js
2017-03-09 21:02:54 +08:00

19 lines
296 B
JavaScript

var Components = require('../components.json');
var config = require('./webpack.config.js');
delete config.devtool;
config.entry = Components;
config.externals = {
vue: 'vue'
};
config.output = {
path: './lib',
filename: '[name].js',
libraryTarget: 'umd'
};
module.exports = config;