From 0a6003265baea3a12aa7a200b8d5227bd5fe095d Mon Sep 17 00:00:00 2001 From: Pavel Jbanov Date: Wed, 27 Nov 2024 16:30:46 -0500 Subject: [PATCH] chore: fix types for MCP (#1427) --- .github/workflows/bump-js-plugins-version.yml | 8 ++++---- js/plugins/mcp/package.json | 4 ++-- scripts/release_main.sh | 2 +- scripts/release_next.sh | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/bump-js-plugins-version.yml b/.github/workflows/bump-js-plugins-version.yml index b991b4d82..a6e5a078b 100644 --- a/.github/workflows/bump-js-plugins-version.yml +++ b/.github/workflows/bump-js-plugins-version.yml @@ -182,14 +182,14 @@ jobs: preid: ${{ inputs.preid }} commit-message: 'chore: bump @genkit-ai/checks version to {{version}}' tag-prefix: '@genkit-ai/checks@' - - name: 'js/plugins/mpc version bump' + - name: 'js/plugins/mcp version bump' uses: 'phips28/gh-action-bump-version@master' env: GITHUB_TOKEN: ${{ secrets.GENKIT_RELEASER_GITHUB_TOKEN }} - PACKAGEJSON_DIR: js/plugins/mpc + PACKAGEJSON_DIR: js/plugins/mcp with: default: ${{ inputs.releaseType }} version-type: ${{ inputs.releaseType }} preid: ${{ inputs.preid }} - commit-message: 'chore: bump genkitx-mpc version to {{version}}' - tag-prefix: 'genkitx-mpc@' + commit-message: 'chore: bump genkitx-mcp version to {{version}}' + tag-prefix: 'genkitx-mcp@' diff --git a/js/plugins/mcp/package.json b/js/plugins/mcp/package.json index 70a1f0ef4..420fffdbc 100644 --- a/js/plugins/mcp/package.json +++ b/js/plugins/mcp/package.json @@ -1,5 +1,5 @@ { - "name": "genkitx-mpc", + "name": "genkitx-mcp", "keywords": [ "genkit", "genkit-plugin", @@ -33,7 +33,7 @@ "repository": { "type": "git", "url": "https://github.com/firebase/genkit.git", - "directory": "js/plugins/mpc" + "directory": "js/plugins/mcp" }, "author": "genkit", "license": "Apache-2.0", diff --git a/scripts/release_main.sh b/scripts/release_main.sh index 29d4f6bdd..bc5e824b1 100755 --- a/scripts/release_main.sh +++ b/scripts/release_main.sh @@ -83,6 +83,6 @@ cd js/plugins/checks pnpm publish --registry https://wombat-dressing-room.appspot.com cd $CURRENT -cd js/plugins/mpc +cd js/plugins/mcp pnpm publish --registry https://wombat-dressing-room.appspot.com cd $CURRENT diff --git a/scripts/release_next.sh b/scripts/release_next.sh index fa26d1060..c2374a5ff 100755 --- a/scripts/release_next.sh +++ b/scripts/release_next.sh @@ -85,6 +85,6 @@ cd js/plugins/checks pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com cd $CURRENT -cd js/plugins/mpc +cd js/plugins/mcp pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com cd $CURRENT