Go to file
2019-01-19 20:07:43 +01:00
.editorconfig init 2017-12-03 12:15:02 +01:00
.eslintrc don't return 255 code any more, misc tweaks 2018-05-31 19:33:22 +02:00
.gitignore init 2017-12-03 12:15:02 +01:00
.travis.yml update .travis.yml 2018-01-23 22:33:30 +01:00
LICENSE tweaks 2017-12-03 12:21:06 +01:00
Makefile rewrite version resolution, add tests and screenshot 2019-01-19 20:05:26 +01:00
package.json 6.2.0 2019-01-19 20:07:43 +01:00
README.md breaking: remove --semver option, add --patch and --minor instead - fixes #14 2018-12-21 23:17:39 +01:00
screenshot.png rewrite version resolution, add tests and screenshot 2019-01-19 20:05:26 +01:00
test.js rewrite version resolution, add tests and screenshot 2019-01-19 20:05:26 +01:00
test.json rewrite version resolution, add tests and screenshot 2019-01-19 20:05:26 +01:00
updates.js rewrite version resolution, add tests and screenshot 2019-01-19 20:05:26 +01:00

updates

Fast npm dependency updating tool

updates is a CLI tool which checks for npm dependency updates of the current project and optionally updates package.json. It is typically able to complete in less than a second.

Install

$ npm i -g updates

Usage

usage: updates [options]

  Options:
    -u, --update                  Update versions and write package.json
    -p, --prerelease [<pkg,...>]  Consider prerelease versions
    -g, --greatest [<pkg,...>]    Prefer greatest over latest version
    -i, --include <pkg,...>       Include only given packages
    -e, --exclude <pkg,...>       Exclude given packages
    -t, --types <type,...>        Check only given dependency types
    -P, --patch [<pkg,...>]       Consider only up to semver-patch
    -m, --minor [<pkg,...>]       Consider only up to semver-minor
    -E, --error-on-outdated       Exit with error code 2 on outdated packages
    -r, --registry <url>          Use given registry URL
    -f, --file <path>             Use given package.json file or module directory
    -j, --json                    Output a JSON object
    -c, --color                   Force-enable color output
    -n, --no-color                Disable color output
    -v, --version                 Print the version
    -h, --help                    Print this help

  Examples:
    $ updates
    $ updates -u
    $ updates -u -e chalk
    $ updates -u -s minor
    $ updates -u -t devDependencies

Examples

Check for updates

$ updates
NAME                        OLD       NEW       INFO
string-width                2.1.1     3.0.0     https://github.com/sindresorhus/string-width
eslint                      5.9.0     5.10.0    https://github.com/eslint/eslint
eslint-config-silverwind    2.0.11    2.0.12    https://github.com/silverwind/eslint-config-silverwind

Update package.json

$ updates -u
NAME                        OLD       NEW       INFO
string-width                2.1.1     3.0.0     https://github.com/sindresorhus/string-width
eslint                      5.9.0     5.10.0    https://github.com/eslint/eslint
eslint-config-silverwind    2.0.11    2.0.12    https://github.com/silverwind/eslint-config-silverwind
╭────────────────────────╮
│  package.json updated  │
╰────────────────────────╯

JSON Output

The JSON output is an object with possible properties results, message and error:

$ updates -j | jq
{
  "results": {
    "string-width": {
      "old": "2.1.1",
      "new": "3.0.0",
      "info": "https://github.com/sindresorhus/string-width"
    },
    "eslint": {
      "old": "5.9.0",
      "new": "5.10.0",
      "info": "https://github.com/eslint/eslint"
    },
    "eslint-config-silverwind": {
      "old": "2.0.11",
      "new": "2.0.12",
      "info": "https://github.com/silverwind/eslint-config-silverwind"
    }
  }
}

© silverwind, distributed under BSD licence