UNPKG

zoro-cli

Version:

https://github.com/vuejs/vue-cli

20 lines (19 loc) 319 B
module.exports = ({ api, rootOptions, Types }) => { const { type, bundler } = rootOptions; const { mobile, pc, weblib } = Types; const needWebpack = type === mobile || type === pc || type === weblib && bundler === 'webpack'; if (needWebpack) { api.render('./template'); } };