check-version-modules
Check modules's version for the package.
/!\ Warning ! This package is designed to work only with strict version, without artefacts ("^", "~", etc...)
Installation
$ npm install check-version-modules
Features
- Extract package's dependencies & dev dependencies
- Extract there versions
- Compare them to the latest package's version
Doc
Methods
(file: string, options?: iOptions) => Promise<boolean>
extract & compare data
Interfaces
interface iOptions {
"failAtMajor": boolean;
"failAtMinor": boolean;
"failAtPatch": boolean;
"dev": boolean;
"console": boolean;
}
Command line options
--fail-at-major
=> failAtMajor = true--no-fail-at-major
=> failAtMajor = false--fail-at-minor
=> failAtMinor = true--no-fail-at-minor
=> failAtMinor = false--fail-at-patch
=> failAtPatch = true--no-fail-at-patch
=> failAtPatch = false--dev
=> dev = true--no-dev
=> dev = false--console
=> console = true--no-console
=> console = false--file
=> specify analysed file with next argument, if not set analyse the "package.json" in the working directory
Examples
Command line
$ cd ./myProject/ && npx check-version-modules --file /etc/tests/package.json --fail-at-patch --no-dev
$ cd ./myProject/ && npx check-version-modules --no-console --no-fail-at-minor
Native
const checker = require("check-version-modules");
checker("/etc/tests/package.json", {
"failAtPatch": true,
"dev": false
}).then((valid) => {
console.log(valid ? "ok": "old versions detected");
}).catch((err) => {
console.error(err);
});
Typescript
import checker = require("check-version-modules");
checker("./package.json").then((valid) => {
console.log(valid ? "ok": "old versions detected");
}).catch((err) => {
console.error(err);
});
Tests
$ npm run-script tests
License
ISC