fyn 3.1.4 → 3.1.5
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 +11 -0
- package/bin/fyn.mjs +1 -1
- package/dist/fyn.mjs +16565 -16284
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -28,6 +28,17 @@ To see detailed stats about any package, use the `stat` command:
|
|
|
28
28
|
fyn stat lodash
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
+
To check direct registry dependencies for newer versions without changing anything:
|
|
32
|
+
|
|
33
|
+
```sh
|
|
34
|
+
fyn outdated
|
|
35
|
+
fyn outdated lodash --json
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
`outdated` compares the installed version with the newest version allowed by the declared range
|
|
39
|
+
and the registry's `latest` tag. Local, Git, and URL dependencies are not compared. Pass
|
|
40
|
+
`--refresh-meta` to bypass fresh registry metadata caches.
|
|
41
|
+
|
|
31
42
|
- It can read and use some settings from your `.npmrc`.
|
|
32
43
|
- It can use `npm-shrinkwrap.json` or `package-lock.json` files.
|
|
33
44
|
|