我想跟进我之前关于 TypeScript CLI 的文章。我想要继续的方式如下:我计划实施构建命令来构建 Vite 应用程序和部署命令来将应用程序部署到 Amazon S3 和 AWS CloudFront。
我们将使用 Listr2 作为任务运行程序来定义构建和部署应用程序所需的步骤。我们将使用 execa 运行 Vite 和 AWS 的 CLI 命令。由于我们正在运行 TypeScript 代码,因此我们可以使用编程 API 而不是 CLI 命令,但让我们保持简单!
#!/usr/bin/env -S pnpm tsx import chalk from 'chalk'; import { Command } from 'commander'; import { Listr } from 'listr2'; import { $ } from 'execa'; interface Ctx { command: 'build' | 'deploy'; } const tasks = new Listr<ctx>( [ /** * Build tasks */ { enabled: (ctx) => ctx.command === 'build' || ctx.command === 'deploy', title: 'Build', task: (ctx, task): Listr => task.newListr<ctx>([ /** * Runs `vite build`. */ { title: `Run ${chalk.magenta('vite build')}`, task: async (ctx, task): Promise<void> => { const cmd = $({ all: true })`vite build`; cmd.all.pipe(task.stdout()); await cmd; task.output = `Build completed: ${chalk.dim('./dist')}`; }, rendererOptions: { persistentOutput: true }, }, ]), }, /** * Deploy tasks */ { enabled: (ctx) => ctx.command === 'deploy', title: 'Deploy', task: (ctx, task): Listr => task.newListr<ctx>([ /** * Runs `aws s3 sync`. */ { title: `Run ${chalk.magenta('aws s3 sync')}`, task: async (ctx, task): Promise<void> => { const build = './dist'; const bucket = 's3://my-bucket'; const cmd = $({ all: true })`aws s3 sync ${build} ${bucket} --delete`; cmd.all.pipe(task.stdout()); await cmd; task.output = `S3 sync completed: ${chalk.dim(bucket)}`; }, rendererOptions: { persistentOutput: true }, }, /** * Runs `aws cloudfront create-invalidation`. */ { title: `Run ${chalk.magenta('aws cloudfront create-invalidation')}`, task: async (ctx, task): Promise<void> => { const distributionId = 'E1234567890ABC'; const cmd = $({ all: true })`aws cloudfront create-invalidation --distribution-id ${distributionId} --paths /* --no-cli-pager`; cmd.all.pipe(task.stdout()); await cmd; task.output = `CloudFront invalidation completed: ${chalk.dim(distributionId)}`; }, rendererOptions: { persistentOutput: true }, }, ]), }, ], { rendererOptions: { collapseSubtasks: false, }, }, ); const program = new Command() .name('monorepo') .description('CLI for Monorepo') .version('1.0.0'); program .command('build') .description('Build the monorepo') .action(async () => { await tasks.run({ command: 'build' }); }); program .command('deploy') .description('Deploy the monorepo') .action(async () => { await tasks.run({ command: 'deploy' }); }); await program.parseAsync(process.argv); </void></void></ctx></void></ctx></ctx>
任务分为构建任务和部署任务。由于部署需要构建步骤,因此我们使用enabled 属性根据 CLI 命令构建或部署有条件地启用任务。每个任务执行相应的 CLI 命令并将其输出传输到控制台。
将此脚本保存为 cli.ts 并使用 pnpm tsx cli 运行它:
以上是TypeScript CLI:自动化构建和部署脚本的详细内容。更多信息请关注PHP中文网其他相关文章!