fix(cli): 错误的直接引入less文件 (#9725)

This commit is contained in:
enpitsulin 2021-10-26 21:09:34 +08:00 committed by GitHub
parent f6c70a9a49
commit bfc5b16c6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,7 @@ import {
smartOutputFile,
normalizePath,
} from '../common';
import { CSS_LANG } from '../common/css';
type DemoItem = {
name: string;
@ -67,7 +68,7 @@ function genCode(components: string[]) {
}))
.filter((item) => existsSync(item.path));
return `import './package-style.less';
return `import './package-style.${CSS_LANG}';
${genImports(demos)}
${genExports(demos)}