@fedify/cli 2.2.5 → 2.2.7
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/dist/deno.js +1 -1
- package/dist/nodeinfo.js +3 -2
- package/package.json +11 -11
package/dist/deno.js
CHANGED
package/dist/nodeinfo.js
CHANGED
|
@@ -186,8 +186,9 @@ async function getFaviconUrl(url, userAgent) {
|
|
|
186
186
|
if (w < 38 || h < 19) continue;
|
|
187
187
|
}
|
|
188
188
|
if ("href" in attrs) {
|
|
189
|
-
|
|
190
|
-
|
|
189
|
+
const parsedUrl = new URL(attrs.href, response.url);
|
|
190
|
+
if (parsedUrl.pathname.toLowerCase().endsWith(".svg")) continue;
|
|
191
|
+
return parsedUrl;
|
|
191
192
|
}
|
|
192
193
|
}
|
|
193
194
|
return new URL("/favicon.ico", response.url);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/cli",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"README.md",
|
|
@@ -57,12 +57,12 @@
|
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@fxts/core": "^1.
|
|
60
|
+
"@fxts/core": "^1.21.1",
|
|
61
61
|
"@optique/config": "^1.0.2",
|
|
62
62
|
"@optique/core": "^1.0.2",
|
|
63
63
|
"@optique/run": "^1.0.2",
|
|
64
64
|
"@standard-schema/spec": "^1.1.0",
|
|
65
|
-
"@hongminhee/localtunnel": "^0.3.
|
|
65
|
+
"@hongminhee/localtunnel": "^0.3.1",
|
|
66
66
|
"@inquirer/prompts": "^7.8.4",
|
|
67
67
|
"@jimp/core": "^1.6.0",
|
|
68
68
|
"@jimp/wasm-webp": "^1.6.0",
|
|
@@ -87,14 +87,14 @@
|
|
|
87
87
|
"smol-toml": "^1.6.0",
|
|
88
88
|
"srvx": "^0.8.7",
|
|
89
89
|
"valibot": "^1.2.0",
|
|
90
|
-
"@fedify/
|
|
91
|
-
"@fedify/
|
|
92
|
-
"@fedify/
|
|
93
|
-
"@fedify/
|
|
94
|
-
"@fedify/vocab-
|
|
95
|
-
"@fedify/
|
|
96
|
-
"@fedify/
|
|
97
|
-
"@fedify/
|
|
90
|
+
"@fedify/fedify": "2.2.7",
|
|
91
|
+
"@fedify/relay": "2.2.7",
|
|
92
|
+
"@fedify/sqlite": "2.2.7",
|
|
93
|
+
"@fedify/vocab-runtime": "2.2.7",
|
|
94
|
+
"@fedify/vocab-tools": "2.2.7",
|
|
95
|
+
"@fedify/webfinger": "2.2.7",
|
|
96
|
+
"@fedify/init": "2.2.7",
|
|
97
|
+
"@fedify/vocab": "2.2.7"
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
100
|
"@types/bun": "^1.2.23",
|