Migrate to changesets from custom release tooling (#5840)

- Remove custom release tooling in favor of changesets
- Add changesets for all unreleased commits
This commit is contained in:
Merlijn Vos 2025-07-24 09:24:09 +02:00 committed by GitHub
parent 0525a2c91a
commit 0c24c5aeab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
24 changed files with 576 additions and 949 deletions

View file

@ -28,7 +28,6 @@
"e2e:generate": "yarn workspace e2e generate-test",
"e2e:headless": "yarn workspace e2e cypress:headless",
"e2e": "npm-run-all --parallel build:watch e2e:client start:companion:with-loadbalancer e2e:cypress",
"release": "PACKAGES=$(yarn workspaces list --json) yarn workspace @uppy-dev/release interactive",
"size": "echo 'JS Bundle mingz:' && cat ./packages/uppy/dist/uppy.min.js | gzip | wc -c && echo 'CSS Bundle mingz:' && cat ./packages/uppy/dist/uppy.min.css | gzip | wc -c",
"start:companion": "yarn workspace @uppy/companion start:dev",
"start:companion:with-loadbalancer": "e2e/start-companion-with-load-balancer.mjs",
@ -36,7 +35,8 @@
"test:watch": "turbo watch test --filter='./packages/@uppy/*' --filter='./packages/uppy'",
"typecheck": "turbo run typecheck --filter='./packages/@uppy/*' --filter='./packages/uppy'",
"uploadcdn": "yarn workspace uppy exec -- node upload-to-cdn.js",
"version": "yarn node ./bin/after-version-bump.js"
"version": "changeset version && corepack yarn install --mode=update-lockfile",
"release": "changeset publish"
},
"resolutions": {
"@types/react": "^18",
@ -48,6 +48,8 @@
},
"devDependencies": {
"@biomejs/biome": "2.0.5",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.5",
"npm-run-all": "^4.1.5",
"start-server-and-test": "^1.14.0",
"turbo": "^2.5.4",