mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
This commit is contained in:
parent
a965e3a28c
commit
d4eefcf887
@ -62,9 +62,11 @@ export class VanGenerator extends Generator {
|
|||||||
|
|
||||||
writing() {
|
writing() {
|
||||||
consola.info(`Creating project in ${join(CWD, this.inputs.name)}\n`);
|
consola.info(`Creating project in ${join(CWD, this.inputs.name)}\n`);
|
||||||
|
/**
|
||||||
const templatePath = join(GENERATOR_DIR, this.inputs.vueVersion);
|
@see {@link https://github.com/mrmlnc/fast-glob#how-to-write-patterns-on-windows}
|
||||||
const templateFiles = glob.sync(join(templatePath, '**', '*'), {
|
*/
|
||||||
|
const templatePath = join(GENERATOR_DIR, this.inputs.vueVersion).replace(/\\/g, '/');
|
||||||
|
const templateFiles = glob.sync(join(templatePath, '**', '*').replace(/\\/g, '/'), {
|
||||||
dot: true,
|
dot: true,
|
||||||
});
|
});
|
||||||
const destinationRoot = this.destinationRoot();
|
const destinationRoot = this.destinationRoot();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user