@fedify/cli 2.2.6 → 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 CHANGED
@@ -1,5 +1,5 @@
1
1
  import "@js-temporal/polyfill";
2
2
  //#region deno.json
3
- var version = "2.2.6";
3
+ var version = "2.2.7";
4
4
  //#endregion
5
5
  export { version };
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
- if (attrs.href.endsWith(".svg")) continue;
190
- return new URL(attrs.href, response.url);
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.6",
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.20.0",
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.0",
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/fedify": "2.2.6",
91
- "@fedify/relay": "2.2.6",
92
- "@fedify/sqlite": "2.2.6",
93
- "@fedify/init": "2.2.6",
94
- "@fedify/vocab": "2.2.6",
95
- "@fedify/vocab-tools": "2.2.6",
96
- "@fedify/vocab-runtime": "2.2.6",
97
- "@fedify/webfinger": "2.2.6"
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",