fyn 3.1.2 → 3.1.4

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 (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +2 -4
  3. 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 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
 
@@ -471,7 +469,7 @@ Other than benefiting from the massive package ecosystem and all the documents f
471
469
 
472
470
  ## License
473
471
 
474
- Copyright (c) 2015-2021, WalmartLabs
472
+ Copyright (c) 2022-2026 Joel Chen
475
473
 
476
474
  Licensed under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0).
477
475
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "fyn",
3
3
  "type": "module",
4
- "version": "3.1.2",
5
- "description": "fyn is the NPM for fynpo -- a zero setup monorepo tool",
4
+ "version": "3.1.4",
5
+ "description": "fyn is a node.js package manager, and supports fynpo -- a zero setup monorepo tool",
6
6
  "main": "./bin/index.mjs",
7
7
  "homepage": "https://github.com/jchip/fynjs/tree/main/packages/fyn",
8
8
  "license": "Apache-2.0",
@@ -33,11 +33,10 @@
33
33
  "fyn": "./bin/fyn.mjs",
34
34
  "fun": "./bin/fun.mjs"
35
35
  },
36
- "author": "Walmart GTP.js Team and Contributors",
36
+ "author": "Joel Chen",
37
37
  "publishConfig": {
38
38
  "access": "public",
39
- "registry": "https://registry.npmjs.com/",
40
- "tag": "v3"
39
+ "registry": "https://registry.npmjs.com/"
41
40
  },
42
41
  "files": [
43
42
  "bin",
@@ -79,11 +78,12 @@
79
78
  "contributors": [
80
79
  "Joel Chen",
81
80
  "Dat Vong",
82
- "Divya Karippath"
81
+ "Divya Karippath",
82
+ "Walmart GTP.js Team and Contributors"
83
83
  ],
84
84
  "devDependencies": {
85
- "@fynjs/run": "^1.1.1",
86
- "@fynjs/ts-resolve": "^1.0.1",
85
+ "@fynjs/run": "^1.1.3",
86
+ "@fynjs/ts-resolve": "^1.0.2",
87
87
  "@types/node": "^26.4.1",
88
88
  "@vitest/coverage-v8": "^5.0.0",
89
89
  "@vitest/ui": "^5.0.0",
@@ -92,6 +92,7 @@
92
92
  "patch-package": "^8.0.0",
93
93
  "prettier": "^3.5.3",
94
94
  "rolldown": "^1.2.6",
95
+ "run-verify": "^2.1.3",
95
96
  "typescript": "^7.0.2",
96
97
  "vite": "^8.2.2",
97
98
  "vitest": "^5.0.0",