UNPKG

@catladder/cli

Version:

Panter cli tool for cloud CI/CD and DevOps

13 lines (11 loc) 303 B
import type Vorpal from "vorpal"; import { exec } from "child-process-promise"; export default async (vorpal: Vorpal) => vorpal .command( "project-open-git", "open the repo on gitlab / github in your browser", ) .action(async () => { await exec("npx git-open"); });