Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove non-npm packages from end-to-end during canary flow #2394

Merged
merged 2 commits into from
Sep 19, 2023

Conversation

spypsy
Copy link
Member

@spypsy spypsy commented Sep 19, 2023

To ensure we don't use any pre-built workspace dependences, This script updates canary dependences to the version being released, as well as removing remaining @aztec/ packages from package.json

for PKG in "${TARGET_PKGS[@]}"; do
jq --arg v $VERSION ".dependencies[\"$PKG\"] = \$v" package.json > $TMP && mv $TMP package.json
done
# for PKG in "${TARGET_PKGS[@]}"; do
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can remove the commented code

.dependencies |= with_entries(
select(
(.key | startswith("@aztec")) as $isAztec |
if $isAztec then
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh boy haha cool but this is where having JS available to use would be nice

@spypsy spypsy merged commit e3f97f2 into master Sep 19, 2023
2 checks passed
@spypsy spypsy deleted the spy/remove-non-canary-packages branch September 19, 2023 10:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

2 participants