fix(vant-cli): replace \ to / in path #5431 (#5473)

This commit is contained in:
jczzq
2020-01-05 09:48:49 +08:00
committed by neverland
parent 04f67f16bc
commit 4424b77cbc
5 changed files with 18 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
import { join } from 'path';
import { existsSync } from 'fs-extra';
import { smartOutputFile } from '../common';
import { smartOutputFile, normalizePath } from '../common';
import { CSS_LANG, getCssBaseFile } from '../common/css';
import { SRC_DIR, STYPE_DEPS_JSON_FILE } from '../common/constant';
@@ -21,7 +21,7 @@ export function genPacakgeStyle(options: Options) {
baseFile = options.pathResolver(baseFile);
}
content += `@import "${baseFile}";\n`;
content += `@import "${normalizePath(baseFile)}";\n`;
}
content += styleDepsJson.sequence
@@ -36,7 +36,7 @@ export function genPacakgeStyle(options: Options) {
path = options.pathResolver(path);
}
return `@import "${path}";`;
return `@import "${normalizePath(path)}";`;
})
.filter((item: string) => !!item)
.join('\n');