mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(cli): skip install should not skip export
This commit is contained in:
parent
8e8892b323
commit
0858c0499e
@ -28,22 +28,20 @@ function genExports(names: string[]): string {
|
||||
}
|
||||
|
||||
export function genPackageEntry(options: Options) {
|
||||
const names = getComponents();
|
||||
const vantConfig = getVantConfig();
|
||||
const components = getComponents();
|
||||
const skipInstall = get(vantConfig, 'build.skipInstall', []);
|
||||
const skipInstall = get(vantConfig, 'build.skipInstall', []).map(pascalize);
|
||||
|
||||
const names = components
|
||||
.filter(item => !skipInstall.includes(item))
|
||||
.map(item => pascalize(item));
|
||||
|
||||
const content = `${genImports(components, options)}
|
||||
const components = names.map(pascalize);
|
||||
const content = `${genImports(names, options)}
|
||||
|
||||
const version = '${version}';
|
||||
const components = [
|
||||
${names.join(',\n ')}
|
||||
];
|
||||
|
||||
function install(Vue) {
|
||||
const components = [
|
||||
${components.filter(item => !skipInstall.includes(item)).join(',\n ')}
|
||||
];
|
||||
|
||||
components.forEach(item => {
|
||||
if (item.install) {
|
||||
Vue.use(item);
|
||||
@ -60,7 +58,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
||||
export {
|
||||
install,
|
||||
version,
|
||||
${genExports(names)}
|
||||
${genExports(components)}
|
||||
};
|
||||
|
||||
export default {
|
||||
|
Loading…
x
Reference in New Issue
Block a user