fyn 3.1.1 → 3.1.3
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/bin/check-node.mjs +1 -1
- package/dist/fyn.mjs +22666 -8613
- package/package.json +20 -2
package/bin/check-node.mjs
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
// import graph before evaluating any of it - a check sitting above a static import of the
|
|
7
7
|
// bundle would never get to run on the versions it exists for.
|
|
8
8
|
//
|
|
9
|
-
const MIN_NODE = "22.
|
|
9
|
+
const MIN_NODE = "22.22.2";
|
|
10
10
|
|
|
11
11
|
const parts = version => version.split("-")[0].split(".").map(n => parseInt(n, 10));
|
|
12
12
|
|