mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(cli): speedup dev command
This commit is contained in:
parent
8ee35ce5b5
commit
187b72483c
@ -32,10 +32,14 @@ function compileTempDir(dir: string): Promise<unknown> {
|
||||
const filePath = join(dir, filename);
|
||||
|
||||
if (isDir(filePath)) {
|
||||
if (filePath.includes('/test') || filePath.includes('/demo')) {
|
||||
return Promise.resolve();
|
||||
}
|
||||
|
||||
return compileTempDir(filePath);
|
||||
}
|
||||
|
||||
if (filename.indexOf('index') !== -1) {
|
||||
if (filename.includes('index')) {
|
||||
if (isSfc(filePath)) {
|
||||
return compileSfc(filePath, { skipStyle: true });
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user