chore(create-vant-cli-app): improve template copy process

This commit is contained in:
chenjiahan 2020-11-29 10:32:07 +08:00
parent a49530b888
commit 4c9236c84a
6 changed files with 28 additions and 20 deletions

View File

@ -33,6 +33,7 @@
"dependencies": { "dependencies": {
"chalk": "^3.0.0", "chalk": "^3.0.0",
"consola": "^2.11.3", "consola": "^2.11.3",
"fast-glob": "^3.2.4",
"fs-extra": "^8.1.0", "fs-extra": "^8.1.0",
"inquirer": "^7.0.6", "inquirer": "^7.0.6",
"yeoman-environment": "^2.8.0", "yeoman-environment": "^2.8.0",

View File

@ -1,3 +1,4 @@
import glob from 'fast-glob';
import chalk from 'chalk'; import chalk from 'chalk';
import consola from 'consola'; import consola from 'consola';
import { join } from 'path'; import { join } from 'path';
@ -5,7 +6,7 @@ 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 = join(GENERATOR_DIR, 'templates'); const TEMPLATES_PATH = join(GENERATOR_DIR, 'templates');
const PROMPTS = [ const PROMPTS = [
{ {
name: 'preprocessor', name: 'preprocessor',
@ -34,7 +35,7 @@ export class VanGenerator extends Generator {
} }
async prompting() { async prompting() {
return this.prompt<Record<string, string>>(PROMPTS).then(inputs => { return this.prompt<Record<string, string>>(PROMPTS).then((inputs) => {
const preprocessor = inputs.preprocessor.toLowerCase(); const preprocessor = inputs.preprocessor.toLowerCase();
const cssLang = preprocessor === 'sass' ? 'scss' : preprocessor; const cssLang = preprocessor === 'sass' ? 'scss' : preprocessor;
@ -46,25 +47,19 @@ 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 copy = (from: string, to?: string) => { const templateFiles = glob.sync(join(TEMPLATES_PATH, '**', '*'), {
this.fs.copy(join(TEMPLATES, from), this.destinationPath(to || from)); dot: true,
}; });
const destinationRoot = this.destinationRoot();
const copyTpl = (from: string, to?: string) => { console.log(templateFiles);
this.fs.copyTpl(
join(TEMPLATES, from),
this.destinationPath(to || from),
this.inputs
);
};
copyTpl('package.json.tpl', 'package.json'); templateFiles.forEach((filePath) => {
copyTpl('vant.config.js'); const outputPath = filePath
copyTpl('src/**/*', 'src'); .replace('.tpl', '')
copyTpl('docs/**/*', 'docs'); .replace(TEMPLATES_PATH, destinationRoot);
copy('babel.config.js'); this.fs.copyTpl(filePath, outputPath, this.inputs);
copy('gitignore.tpl', '.gitignore'); });
copy('eslintignore.tpl', '.eslintignore');
} }
install() { install() {

View File

@ -1178,6 +1178,18 @@ fast-glob@^3.1.1:
micromatch "^4.0.2" micromatch "^4.0.2"
picomatch "^2.2.1" picomatch "^2.2.1"
fast-glob@^3.2.4:
version "3.2.4"
resolved "https://registry.npm.taobao.org/fast-glob/download/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3"
integrity sha1-0grvv5lXk4Pn88xmUpFYybmFVNM=
dependencies:
"@nodelib/fs.stat" "^2.0.2"
"@nodelib/fs.walk" "^1.2.3"
glob-parent "^5.1.0"
merge2 "^1.3.0"
micromatch "^4.0.2"
picomatch "^2.2.1"
fastq@^1.6.0: fastq@^1.6.0:
version "1.6.0" version "1.6.0"
resolved "https://registry.npm.taobao.org/fastq/download/fastq-1.6.0.tgz#4ec8a38f4ac25f21492673adb7eae9cfef47d1c2" resolved "https://registry.npm.taobao.org/fastq/download/fastq-1.6.0.tgz#4ec8a38f4ac25f21492673adb7eae9cfef47d1c2"

View File

@ -14,7 +14,7 @@ Vant Cli 是一个 Vue 组件库构建工具,通过 Vant Cli 可以快速搭
执行以下命令可以快速创建一个基于 Vant Cli 的项目: 执行以下命令可以快速创建一个基于 Vant Cli 的项目:
```bash ```bash
npx create-vant-cli-app yarn create vant-cli-app
``` ```
### 手动安装 ### 手动安装