mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
perf(cli): improve cli boot time (#10780)
* chore: test * perf(cli): improve cli boot time
This commit is contained in:
parent
5883d3e0c7
commit
beeb059401
@ -61,7 +61,7 @@
|
|||||||
"@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",
|
||||||
"commander": "^8.3.0",
|
"commander": "^9.3.0",
|
||||||
"consola": "^2.15.3",
|
"consola": "^2.15.3",
|
||||||
"conventional-changelog": "^3.1.24",
|
"conventional-changelog": "^3.1.24",
|
||||||
"esbuild": "^0.14.29",
|
"esbuild": "^0.14.29",
|
||||||
|
@ -1,25 +1,26 @@
|
|||||||
import { Command } from 'commander';
|
import { Command } from 'commander';
|
||||||
|
|
||||||
import {
|
import { cliVersion } from './index.js';
|
||||||
dev,
|
|
||||||
lint,
|
|
||||||
test,
|
|
||||||
clean,
|
|
||||||
build,
|
|
||||||
release,
|
|
||||||
changelog,
|
|
||||||
buildSite,
|
|
||||||
commitLint,
|
|
||||||
cliVersion,
|
|
||||||
} from './index.js';
|
|
||||||
|
|
||||||
const program = new Command();
|
const program = new Command();
|
||||||
|
|
||||||
program.version(`@vant/cli ${cliVersion}`);
|
program.version(`@vant/cli ${cliVersion}`);
|
||||||
|
|
||||||
program.command('dev').description('Run dev server').action(dev);
|
program
|
||||||
|
.command('dev')
|
||||||
|
.description('Run dev server')
|
||||||
|
.action(async () => {
|
||||||
|
const { dev } = await import('./commands/dev.js');
|
||||||
|
return dev();
|
||||||
|
});
|
||||||
|
|
||||||
program.command('lint').description('Run eslint and stylelint').action(lint);
|
program
|
||||||
|
.command('lint')
|
||||||
|
.description('Run eslint and stylelint')
|
||||||
|
.action(async () => {
|
||||||
|
const { lint } = await import('./commands/lint.js');
|
||||||
|
return lint();
|
||||||
|
});
|
||||||
|
|
||||||
program
|
program
|
||||||
.command('test')
|
.command('test')
|
||||||
@ -45,34 +46,58 @@ program
|
|||||||
'Run all tests serially in the current process, rather than creating a worker pool of child processes that run tests'
|
'Run all tests serially in the current process, rather than creating a worker pool of child processes that run tests'
|
||||||
)
|
)
|
||||||
.option('--debug', 'Print debugging info about your Jest config')
|
.option('--debug', 'Print debugging info about your Jest config')
|
||||||
.action(test);
|
.action(async (options) => {
|
||||||
|
const { test } = await import('./commands/jest.js');
|
||||||
|
return test(options);
|
||||||
|
});
|
||||||
|
|
||||||
program.command('clean').description('Clean all dist files').action(clean);
|
program
|
||||||
|
.command('clean')
|
||||||
|
.description('Clean all dist files')
|
||||||
|
.action(async () => {
|
||||||
|
const { clean } = await import('./commands/clean.js');
|
||||||
|
return clean();
|
||||||
|
});
|
||||||
|
|
||||||
program
|
program
|
||||||
.command('build')
|
.command('build')
|
||||||
.description('Compile components in production mode')
|
.description('Compile components in production mode')
|
||||||
.action(build);
|
.action(async () => {
|
||||||
|
const { build } = await import('./commands/build.js');
|
||||||
|
return build();
|
||||||
|
});
|
||||||
|
|
||||||
program
|
program
|
||||||
.command('release')
|
.command('release')
|
||||||
.description('Compile components and release it')
|
.description('Compile components and release it')
|
||||||
.option('--tag <tag>', 'Release tag')
|
.option('--tag <tag>', 'Release tag')
|
||||||
.action(release);
|
.action(async (options) => {
|
||||||
|
const { release } = await import('./commands/release.js');
|
||||||
|
return release(options);
|
||||||
|
});
|
||||||
|
|
||||||
program
|
program
|
||||||
.command('build-site')
|
.command('build-site')
|
||||||
.description('Compile site in production mode')
|
.description('Compile site in production mode')
|
||||||
.action(buildSite);
|
.action(async () => {
|
||||||
|
const { buildSite } = await import('./commands/build-site.js');
|
||||||
|
return buildSite();
|
||||||
|
});
|
||||||
|
|
||||||
program
|
program
|
||||||
.command('changelog')
|
.command('changelog')
|
||||||
.description('Generate changelog')
|
.description('Generate changelog')
|
||||||
.action(changelog);
|
.action(async () => {
|
||||||
|
const { changelog } = await import('./commands/changelog.js');
|
||||||
|
return changelog();
|
||||||
|
});
|
||||||
|
|
||||||
program
|
program
|
||||||
.command('commit-lint <gitParams>')
|
.command('commit-lint <gitParams>')
|
||||||
.description('Lint commit message')
|
.description('Lint commit message')
|
||||||
.action(commitLint);
|
.action(async (gitParams) => {
|
||||||
|
const { commitLint } = await import('./commands/commit-lint.js');
|
||||||
|
return commitLint(gitParams);
|
||||||
|
});
|
||||||
|
|
||||||
program.parse();
|
program.parse();
|
||||||
|
@ -1,30 +1,9 @@
|
|||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import { URL, fileURLToPath } from 'url';
|
import { URL, fileURLToPath } from 'url';
|
||||||
import { dev } from './commands/dev.js';
|
|
||||||
import { lint } from './commands/lint.js';
|
|
||||||
import { test } from './commands/jest.js';
|
|
||||||
import { clean } from './commands/clean.js';
|
|
||||||
import { build } from './commands/build.js';
|
|
||||||
import { release } from './commands/release.js';
|
|
||||||
import { changelog } from './commands/changelog.js';
|
|
||||||
import { buildSite } from './commands/build-site.js';
|
|
||||||
import { commitLint } from './commands/commit-lint.js';
|
|
||||||
|
|
||||||
const packagePath = fileURLToPath(new URL('../package.json', import.meta.url));
|
const packagePath = fileURLToPath(new URL('../package.json', import.meta.url));
|
||||||
const packageJson = JSON.parse(fs.readFileSync(packagePath, 'utf-8'));
|
const packageJson = JSON.parse(fs.readFileSync(packagePath, 'utf-8'));
|
||||||
export const cliVersion: string = packageJson.version;
|
export const cliVersion: string = packageJson.version;
|
||||||
|
|
||||||
process.env.VANT_CLI_VERSION = cliVersion;
|
process.env.VANT_CLI_VERSION = cliVersion;
|
||||||
|
|
||||||
export {
|
|
||||||
dev,
|
|
||||||
lint,
|
|
||||||
test,
|
|
||||||
clean,
|
|
||||||
build,
|
|
||||||
release,
|
|
||||||
changelog,
|
|
||||||
buildSite,
|
|
||||||
commitLint,
|
|
||||||
};
|
|
||||||
|
9
pnpm-lock.yaml
generated
9
pnpm-lock.yaml
generated
@ -105,7 +105,7 @@ 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
|
||||||
commander: ^8.3.0
|
commander: ^9.3.0
|
||||||
consola: ^2.15.3
|
consola: ^2.15.3
|
||||||
conventional-changelog: ^3.1.24
|
conventional-changelog: ^3.1.24
|
||||||
esbuild: ^0.14.29
|
esbuild: ^0.14.29
|
||||||
@ -154,7 +154,7 @@ 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
|
||||||
commander: 8.3.0
|
commander: 9.3.0
|
||||||
consola: 2.15.3
|
consola: 2.15.3
|
||||||
conventional-changelog: 3.1.25
|
conventional-changelog: 3.1.25
|
||||||
esbuild: 0.14.48
|
esbuild: 0.14.48
|
||||||
@ -2353,6 +2353,11 @@ packages:
|
|||||||
engines: {node: '>= 12'}
|
engines: {node: '>= 12'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/commander/9.3.0:
|
||||||
|
resolution: {integrity: sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw==}
|
||||||
|
engines: {node: ^12.20.0 || >=14}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/commondir/1.0.1:
|
/commondir/1.0.1:
|
||||||
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
|
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
|
||||||
dev: false
|
dev: false
|
||||||
|
Loading…
x
Reference in New Issue
Block a user