fyn 3.1.4 → 3.1.6

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.
Files changed (4) hide show
  1. package/README.md +11 -0
  2. package/bin/fyn.mjs +1 -1
  3. package/dist/fyn.mjs +16653 -16313
  4. package/package.json +4 -4
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
 
package/bin/fyn.mjs CHANGED
@@ -9,6 +9,6 @@ try {
9
9
  await run();
10
10
  process.exit(0);
11
11
  } catch (err) {
12
- console.log(err);
12
+ console.error(err);
13
13
  process.exit(1);
14
14
  }