Skip to content

A simple install tool for upgrade npm package version

License

Notifications You must be signed in to change notification settings

saqqdy/reinstaller

Repository files navigation

reinstaller

A simple install tool for upgrade npm package version

NPM version Codacy Badge Test coverage npm download License

Sonar

Installing

# use pnpm
$ pnpm install -g reinstaller

# use npm
$ npm install -g reinstaller

# use yarn
$ yarn global add reinstaller

Usage

  1. Upgrade packages
reinstaller
# or
reinstaller webapp/app
  1. Install new packages
reinstaller install rm-all vue -- -D
# or
reinstaller i rm-all vue -- -D

Configuration

Use .reinstallerrc file

packageTags: Specify the tags to be installed

{
  "packageTags": {
    "vue": "next",
    "js-cool": "^2.8.0"
  }
}

exclude: Exclude packages that you don't want to install

{
  "exclude": ["tsnd"]
}

registry: Set registry

{
  "registry": "https://registry.npmmirror.com"
}

Support & Issues

Please open an issue here.

License

MIT