fix(cli): compatible with export { default }

This commit is contained in:
陈嘉涵 2019-12-24 14:39:13 +08:00
parent 8318cfb1e8
commit 85d735e669

View File

@ -26,6 +26,10 @@ export function replaceExt(path: string, ext: string) {
return path.replace(EXT_REGEXP, ext);
}
export function hasDefaultExport(code: string) {
return code.includes('export default') || code.includes('export { default }');
}
export function getComponents() {
const EXCLUDES = ['.DS_Store'];
const dirs = readdirSync(SRC_DIR);
@ -35,7 +39,7 @@ export function getComponents() {
ENTRY_EXTS.some(ext => {
const path = join(SRC_DIR, dir, `index.${ext}`);
if (existsSync(path)) {
return readFileSync(path, 'utf-8').indexOf('export default') !== -1;
return hasDefaultExport(readFileSync(path, 'utf-8'));
}
return false;