pipm 1.0.0 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -18,10 +18,10 @@ We've all been there: you run `npm install`, the spinner starts spinning, and th
|
|
|
18
18
|
|
|
19
19
|
## Installation
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
**Note: This is a CLI tool and must be installed globally.**
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
npm install -g
|
|
24
|
+
npm install -g pipm
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
## How to use it
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pipm",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "A Python-inspired progress bar wrapper for npm that adds visibility and personality to your package installations",
|
|
5
5
|
"bin": {
|
|
6
6
|
"pipm": "bin/pipm.js"
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"engines": {
|
|
23
23
|
"node": ">=14.0.0"
|
|
24
24
|
},
|
|
25
|
+
"preferGlobal": true,
|
|
25
26
|
"files": [
|
|
26
27
|
"bin",
|
|
27
28
|
"README.md"
|