mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
72 lines
1.6 KiB
TypeScript
72 lines
1.6 KiB
TypeScript
import { get } from 'lodash';
|
|
import { join } from 'path';
|
|
import { pascalize, getComponents, smartOutputFile } from '../common';
|
|
import { SRC_DIR, PACKAGE_JSON, getVantConfig } from '../common/constant';
|
|
|
|
const version = process.env.PACKAGE_VERSION || PACKAGE_JSON.version;
|
|
|
|
type Options = {
|
|
outputPath: string;
|
|
pathResolver?: Function;
|
|
};
|
|
|
|
function genImports(components: string[], options: Options): string {
|
|
return components
|
|
.map(name => {
|
|
let path = join(SRC_DIR, name);
|
|
if (options.pathResolver) {
|
|
path = options.pathResolver(path);
|
|
}
|
|
|
|
return `import ${pascalize(name)} from '${path}';`;
|
|
})
|
|
.join('\n');
|
|
}
|
|
|
|
function genExports(names: string[]): string {
|
|
return names.map(name => `${name}`).join(',\n ');
|
|
}
|
|
|
|
export function genPackageEntry(options: Options) {
|
|
const names = getComponents();
|
|
const vantConfig = getVantConfig();
|
|
const skipInstall = get(vantConfig, 'build.skipInstall', []).map(pascalize);
|
|
|
|
const components = names.map(pascalize);
|
|
const content = `${genImports(names, options)}
|
|
|
|
const version = '${version}';
|
|
|
|
function install(Vue) {
|
|
const components = [
|
|
${components.filter(item => !skipInstall.includes(item)).join(',\n ')}
|
|
];
|
|
|
|
components.forEach(item => {
|
|
if (item.install) {
|
|
Vue.use(item);
|
|
} else if (item.name) {
|
|
Vue.component(item.name, item);
|
|
}
|
|
});
|
|
}
|
|
|
|
if (typeof window !== 'undefined' && window.Vue) {
|
|
install(window.Vue);
|
|
}
|
|
|
|
export {
|
|
install,
|
|
version,
|
|
${genExports(components)}
|
|
};
|
|
|
|
export default {
|
|
install,
|
|
version
|
|
};
|
|
`;
|
|
|
|
smartOutputFile(options.outputPath, content);
|
|
}
|