We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d12f94 commit 50a37cfCopy full SHA for 50a37cf
1 file changed
yarn-project/publish_npm.sh
@@ -57,6 +57,14 @@ function deploy_package() {
57
for PKG in $(jq --raw-output ".dependencies | keys[] | select(contains(\"@aztec/\"))" package.json); do
58
jq --arg v $VERSION ".dependencies[\"$PKG\"] = \$v" package.json >$TMP && mv $TMP package.json
59
done
60
+
61
+ # TODO: Remove this after @noir package resolution is fixed
62
+ if [[ "$PACKAGE_NAME" == "@aztec/pxe" ]]; then
63
+ # Hardcodes "1.0.0-beta.1" for @noir-lang/types
64
+ for PKG in $(jq --raw-output ".dependencies | keys[] | . == \"@noir-lang/types\")" package.json); do
65
+ jq ".dependencies[\"$PKG\"] = 1.0.0-beta.1" package.json >$TMP && mv $TMP package.json
66
+ done
67
+ fi
68
fi
69
70
# Publish
0 commit comments