fix(create-vant-cli-app): window system failed to generate template (#7904) (#7958)

This commit is contained in:
YaoXiangMei 2021-01-22 17:13:39 +08:00 committed by GitHub
parent a965e3a28c
commit d4eefcf887
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,9 +62,11 @@ export class VanGenerator extends Generator {
writing() {
consola.info(`Creating project in ${join(CWD, this.inputs.name)}\n`);
const templatePath = join(GENERATOR_DIR, this.inputs.vueVersion);
const templateFiles = glob.sync(join(templatePath, '**', '*'), {
/**
@see {@link https://github.com/mrmlnc/fast-glob#how-to-write-patterns-on-windows}
*/
const templatePath = join(GENERATOR_DIR, this.inputs.vueVersion).replace(/\\/g, '/');
const templateFiles = glob.sync(join(templatePath, '**', '*').replace(/\\/g, '/'), {
dot: true,
});
const destinationRoot = this.destinationRoot();