@thi.ng/fuzzy-viz 2.1.139 → 2.1.141
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/CHANGELOG.md +1 -1
- package/README.md +9 -3
- package/package.json +10 -9
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 192 standalone projects, maintained as part
|
|
11
11
|
> of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
|
@@ -40,7 +40,13 @@ Visualization, instrumentation & introspection utils for [@thi.ng/fuzzy](https:/
|
|
|
40
40
|
yarn add @thi.ng/fuzzy-viz
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
ESM import:
|
|
44
|
+
|
|
45
|
+
```ts
|
|
46
|
+
import * as fv from "@thi.ng/fuzzy-viz";
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Browser ESM import:
|
|
44
50
|
|
|
45
51
|
```html
|
|
46
52
|
<script type="module" src="https://cdn.skypack.dev/@thi.ng/fuzzy-viz"></script>
|
|
@@ -51,7 +57,7 @@ ES module import:
|
|
|
51
57
|
For Node.js REPL:
|
|
52
58
|
|
|
53
59
|
```js
|
|
54
|
-
const
|
|
60
|
+
const fv = await import("@thi.ng/fuzzy-viz");
|
|
55
61
|
```
|
|
56
62
|
|
|
57
63
|
Package sizes (brotli'd, pre-treeshake): ESM: 1023 bytes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/fuzzy-viz",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.141",
|
|
4
4
|
"description": "Visualization, instrumentation & introspection utils for @thi.ng/fuzzy",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/api": "^8.
|
|
40
|
-
"@thi.ng/fuzzy": "^2.1.
|
|
41
|
-
"@thi.ng/hiccup": "^5.1.
|
|
42
|
-
"@thi.ng/hiccup-svg": "^5.2.
|
|
43
|
-
"@thi.ng/math": "^5.10.
|
|
44
|
-
"@thi.ng/strings": "^3.7.
|
|
45
|
-
"@thi.ng/text-canvas": "^3.0.
|
|
39
|
+
"@thi.ng/api": "^8.10.1",
|
|
40
|
+
"@thi.ng/fuzzy": "^2.1.78",
|
|
41
|
+
"@thi.ng/hiccup": "^5.1.28",
|
|
42
|
+
"@thi.ng/hiccup-svg": "^5.2.33",
|
|
43
|
+
"@thi.ng/math": "^5.10.10",
|
|
44
|
+
"@thi.ng/strings": "^3.7.30",
|
|
45
|
+
"@thi.ng/text-canvas": "^3.0.19"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@microsoft/api-extractor": "^7.43.0",
|
|
@@ -89,8 +89,9 @@
|
|
|
89
89
|
}
|
|
90
90
|
},
|
|
91
91
|
"thi.ng": {
|
|
92
|
+
"alias": "fv",
|
|
92
93
|
"parent": "@thi.ng/fuzzy",
|
|
93
94
|
"year": 2020
|
|
94
95
|
},
|
|
95
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "18a0c063a7b33d790e5bc2486c106f45f663ac28\n"
|
|
96
97
|
}
|