We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83863b2 commit 232a06cCopy full SHA for 232a06c
2 files changed
.changeset/lazy-trains-send.md
@@ -0,0 +1,7 @@
1
+---
2
+'@repo/tools': patch
3
4
+
5
+chore: remove pnpx from wrangler deploy script
6
7
+This is redundant because turbo and pnpm already add the bundled wrangler command to $PATH
packages/tools/bin/run-wrangler-deploy
@@ -6,4 +6,7 @@ VERSION=$(jq -r '.version' package.json)
# Deploy with wrangler using the extracted values as binding variables
8
echo "Deploying MCP server $NAME version $VERSION"
9
-pnpx wrangler deploy --var MCP_SERVER_NAME:"$NAME" --var MCP_SERVER_VERSION:"$VERSION" "$@"
+wrangler deploy \
10
+ --var MCP_SERVER_NAME:"$NAME" \
11
+ --var MCP_SERVER_VERSION:"$VERSION" \
12
+ "$@"
0 commit comments