-
Notifications
You must be signed in to change notification settings - Fork 11
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: fastify version mismatch #702
Conversation
@@ -6,8 +6,6 @@ | |||
"test": "c8 tap --no-cov" | |||
}, | |||
"dependencies": { | |||
"fastify": "^4.28.1", | |||
"mercurius": "^14.1.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These two were already installed in the workspace root. Better to avoid potential for duplicate versions in the future and centralize to the root package.json.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yep agreed. hopefully there wasn't a reason why they were installed in the individual workspaces. thanks for catching it
"db:migrate": "postgrator", | ||
"db:down": "docker-compose down", | ||
"db:down": "docker compose down", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated docker-compose syntax, to align with the fastify-workshop
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yep good catch 👌
Closes #701
This should fix the test failures in CI too.