mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(create-vant-cli-app): incorrect compiler-sfc name
This commit is contained in:
parent
5ac8aa7f7a
commit
d36d23a4c7
@ -34,7 +34,7 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@vant/cli": "^3.0.0",
|
"@vant/cli": "^3.0.0",
|
||||||
"@vue/sfc-compiler": "^3.0.0",
|
"@vue/compiler-sfc": "^3.0.0",
|
||||||
"babel-plugin-import": "^1.13.0",
|
"babel-plugin-import": "^1.13.0",
|
||||||
"vue": "^3.0.0"
|
"vue": "^3.0.0"
|
||||||
},
|
},
|
@ -1,5 +1,5 @@
|
|||||||
import { mount } from '@vue/test-utils';
|
import { mount } from '@vue/test-utils';
|
||||||
import DemoButton from '..';
|
import DemoButton from '../../demo-button';
|
||||||
|
|
||||||
test('render demo button', () => {
|
test('render demo button', () => {
|
||||||
const wrapper = mount(DemoButton);
|
const wrapper = mount(DemoButton);
|
@ -6,7 +6,6 @@ import { CWD, GENERATOR_DIR } from './constant';
|
|||||||
import Yeoman from 'yeoman-environment';
|
import Yeoman from 'yeoman-environment';
|
||||||
import Generator from 'yeoman-generator';
|
import Generator from 'yeoman-generator';
|
||||||
|
|
||||||
const TEMPLATES_ROOT = join(GENERATOR_DIR, 'templates');
|
|
||||||
const PROMPTS = [
|
const PROMPTS = [
|
||||||
{
|
{
|
||||||
name: 'vueVersion',
|
name: 'vueVersion',
|
||||||
@ -64,14 +63,12 @@ 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(TEMPLATES_ROOT, this.inputs.vueVersion);
|
const templatePath = join(GENERATOR_DIR, this.inputs.vueVersion);
|
||||||
const templateFiles = glob.sync(join(templatePath, '**', '*'), {
|
const templateFiles = glob.sync(join(templatePath, '**', '*'), {
|
||||||
dot: true,
|
dot: true,
|
||||||
});
|
});
|
||||||
const destinationRoot = this.destinationRoot();
|
const destinationRoot = this.destinationRoot();
|
||||||
|
|
||||||
console.log(templateFiles);
|
|
||||||
|
|
||||||
templateFiles.forEach((filePath) => {
|
templateFiles.forEach((filePath) => {
|
||||||
const outputPath = filePath
|
const outputPath = filePath
|
||||||
.replace('.tpl', '')
|
.replace('.tpl', '')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user