@flyingboat/upup 0.1.2 → 0.2.1
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 +12 -1
- package/dist/bundle.js +1688 -63
- package/package.json +36 -31
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @flyingboat/upup
|
|
2
2
|
|
|
3
|
-
CLI to check dependency versions in a project and show which ones are outdated.
|
|
3
|
+
CLI tool to check dependency versions in a project and show which ones are outdated.
|
|
4
4
|
|
|
5
5
|
## Install (global)
|
|
6
6
|
|
|
@@ -9,6 +9,12 @@ npm install -g @flyingboat/upup
|
|
|
9
9
|
pnpm add -g @flyingboat/upup
|
|
10
10
|
```
|
|
11
11
|
|
|
12
|
+
or via npx:
|
|
13
|
+
```
|
|
14
|
+
npx @flyingboat/upup
|
|
15
|
+
pnpm dlx @flyingboat/upup
|
|
16
|
+
```
|
|
17
|
+
|
|
12
18
|
## Usage
|
|
13
19
|
|
|
14
20
|
Run in the current project:
|
|
@@ -17,3 +23,8 @@ Run in the current project:
|
|
|
17
23
|
upup
|
|
18
24
|
```
|
|
19
25
|
|
|
26
|
+
for CICD
|
|
27
|
+
|
|
28
|
+
```
|
|
29
|
+
upup --ci
|
|
30
|
+
```
|