打包配置去除loadsh依赖

This commit is contained in:
cookfront 2017-02-10 16:16:46 +08:00
parent 20683ba131
commit 6629dcce59

View File

@ -8,12 +8,6 @@ var OUTPUT_PATH = path.join(__dirname, '../../src/index.js');
var IMPORT_TEMPLATE = 'import {{name}} from \'../packages/{{package}}/index.js\';';
var ISNTALL_COMPONENT_TEMPLATE = ' Vue.component({{name}}.name, {{name}});';
var MAIN_TEMPLATE = `{{include}}
import 'es6-promise/auto';
import axios from 'axios';
import foreach from 'lodash/foreach';
import filter from 'lodash/filter';
import find from 'lodash/find';
import map from 'lodash/map';
// zenui
import '../packages/zenui/src/index.pcss';
@ -31,13 +25,6 @@ if (typeof window !== 'undefined' && window.Vue) {
module.exports = {
install,
version: '{{version}}',
axios,
_: {
foreach,
filter,
find,
map
},
{{list}}
};
`;