From beeb0594017954d64a4f1d5c215cd3a93668e148 Mon Sep 17 00:00:00 2001 From: neverland Date: Sun, 3 Jul 2022 10:53:14 +0800 Subject: [PATCH] perf(cli): improve cli boot time (#10780) * chore: test * perf(cli): improve cli boot time --- packages/vant-cli/package.json | 2 +- packages/vant-cli/src/cli.ts | 67 +++++++++++++++++++++++----------- packages/vant-cli/src/index.ts | 21 ----------- pnpm-lock.yaml | 9 ++++- 4 files changed, 54 insertions(+), 45 deletions(-) diff --git a/packages/vant-cli/package.json b/packages/vant-cli/package.json index 82a15e9a6..fb951d0c4 100644 --- a/packages/vant-cli/package.json +++ b/packages/vant-cli/package.json @@ -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", diff --git a/packages/vant-cli/src/cli.ts b/packages/vant-cli/src/cli.ts index 78608d52b..b393b782b 100644 --- a/packages/vant-cli/src/cli.ts +++ b/packages/vant-cli/src/cli.ts @@ -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 ', '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 ') .description('Lint commit message') - .action(commitLint); + .action(async (gitParams) => { + const { commitLint } = await import('./commands/commit-lint.js'); + return commitLint(gitParams); + }); program.parse(); diff --git a/packages/vant-cli/src/index.ts b/packages/vant-cli/src/index.ts index 3c43811e8..5f4f275f8 100755 --- a/packages/vant-cli/src/index.ts +++ b/packages/vant-cli/src/index.ts @@ -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, -}; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index eb736fec0..eda68f2d8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -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