mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
chore(cli): replace chalk with picocolors (#10777)
This commit is contained in:
parent
8256fdc927
commit
28e8b72ccd
@ -37,11 +37,11 @@
|
|||||||
"typescript": "^4.7.4"
|
"typescript": "^4.7.4"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"chalk": "^4.1.2",
|
|
||||||
"consola": "^2.11.3",
|
"consola": "^2.11.3",
|
||||||
"fast-glob": "^3.2.4",
|
"fast-glob": "^3.2.4",
|
||||||
"fs-extra": "^10.0.0",
|
"fs-extra": "^10.0.0",
|
||||||
"inquirer": "^8.0.0"
|
"inquirer": "^8.0.0",
|
||||||
|
"picocolors": "^1.0.0"
|
||||||
},
|
},
|
||||||
"release-it": {
|
"release-it": {
|
||||||
"git": {
|
"git": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import fs from 'fs-extra';
|
import fs from 'fs-extra';
|
||||||
import glob from 'fast-glob';
|
import glob from 'fast-glob';
|
||||||
import chalk from 'chalk';
|
import color from 'picocolors';
|
||||||
import consola from 'consola';
|
import consola from 'consola';
|
||||||
import { prompt } from 'inquirer';
|
import { prompt } from 'inquirer';
|
||||||
import { sep, join } from 'path';
|
import { sep, join } from 'path';
|
||||||
@ -64,7 +64,7 @@ export class VanGenerator {
|
|||||||
|
|
||||||
writing() {
|
writing() {
|
||||||
console.log();
|
console.log();
|
||||||
consola.info(`Creating project in ${chalk.green(this.outputDir)}\n`);
|
consola.info(`Creating project in ${color.green(this.outputDir)}\n`);
|
||||||
|
|
||||||
// see https://github.com/mrmlnc/fast-glob#how-to-write-patterns-on-windows
|
// see https://github.com/mrmlnc/fast-glob#how-to-write-patterns-on-windows
|
||||||
const templatePath = join(GENERATOR_DIR, this.inputs.vueVersion).replace(
|
const templatePath = join(GENERATOR_DIR, this.inputs.vueVersion).replace(
|
||||||
@ -99,16 +99,16 @@ export class VanGenerator {
|
|||||||
fs.writeFileSync(to, content);
|
fs.writeFileSync(to, content);
|
||||||
|
|
||||||
const name = to.replace(this.outputDir + sep, '');
|
const name = to.replace(this.outputDir + sep, '');
|
||||||
consola.success(`${chalk.green('create')} ${name}`);
|
consola.success(`${color.green('create')} ${name}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
end() {
|
end() {
|
||||||
const { name } = this.inputs;
|
const { name } = this.inputs;
|
||||||
|
|
||||||
console.log();
|
console.log();
|
||||||
consola.success(`Successfully created ${chalk.yellow(name)}.`);
|
consola.success(`Successfully created ${color.yellow(name)}.`);
|
||||||
consola.success(
|
consola.success(
|
||||||
`Run ${chalk.yellow(
|
`Run ${color.yellow(
|
||||||
`cd ${name} && git init && yarn && yarn dev`
|
`cd ${name} && git init && yarn && yarn dev`
|
||||||
)} to start development!`
|
)} to start development!`
|
||||||
);
|
);
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"@vitejs/plugin-vue-jsx": "^1.3.3",
|
"@vitejs/plugin-vue-jsx": "^1.3.3",
|
||||||
"@vue/babel-plugin-jsx": "^1.1.1",
|
"@vue/babel-plugin-jsx": "^1.1.1",
|
||||||
"autoprefixer": "^10.4.0",
|
"autoprefixer": "^10.4.0",
|
||||||
"chalk": "^4.1.2",
|
|
||||||
"commander": "^8.3.0",
|
"commander": "^8.3.0",
|
||||||
"consola": "^2.15.3",
|
"consola": "^2.15.3",
|
||||||
"conventional-changelog": "^3.1.24",
|
"conventional-changelog": "^3.1.24",
|
||||||
@ -82,6 +81,7 @@
|
|||||||
"markdown-it": "^12.2.0",
|
"markdown-it": "^12.2.0",
|
||||||
"markdown-it-anchor": "^8.4.1",
|
"markdown-it-anchor": "^8.4.1",
|
||||||
"ora": "^6.0.1",
|
"ora": "^6.0.1",
|
||||||
|
"picocolors": "^1.0.0",
|
||||||
"postcss": "^8.3.11",
|
"postcss": "^8.3.11",
|
||||||
"postcss-load-config": "^3.1.0",
|
"postcss-load-config": "^3.1.0",
|
||||||
"prettier": "^2.5.0",
|
"prettier": "^2.5.0",
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
import ora from 'ora';
|
import ora from 'ora';
|
||||||
import chalk from 'chalk';
|
import color from 'picocolors';
|
||||||
import consola from 'consola';
|
import consola from 'consola';
|
||||||
import { ROOT } from '../common/constant.js';
|
import { ROOT } from '../common/constant.js';
|
||||||
|
|
||||||
export function slimPath(path: string) {
|
export function slimPath(path: string) {
|
||||||
return chalk.yellow(path.replace(ROOT, ''));
|
return color.yellow(path.replace(ROOT, ''));
|
||||||
}
|
}
|
||||||
|
|
||||||
export { ora, consola };
|
export { ora, consola };
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import chalk from 'chalk';
|
import color from 'picocolors';
|
||||||
import { createRequire } from 'module';
|
import { createRequire } from 'module';
|
||||||
import { createServer, build } from 'vite';
|
import { createServer, build } from 'vite';
|
||||||
import {
|
import {
|
||||||
@ -38,8 +38,8 @@ export async function compileSite(production = false) {
|
|||||||
|
|
||||||
const require = createRequire(import.meta.url);
|
const require = createRequire(import.meta.url);
|
||||||
const { version } = require('vite/package.json');
|
const { version } = require('vite/package.json');
|
||||||
const viteInfo = chalk.cyan(`vite v${version}`);
|
const viteInfo = color.cyan(`vite v${version}`);
|
||||||
console.log(`\n ${viteInfo}` + chalk.green(` dev server running at:\n`));
|
console.log(`\n ${viteInfo}` + color.green(` dev server running at:\n`));
|
||||||
server.printUrls();
|
server.printUrls();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
8
pnpm-lock.yaml
generated
8
pnpm-lock.yaml
generated
@ -28,19 +28,19 @@ importers:
|
|||||||
specifiers:
|
specifiers:
|
||||||
'@types/fs-extra': ^9.0.13
|
'@types/fs-extra': ^9.0.13
|
||||||
'@types/inquirer': ^8.1.3
|
'@types/inquirer': ^8.1.3
|
||||||
chalk: ^4.1.2
|
|
||||||
consola: ^2.11.3
|
consola: ^2.11.3
|
||||||
fast-glob: ^3.2.4
|
fast-glob: ^3.2.4
|
||||||
fs-extra: ^10.0.0
|
fs-extra: ^10.0.0
|
||||||
inquirer: ^8.0.0
|
inquirer: ^8.0.0
|
||||||
|
picocolors: ^1.0.0
|
||||||
release-it: ^15.1.1
|
release-it: ^15.1.1
|
||||||
typescript: ^4.7.4
|
typescript: ^4.7.4
|
||||||
dependencies:
|
dependencies:
|
||||||
chalk: 4.1.2
|
|
||||||
consola: 2.15.3
|
consola: 2.15.3
|
||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.11
|
||||||
fs-extra: 10.1.0
|
fs-extra: 10.1.0
|
||||||
inquirer: 8.2.4
|
inquirer: 8.2.4
|
||||||
|
picocolors: 1.0.0
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@types/fs-extra': 9.0.13
|
'@types/fs-extra': 9.0.13
|
||||||
'@types/inquirer': 8.2.1
|
'@types/inquirer': 8.2.1
|
||||||
@ -105,7 +105,6 @@ importers:
|
|||||||
'@vitejs/plugin-vue-jsx': ^1.3.3
|
'@vitejs/plugin-vue-jsx': ^1.3.3
|
||||||
'@vue/babel-plugin-jsx': ^1.1.1
|
'@vue/babel-plugin-jsx': ^1.1.1
|
||||||
autoprefixer: ^10.4.0
|
autoprefixer: ^10.4.0
|
||||||
chalk: ^4.1.2
|
|
||||||
commander: ^8.3.0
|
commander: ^8.3.0
|
||||||
consola: ^2.15.3
|
consola: ^2.15.3
|
||||||
conventional-changelog: ^3.1.24
|
conventional-changelog: ^3.1.24
|
||||||
@ -126,6 +125,7 @@ importers:
|
|||||||
markdown-it: ^12.2.0
|
markdown-it: ^12.2.0
|
||||||
markdown-it-anchor: ^8.4.1
|
markdown-it-anchor: ^8.4.1
|
||||||
ora: ^6.0.1
|
ora: ^6.0.1
|
||||||
|
picocolors: ^1.0.0
|
||||||
postcss: ^8.3.11
|
postcss: ^8.3.11
|
||||||
postcss-load-config: ^3.1.0
|
postcss-load-config: ^3.1.0
|
||||||
prettier: ^2.5.0
|
prettier: ^2.5.0
|
||||||
@ -154,7 +154,6 @@ importers:
|
|||||||
'@vitejs/plugin-vue-jsx': 1.3.10
|
'@vitejs/plugin-vue-jsx': 1.3.10
|
||||||
'@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.18.6
|
'@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.18.6
|
||||||
autoprefixer: 10.4.7_postcss@8.4.14
|
autoprefixer: 10.4.7_postcss@8.4.14
|
||||||
chalk: 4.1.2
|
|
||||||
commander: 8.3.0
|
commander: 8.3.0
|
||||||
consola: 2.15.3
|
consola: 2.15.3
|
||||||
conventional-changelog: 3.1.25
|
conventional-changelog: 3.1.25
|
||||||
@ -175,6 +174,7 @@ importers:
|
|||||||
markdown-it: 12.3.2
|
markdown-it: 12.3.2
|
||||||
markdown-it-anchor: 8.6.4_d643ca6eb40ae68ab966a77bead78073
|
markdown-it-anchor: 8.6.4_d643ca6eb40ae68ab966a77bead78073
|
||||||
ora: 6.1.2
|
ora: 6.1.2
|
||||||
|
picocolors: 1.0.0
|
||||||
postcss: 8.4.14
|
postcss: 8.4.14
|
||||||
postcss-load-config: 3.1.4_postcss@8.4.14
|
postcss-load-config: 3.1.4_postcss@8.4.14
|
||||||
prettier: 2.7.1
|
prettier: 2.7.1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user