check-version-modules
Check modules's version for the package.
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
Supported patterns
does not support artifacts like "-beta" each "*" character will be understood like a "x"' here, "n" is a whatever number sample, like "1"
Does support following patterns:
- x (=> x.x.x)
- x.x.n (=> x.x.x)
- x.n.n (=> x.x.x)
- n (=> n.x.x)
- n.x (=> n.x.x)
- n.n (=> n.n.x)
- n.n.n
- ^n.n.n (=> n.x.x)
- ~n.n.n (=> n.n.x)
Methods
(file: string, options?: iOptions) => Promise<boolean>
extract & compare data
Interfaces
interface iOptions {
"failAtMajor": boolean; // default: true => if no pattern, used for the returned boolean
"failAtMinor": boolean; // default: true => if no pattern, used for the returned boolean
"failAtPatch": boolean; // default: false => if no pattern, used for the returned boolean
"dev": boolean; // default: true => analyse dev deps too
"console": boolean; // default: true => print analyse's result in the terminal
}
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
$ git clone git://github.com/Psychopoulet/check-version-modules.git
$ cd ./check-version-modules
$ npm install
$ npm run-script tests