@fedify/cli 2.3.2-dev.1556 → 2.3.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/dist/deno.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import "@js-temporal/polyfill";
2
2
  //#region deno.json
3
- var version = "2.3.2-dev.1556+3e14f2d7";
3
+ var version = "2.3.3";
4
4
  //#endregion
5
5
  export { version };
package/dist/nodeinfo.js CHANGED
@@ -227,8 +227,9 @@ async function getFaviconUrl(url, userAgent) {
227
227
  if (w < 38 || h < 19) continue;
228
228
  }
229
229
  if ("href" in attrs) {
230
- if (attrs.href.endsWith(".svg")) continue;
231
- return new URL(attrs.href, response.url);
230
+ const parsedUrl = new URL(attrs.href, response.url);
231
+ if (parsedUrl.pathname.toLowerCase().endsWith(".svg")) continue;
232
+ return parsedUrl;
232
233
  }
233
234
  }
234
235
  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.3.2-dev.1556+3e14f2d7",
3
+ "version": "2.3.3",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "README.md",
@@ -58,13 +58,13 @@
58
58
  },
59
59
  "dependencies": {
60
60
  "@cfworker/json-schema": "^4.1.1",
61
- "@fxts/core": "^1.20.0",
61
+ "@fxts/core": "^1.21.1",
62
62
  "@optique/config": "^1.1.0",
63
63
  "@optique/core": "^1.1.0",
64
64
  "@optique/discover": "^1.1.0",
65
65
  "@optique/run": "^1.1.0",
66
66
  "@standard-schema/spec": "^1.1.0",
67
- "@hongminhee/localtunnel": "^0.3.0",
67
+ "@hongminhee/localtunnel": "^0.3.1",
68
68
  "@inquirer/prompts": "^7.8.4",
69
69
  "@jimp/core": "^1.6.1",
70
70
  "@jimp/wasm-webp": "^1.6.1",
@@ -91,14 +91,14 @@
91
91
  "srvx": "^0.8.7",
92
92
  "valibot": "^1.4.0",
93
93
  "yaml": "^2.9.0",
94
- "@fedify/init": "2.3.2-dev.1556+3e14f2d7",
95
- "@fedify/fedify": "2.3.2-dev.1556+3e14f2d7",
96
- "@fedify/relay": "2.3.2-dev.1556+3e14f2d7",
97
- "@fedify/vocab": "2.3.2-dev.1556+3e14f2d7",
98
- "@fedify/vocab-runtime": "2.3.2-dev.1556+3e14f2d7",
99
- "@fedify/sqlite": "2.3.2-dev.1556+3e14f2d7",
100
- "@fedify/vocab-tools": "2.3.2-dev.1556+3e14f2d7",
101
- "@fedify/webfinger": "2.3.2-dev.1556+3e14f2d7"
94
+ "@fedify/fedify": "2.3.3",
95
+ "@fedify/init": "2.3.3",
96
+ "@fedify/relay": "2.3.3",
97
+ "@fedify/sqlite": "2.3.3",
98
+ "@fedify/vocab-runtime": "2.3.3",
99
+ "@fedify/vocab": "2.3.3",
100
+ "@fedify/vocab-tools": "2.3.3",
101
+ "@fedify/webfinger": "2.3.3"
102
102
  },
103
103
  "devDependencies": {
104
104
  "@types/bun": "^1.2.23",