谷歌开源的 zx 库,npm 可以直接安装,可以实现 nodejs 环境下调用 shell 命令,做一些运维工具挺方便的
#!/usr/bin/env zx
await $`cat package.json | grep name`
let branch = await $`git branch --show-current`
await $`dep deploy --branch=${branch}`
谷歌开源的 zx 库,npm 可以直接安装,可以实现 nodejs 环境下调用 shell 命令,做一些运维工具挺方便的
#!/usr/bin/env zx
await $`cat package.json | grep name`
let branch = await $`git branch --show-current`
await $`dep deploy --branch=${branch}`