Skip to content

Commit

Permalink
fix: shebang in clarigen cli
Browse files Browse the repository at this point in the history
  • Loading branch information
hstove committed May 22, 2024
1 parent ee92c1d commit b23a777
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/thirty-tomatoes-hammer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@clarigen/cli': patch
---

Adds the proper hashbang to the CLI .bin file
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
run: pnpm test
- name: Lint
run: pnpm lint
- name: Stash changes
run: git stash
# - name: Stash changes
# run: git stash
- name: Create Release Pull Request or Publish to npm
uses: changesets/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/generated/version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is automatically generated from the
// version in `package.json`

export const version = '2.0.1';
export const version = '2.0.4';
2 changes: 2 additions & 0 deletions packages/cli/src/run-cli.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env node

import { Cli, Builtins } from 'clipanion';
import { SessionInfoCommand } from './commands/session-info';
import { DefaultCommand } from './commands/default-command';
Expand Down

0 comments on commit b23a777

Please sign in to comment.