Skip to content

Commit 733f939

Browse files
Fix/bun bin (#15)
* fix executable name
1 parent 546731d commit 733f939

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
- name: Build
2020
run: npx tsc
2121
- name: Merge
22-
run: npx ctrf merge test-reports
22+
run: npx ctrf-cli merge test-reports
2323
- name: Flaky
24-
run: npx ctrf flaky test-reports/ctrf-report-one.json
24+
run: npx ctrf-cli flaky test-reports/ctrf-report-one.json

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "ctrf-cli",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"description": "Various CTRF utilities available from the command line",
55
"main": "dist/index.js",
66
"bin": {
7-
"ctrf": "dist/cli.js"
7+
"ctrf-cli": "dist/cli.js"
88
},
99
"scripts": {
1010
"build": "tsc",

0 commit comments

Comments
 (0)