fyn 3.1.3 → 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/LICENSE CHANGED
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2016-present WalmartLabs
189
+ Copyright 2022-2026 Joel Chen
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
package/README.md CHANGED
@@ -4,9 +4,7 @@
4
4
  [![Apache 2.0 License][apache-2.0-blue-image]][apache-2.0-url]
5
5
  [![Build Status][build-image]][build-url]
6
6
 
7
- **fyn** is the package manager for [fynpo], a zero setup monorepo manager for node.js.
8
-
9
- It treats your disk as a registry so you can develop, publish, and test all your packages using local copies directly.
7
+ **fyn** is a fast package manager for Node.js. It treats your disk as a registry, so you can develop and test packages using local copies. It uses hardlinks and a shared store to save disk space and speed up installs. It can link live source folders between packages, so changes show up right away. It reads your existing `.npmrc` and lockfiles, and it powers [fynpo], a zero-setup monorepo tool.
10
8
 
11
9
  ## Quick Start
12
10
 
@@ -30,6 +28,17 @@ To see detailed stats about any package, use the `stat` command:
30
28
  fyn stat lodash
31
29
  ```
32
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
+
33
42
  - It can read and use some settings from your `.npmrc`.
34
43
  - It can use `npm-shrinkwrap.json` or `package-lock.json` files.
35
44
 
@@ -471,7 +480,7 @@ Other than benefiting from the massive package ecosystem and all the documents f
471
480
 
472
481
  ## License
473
482
 
474
- Copyright (c) 2015-2021, WalmartLabs
483
+ Copyright (c) 2022-2026 Joel Chen
475
484
 
476
485
  Licensed under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0).
477
486
 
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
  }