[READ-ONLY] Mirror of https://github.com/bombshell-dev/clack. Effortlessly build beautiful command-line apps bomb.sh/docs/clack/basics/getting-started/
cli command-line command-line-app node prompt prompts
5

Configure Feed

Select the types of activity you want to include in your feed.

update ci

Nate Moore (Feb 17, 2023, 4:52 AM -0600) 7b4be8ee cc5a47b7

+5 -3
+2 -2
.github/workflows/ci.yml
··· 32 32 - uses: changesets/action@v1 33 33 if: ${{ github.event_name != 'pull_request' }} 34 34 with: 35 - version: pnpm changeset version && pnpm install 36 - publish: pnpm changeset publish 35 + version: pnpm run ci:version 36 + publish: pnpm run ci:publish 37 37 commit: "[ci] release" 38 38 title: "[ci] release" 39 39 env:
+3 -1
package.json
··· 7 7 "build": "pnpm run build:core && pnpm run build:prompts", 8 8 "build:core": "pnpm --filter @clack/core run build", 9 9 "build:prompts": "pnpm --filter @clack/prompts run build", 10 - "start": "pnpm --filter @example/basic run start" 10 + "start": "pnpm --filter @example/basic run start", 11 + "ci:version": "changeset version && pnpm install", 12 + "ci:release": "changeset publish" 11 13 }, 12 14 "devDependencies": { 13 15 "@changesets/cli": "^2.26.0",