mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(cli): should check style exists when gen component style entry
This commit is contained in:
parent
e8304a01bf
commit
fad44923fb
@ -6,6 +6,7 @@ import { join, relative } from 'path';
|
||||
import { outputFileSync } from 'fs-extra';
|
||||
import { getComponents, replaceExt } from '../common';
|
||||
import { CSS_LANG, getCssBaseFile } from '../common/css';
|
||||
import { checkStyleExists } from './gen-style-deps-map';
|
||||
import {
|
||||
ES_DIR,
|
||||
SRC_DIR,
|
||||
@ -17,7 +18,13 @@ function getDeps(component: string): string[] {
|
||||
const styleDepsJson = require(STYPE_DEPS_JSON_FILE);
|
||||
|
||||
if (styleDepsJson.map[component]) {
|
||||
return [...styleDepsJson.map[component], component];
|
||||
const deps = styleDepsJson.map[component].slice(0);
|
||||
|
||||
if (checkStyleExists(component)) {
|
||||
deps.push(component);
|
||||
}
|
||||
|
||||
return deps;
|
||||
}
|
||||
|
||||
return [];
|
||||
|
@ -18,7 +18,7 @@ function getStylePath(component: string) {
|
||||
return join(SRC_DIR, `${component}/index.${CSS_LANG}`);
|
||||
}
|
||||
|
||||
function checkStyleExists(component: string) {
|
||||
export function checkStyleExists(component: string) {
|
||||
return existsSync(getStylePath(component));
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user