synopkg 14.0.0

Consistent dependency versions in large JavaScript Monorepos
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Write fixes to disk
pub mod fix;
/// Lint and fix package.json formatting
pub mod format;
/// Output all dependencies as flattened JSON objects
pub mod json;
/// Write lint messages to the UI
pub mod lint;
/// Query and list all instances in the project
pub mod list;
/// A shared module with methods for printing messages to the console
pub mod ui;
/// Find and apply updates from the npm registry
pub mod update;