From cbf5bccb80ca121066f3c48a0c8066cd23edf307 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Thu, 21 Mar 2024 12:41:00 -0500 Subject: [PATCH] fix: add oclif script, update readme flag --- .github/workflows/create-github-release.yml | 2 +- package.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-github-release.yml b/.github/workflows/create-github-release.yml index 2fecbf51..8f202839 100644 --- a/.github/workflows/create-github-release.yml +++ b/.github/workflows/create-github-release.yml @@ -24,4 +24,4 @@ jobs: # However, if this is a manual release (workflow_dispatch), then we want to disable skip-on-empty # This helps recover from forgetting to add semantic commits ('fix:', 'feat:', etc.) skip-on-empty: ${{ github.event_name == 'push' }} - readme-command: 'bin/run.js readme --multi' + readme-multi: 'true' diff --git a/package.json b/package.json index c3a5485b..0270c1b0 100644 --- a/package.json +++ b/package.json @@ -139,7 +139,8 @@ "test:integration:sf": "mocha test/integration/sf.test.ts --timeout 600000", "test:integration:win": "mocha test/integration/win.test.ts --timeout 900000", "test:integration": "mocha --forbid-only \"test/integration/*.test.ts\" --timeout 900000", - "test": "nyc mocha --forbid-only \"test/unit/*.test.ts\"" + "test": "nyc mocha --forbid-only \"test/unit/*.test.ts\"", + "oclif": "bin/run.js" }, "publishConfig": { "registry": "https://registry.npmjs.org"