0.3.0 • Published 3 years ago

@createdbyjurand/node-dependencies-updater v0.3.0

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

Node: Update Dependencies

Installation

npm i -D @createdbyjurand/node-update-dependencies

  • i is substitute of install
  • -D is substitute of --save-dev

Documentation

Reference

Synopsis

node node_modules/@createdbyjurand/node-update-dependecies/update-dependencies.mjs [--delete-node-modules] [--delete-package-lock-json] [--legacy-peer-deps] [--remove-prefixes] [--npm-ci] [--update-all-dependencies-except=<dependency-name>,<dependency-name>,...]

node node_modules/@createdbyjurand/node-update-dependecies/update-dependencies.mjs [--delete-node-modules] [--delete-package-lock-json] [--legacy-peer-deps] [--remove-prefixes] [--npm-ci] [--update-dependencies=<dependency-name>,<dependency-name>,...] [--update-dev-dependencies=<dependency-name>,<dependency-name>,...]

Description

You can setup reinstalling all dependecies acording to package.json with options to remove node_modules, updating only one dependency to the @latest and the rest install as is.

Options

--delete-node-modules     Delete node_modules folder before installation.

--delete-package-lock-json     Delete package-lock.json before installation.

--legacy-peer-deps     Use --legacy-peer-deps argument for npm install.

--legacy-peer-deps restores peerDependency installation behavior from NPM v4 thru v6 for v7+

--remove-prefixes     Remove prefixes from package.json dependencies and devDependencies.

"jest": "^27.3.1" -> "jest": "27.3.1"

--npm-ci     Use npm ci instead of npm i during installation

--update-all-dependencies-except=<dependency-name>,<dependency-name>,...     Update all dependencies and devDependencies from package.json to the @latest version except provided ones.

--update-dependencies=<dependency-name>,<dependency-name>,...     Update only provided dependencies and install normaly the rest.

--update-dependencies and --update-dev-dependencies are executed together before installing the rest of all dependencies and are intended to be used together.

--update-dev-dependencies=<dependency-name>,<dependency-name>,...     Update only provided devDependencies and install normaly the rest.

--update-dependencies and --update-dev-dependencies are executed together before installing the rest of all dependencies and are intended to be used together.

0.3.0

3 years ago

0.2.0

3 years ago

0.1.0

3 years ago