mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
This commit is contained in:
parent
a965e3a28c
commit
d4eefcf887
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user