Skip to content

Commit

Permalink
fix: actually fix pxe releases (#11890)
Browse files Browse the repository at this point in the history
The first PR had a syntax issue. Have tested it properly now.
  • Loading branch information
sklppy88 authored Feb 10, 2025
1 parent 2b5afe3 commit b22c9b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yarn-project/publish_npm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ function deploy_package() {
# TODO: Remove this after @noir package resolution is fixed
if [[ "$PACKAGE_NAME" == "@aztec/pxe" ]]; then
# Hardcodes "1.0.0-beta.1" for @noir-lang/types
for PKG in $(jq --raw-output ".dependencies | keys[] | . == \"@noir-lang/types\")" package.json); do
jq ".dependencies[\"$PKG\"] = 1.0.0-beta.1" package.json >$TMP && mv $TMP package.json
for PKG in $(jq --raw-output ".dependencies | keys[] | select(. == \"@noir-lang/types\")" package.json); do
jq ".dependencies[\"$PKG\"] = \"1.0.0-beta.1\"" package.json >$TMP && mv $TMP package.json
done
fi
fi
Expand Down

0 comments on commit b22c9b9

Please sign in to comment.