From bc695deb5106474992436b6d18ca5a7d2ef2443a Mon Sep 17 00:00:00 2001 From: gentlementlegen Date: Wed, 27 Nov 2024 20:59:27 +0900 Subject: [PATCH] chore: fixed plugin entry path --- .github/workflows/update-configuration.yml | 2 +- .husky/commit-msg | 2 +- .husky/pre-commit | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update-configuration.yml b/.github/workflows/update-configuration.yml index 0aa00a5..1061895 100644 --- a/.github/workflows/update-configuration.yml +++ b/.github/workflows/update-configuration.yml @@ -16,6 +16,6 @@ jobs: with: treatAsEsm: false sourcemap: false - pluginEntry: ${{ github.workspace }}/src/worker.ts + pluginEntry: ${{ github.workspace }}/src/index.ts env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.husky/commit-msg b/.husky/commit-msg index b78bacb..7179f96 100755 --- a/.husky/commit-msg +++ b/.husky/commit-msg @@ -1,4 +1,4 @@ #!/usr/bin/env sh . "$(dirname -- "$0")/_/husky.sh" -yarn commitlint --edit "$1" \ No newline at end of file +bun commitlint --edit "$1" \ No newline at end of file diff --git a/.husky/pre-commit b/.husky/pre-commit index 5a182ef..1d67559 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1,4 @@ #!/usr/bin/env sh . "$(dirname -- "$0")/_/husky.sh" -yarn lint-staged +bun lint-staged