bterlson / chronus

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

chronus

** IN DEVELOPMENT **

chronus goal is to provide changelog management. It is currently built depending on changesets(and forked many of logic) which provide a great way to manage changelogs but chronus does things slightly differently:

  • Checking for changes are done by comparing the remote instead of the local base branch. This solve the issue where you might have merged the base branch into your feature branch but not into the local main branch and changesets would report lots of unrelated change.
  • Verify checks every packages have changelog not just that we have a single changelog file.
  • Different versioning policies than changesets. LockedStep provide a way to say we will only ever bump the version by the single specified step at everyrelease. This is a way to diverge from true semver where you might release major changes in minor version.(Particularly useful in pre-release 0.x where minor versions can be used to release breaking changes)
  • Design to be able to plug in different monorepo(changesets also does that), source control system as a plugin system(only git added but left room for more).

Requirements

  • Node 16+
  • pnpm 7.5.2+

Develop

Click here to release current changes

This project uses pnpm workspaces to manage multiple packages.

  1. Install dependencies
pnpm install
  1. Build
pnpm build
  1. Build in watch mode(rebuild automatically on save)
pnpm watch

About

License:MIT License


Languages

Language:TypeScript 98.0%Language:JavaScript 2.0%