1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 09:02:08 +02:00

npm: describe implicit 'latest' version (#10925)

This commit is contained in:
Nicolas Kosinski 2023-10-11 09:32:21 +02:00 committed by GitHub
parent 11104892fe
commit 67de197e7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,11 +16,11 @@
`npm install {{module_name}}@{{version}}` `npm install {{module_name}}@{{version}}`
- Download a package and add it to the list of dev dependencies in `package.json`: - Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
`npm install {{module_name}} --save-dev` `npm install {{module_name}} --save-dev`
- Download a package and install it globally: - Download the latest version of a package and install it globally:
`npm install --global {{module_name}}` `npm install --global {{module_name}}`