Conversation
Signed-off-by: Uroš Marolt <uros@marolt.me>
Contributor
|
Your PR title doesn't contain a Jira issue key. Consider adding it for better traceability. Example:
Projects:
Please add a Jira issue key to your PR title. |
skwowet
approved these changes
May 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Removes obsolete down-migration SQL files, a 10k-line dead webhook events test fixture, and a couple of stale backend config artifacts. Pure cleanup — no runtime behavior changes. Shrinks the repo, drops dead deps, and trims noise from migration listings.
Changes
U*__*.sqldown-migration files frombackend/src/database/migrations/andservices/libs/database/src/product/migrations/. Down migrations aren't part of the rollout path here, so they were dead weight.backend/src/serverless/integrations/webhooks/__tests__/events.ts(10,585 lines of fixture data no longer referenced).backend/babel.config.json(TS toolchain no longer goes through Babel).backend/package.json(devDeps tied to the removed Babel/test setup).scripts/clitweak and resultingpnpm-lock.yamlregeneration.Type of change
Note
Low Risk
Low risk cleanup that mainly deletes unused SQL down-migration files and removes unreferenced dev tooling; the main risk is only to local rollback/testing workflows that may still rely on the deleted artifacts.
Overview
Removes a large set of unused
U*__*.sqldown-migration files frombackend/src/database/migrations(and a leftover product down migration), reducing migration noise and repo size.Drops legacy backend tooling/config by deleting
backend/babel.config.json, removing thetestscript, and pruning related devDependencies (Babel presets/core plussupertest/node-mocks-http) frombackend/package.json.Reviewed by Cursor Bugbot for commit a400003. Bugbot is set up for automated code reviews on this repo. Configure here.