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 +1 -1
- package/README.md +13 -4
- package/bin/fyn.mjs +1 -1
- package/dist/fyn.mjs +16565 -16284
- package/package.json +9 -8
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
|
|
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
|
|
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)
|
|
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
|
|