Crates.io | pushapp-cli |
lib.rs | pushapp-cli |
version | 1.4.1 |
source | src |
created_at | 2024-10-01 18:53:55.220128 |
updated_at | 2024-10-14 17:40:30.551449 |
description | Ultra fast dependencies updater for Node.js |
homepage | |
repository | https://github.com/flaviodelgrosso/pushapp |
max_upload_size | |
id | 1393298 |
size | 1,973,190 |
⚡ Ultra fast dependencies updater for Node.js written in Rust! ⚡
cargo install pushapp-cli
Run the following command in your Node.js project directory:
pushapp
Option | Description |
---|---|
-t , --target |
Determines the version to upgrade to |
-g , --global |
Check global packages |
-D , --development |
Check only devDependencies |
-P , --production |
Check only dependencies and optionalDependencies |
-h , --help |
Display help information |
-V , --version |
Display version information |
1.0.0
→ 1.2.0
--target pre
to include the highest pre-release versions (e.g. alpha
, beta
, rc
)--target semver
, update according to your specified semver version ranges:
^1.1.0
→ ^1.9.99
--target major
, strictly update the major version:
1.0.0
→ 2.0.0
--target minor
, strictly update the patch and minor versions (including major version zero):
0.1.0
→ 0.2.1
--target patch
, strictly update the patch version (including major version zero):
0.1.0
→ 0.1.2
--target [tag]
, update to the version published on the specified tag:
0.1.0
-> 0.1.1-canary.1
next
, canary
, rc
, beta
, alpha
. The default is latest
.This project is licensed under the MIT License - see the LICENSE file for details.
Flavio Delgrosso