Releases: xing/canarist
Releases · xing/canarist
v2.0.1
v2.0.0
2.0.0 (2020-05-04)
Bug Fixes
- cli: do not fail if root manifest does not exist (4f073ee)
- use process.cwd() for cloning (d3a529f)
- workspaces: set default workspace root version (320137a)
Features
- add help/usage screen (553d5ce)
- align console output (8409847)
- completely overhauled implementation v2 (cd11a85)
- execute configured commands (cd412ff)
- implement handling of "nohoist" workspaces (23b6367)
- warn on duplicate, incompatible resolutions (bdc0ce9)
- cli: merge ".npmrc" config files (a023d1f)
- cli: start integrating all the pieces into cli (08951db)
- cli: write modified manifests to disk (59c6078)
- clone: implement basic git cloning functionality (8ea23a5)
- config: parse and normalize config (34893e2)
- workspaces: collect all packages and align their versions (2264154)
- yarn: install dependencies with yarn (f2672ed)
- add patched subarg and tests (ba4c7ee)
BREAKING CHANGES
- The configuration has changed from
repository
tourl
If you have an configuration that specifies the repositories like this:
"canarist": {
"repositories": [
{
"repository": "https://github.com/xing/canarist.git"
}
]
}
It must now be written as:
"canarist": {
"repositories": [
{
"url": "https://github.com/xing/canarist.git"
}
]
}