1.1.0 • Published 5 years ago

monorepo-dependencies-check v1.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

monorepo-dependencies-check

Build Status

In a monorepo architecture you often want to keep your dependencies synchronized between packages. This CLI tool will help you check the versions.

Install

npm install monorepo-dependencies-check

Usage

monorepo-dependencies-check -p react

Will look in all your workspace packages to compare react version with the root package.json file. It will use semver to compare versions.

monorepo-dependencies-check -p react ..

With .., it will look in package.json in relative path.

You could also check for as many packages as you want.

monorepo-dependencies-check -p react styled-components babel eslint

You could also pass --all to check for all dependencies listed in the root package.json file.

monorepo-dependencies-check --all