diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 8bef13a..8374b22 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -19,6 +19,6 @@ jobs: - name: Build run: npx tsc - name: Merge - run: npx ctrf merge test-reports + run: npx ctrf-cli merge test-reports - name: Flaky - run: npx ctrf flaky test-reports/ctrf-report-one.json + run: npx ctrf-cli flaky test-reports/ctrf-report-one.json diff --git a/package-lock.json b/package-lock.json index 9d448f8..964de5d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ctrf-cli", - "version": "0.0.3", + "version": "0.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ctrf-cli", - "version": "0.0.3", + "version": "0.0.4", "license": "MIT", "dependencies": { "glob": "^11.0.1", @@ -14,7 +14,7 @@ "yargs": "^17.7.2" }, "bin": { - "ctrf": "dist/cli.js" + "ctrf-cli": "dist/cli.js" }, "devDependencies": { "@d2t/vitest-ctrf-json-reporter": "^1.2.0", diff --git a/package.json b/package.json index b523f81..402d15a 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "ctrf-cli", - "version": "0.0.3", + "version": "0.0.4", "description": "Various CTRF utilities available from the command line", "main": "dist/index.js", "bin": { - "ctrf": "dist/cli.js" + "ctrf-cli": "dist/cli.js" }, "scripts": { "build": "tsc",