perf(cli): improve cli boot time (#10780)

* chore: test

* perf(cli): improve cli boot time
This commit is contained in:
neverland 2022-07-03 10:53:14 +08:00 committed by GitHub
parent 5883d3e0c7
commit beeb059401
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 54 additions and 45 deletions

View File

@ -61,7 +61,7 @@
"@vitejs/plugin-vue-jsx": "^1.3.3",
"@vue/babel-plugin-jsx": "^1.1.1",
"autoprefixer": "^10.4.0",
"commander": "^8.3.0",
"commander": "^9.3.0",
"consola": "^2.15.3",
"conventional-changelog": "^3.1.24",
"esbuild": "^0.14.29",

View File

@ -1,25 +1,26 @@
import { Command } from 'commander';
import {
dev,
lint,
test,
clean,
build,
release,
changelog,
buildSite,
commitLint,
cliVersion,
} from './index.js';
import { cliVersion } from './index.js';
const program = new Command();
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
.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'
)
.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
.command('build')
.description('Compile components in production mode')
.action(build);
.action(async () => {
const { build } = await import('./commands/build.js');
return build();
});
program
.command('release')
.description('Compile components and release it')
.option('--tag <tag>', 'Release tag')
.action(release);
.action(async (options) => {
const { release } = await import('./commands/release.js');
return release(options);
});
program
.command('build-site')
.description('Compile site in production mode')
.action(buildSite);
.action(async () => {
const { buildSite } = await import('./commands/build-site.js');
return buildSite();
});
program
.command('changelog')
.description('Generate changelog')
.action(changelog);
.action(async () => {
const { changelog } = await import('./commands/changelog.js');
return changelog();
});
program
.command('commit-lint <gitParams>')
.description('Lint commit message')
.action(commitLint);
.action(async (gitParams) => {
const { commitLint } = await import('./commands/commit-lint.js');
return commitLint(gitParams);
});
program.parse();

View File

@ -1,30 +1,9 @@
// @ts-ignore
import fs from 'fs';
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 packageJson = JSON.parse(fs.readFileSync(packagePath, 'utf-8'));
export const cliVersion: string = packageJson.version;
process.env.VANT_CLI_VERSION = cliVersion;
export {
dev,
lint,
test,
clean,
build,
release,
changelog,
buildSite,
commitLint,
};

9
pnpm-lock.yaml generated
View File

@ -105,7 +105,7 @@ importers:
'@vitejs/plugin-vue-jsx': ^1.3.3
'@vue/babel-plugin-jsx': ^1.1.1
autoprefixer: ^10.4.0
commander: ^8.3.0
commander: ^9.3.0
consola: ^2.15.3
conventional-changelog: ^3.1.24
esbuild: ^0.14.29
@ -154,7 +154,7 @@ importers:
'@vitejs/plugin-vue-jsx': 1.3.10
'@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.18.6
autoprefixer: 10.4.7_postcss@8.4.14
commander: 8.3.0
commander: 9.3.0
consola: 2.15.3
conventional-changelog: 3.1.25
esbuild: 0.14.48
@ -2353,6 +2353,11 @@ packages:
engines: {node: '>= 12'}
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:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
dev: false