- Run the CLI and watch for changes
cd packages/cli-v3
pnpm run dev- Test the local CLI using the job-catalogs located in the
/referencesdirectory
pnpm i
pnpm exec trigger <command>If you want to use it in a new folder, you need to first add it as a dev dependency in package.json:
//...
"devDependencies": {
"@basicblock/trigger-cli": "workspace:*",
//...
}
//...