Changesets
Medium — good to knowGeneral Dev
ELI5 — The Vibe Check
Changesets asks developers to leave a note (a changeset) describing what they changed and whether it's a patch, minor, or major change. At release time, it collects all those notes, bumps versions correctly, and writes your changelog. No more version arguments in PR reviews.
Real Talk
undefined
When You'll Hear This
undefined
Related Terms
Lerna
Lerna was the grandfather of JavaScript monorepos before Nx and Turborepo showed up.
intermediateGeneral Dev
Monorepo
A monorepo is when you put all your different projects — frontend, backend, shared libraries — in one giant single repository instead of separate repos.
intermediateGeneral Dev
Semantic Release
Semantic Release reads your commit messages and automatically figures out the next version number, generates a changelog, and publishes the release.
intermediateCI/CD & DevOps