我喜欢为 Monorepo 创建本地 CLI,以自动执行构建和部署等任务。这些任务通常需要的不仅仅是在 npm 脚本中链接几个命令(例如 rimraf dist && tsc)。
使用 Commander.js 和 tsx,我们可以创建用 TypeScript 编写的可执行程序,这些程序像任何其他 CLI 工具一样从命令行运行。
#!/usr/bin/env -S pnpm tsx import { Command } from 'commander'; const program = new Command() .name('monorepo') .description('CLI for Monorepo') .version('1.0.0'); program .command('build') .description('Build the monorepo') .action(async () => { console.log('Building...'); // run your build steps ... }); program .command('deploy') .description('Deploy the monorepo') .action(async () => { console.log('Deploying...'); // run your deploy steps ... }); await program.parseAsync(process.argv);
将此脚本保存为项目根目录中的 cli (或任何您喜欢的名称),并使用 chmod x cli 使其可执行。然后您可以使用 ./cli:
直接运行它
$ ./cli Usage: monorepo [options] [command] CLI for Monorepo Options: -V, --version output the version number -h, --help display help for command Commands: build Build the monorepo deploy Deploy the monorepo help [command] display help for command
允许您在没有节点、npx 甚至 .ts 扩展名的情况下运行它的魔力就在第一行 - shebang:
#!/usr/bin/env -S pnpm tsx
这个 shebang 告诉你的 shell 哪个程序应该执行这个文件。在幕后,它将您的 ./cli 命令转换为 pnpm tsx cli。这也适用于其他包管理器 - 您可以使用 npm 或yarn 代替 pnpm。
以上是为您的 Monorepo 创建 TypeScript CLI的详细内容。更多信息请关注PHP中文网其他相关文章!