synopkg
v13.0.0
Published
Consistent dependency versions in large JavaScript Monorepos
Downloads
77
Maintainers
Readme
synopkg
Installation
npm install --save-dev synopkg
Commands
fix-mismatches
Ensure that multiple packages requiring the same dependency define the same version, so that every package requires eg. [email protected]
, instead of a combination of [email protected]
, [email protected]
, and [email protected]
.
format
Organise package.json files according to a conventional format, where fields appear in a predictable order and nested fields are ordered alphabetically. Shorthand properties are used where available, such as the "repository"
and "bugs"
fields.
lint
Lint all versions and ranges and exit with 0 or 1 based on whether all files match your Synopkg configuration file.
lint-semver-ranges
Check whether dependency versions used within "dependencies", "devDependencies", etc follow a consistent format.
list
List all dependencies required by your packages.
list-mismatches
List dependencies which are required by multiple packages, where the version is not the same across every package.
prompt
Displays a series of prompts to fix mismatches which synopkg cannot fix automatically.
set-semver-ranges
Ensure dependency versions used within "dependencies"
, "devDependencies"
etc follow a consistent format.
update
Interactively update packages to the latest versions from the npm registry, wherever they are in your monorepo. You can update every dependency, just dev/peer/prod dependencies, just packages which match a name filter, and more.