mirror of https://github.com/bastienwirtz/homer
update dependencies
parent
105937d438
commit
58a1a0764d
24
package.json
24
package.json
|
@ -13,24 +13,24 @@
|
||||||
"@fortawesome/fontawesome-free": "^6.7.2",
|
"@fortawesome/fontawesome-free": "^6.7.2",
|
||||||
"bulma": "^1.0.4",
|
"bulma": "^1.0.4",
|
||||||
"lodash.merge": "^4.6.2",
|
"lodash.merge": "^4.6.2",
|
||||||
"vue": "^3.5.13",
|
"vue": "^3.5.14",
|
||||||
"yaml": "^2.7.1"
|
"yaml": "^2.8.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/js": "^9.21.0",
|
"@eslint/js": "^9.27.0",
|
||||||
"@vitejs/plugin-vue": "^5.2.1",
|
"@vitejs/plugin-vue": "^5.2.4",
|
||||||
"@vue/eslint-config-prettier": "^10.2.0",
|
"@vue/eslint-config-prettier": "^10.2.0",
|
||||||
"eslint": "^9.21.0",
|
"eslint": "^9.27.0",
|
||||||
"eslint-plugin-vue": "^9.32.0",
|
"eslint-plugin-vue": "^9.33.0",
|
||||||
"globals": "^16.0.0",
|
"globals": "^16.1.0",
|
||||||
"http-server": "^14.1.1",
|
"http-server": "^14.1.1",
|
||||||
"prettier": "^3.5.2",
|
"prettier": "^3.5.3",
|
||||||
"sass-embedded": "^1.85.0",
|
"sass-embedded": "^1.89.0",
|
||||||
"vite": "^6.1.6",
|
"vite": "^6.3.5",
|
||||||
"vite-plugin-pwa": "^0.21.1"
|
"vite-plugin-pwa": "^1.0.0"
|
||||||
},
|
},
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39",
|
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977",
|
||||||
"pnpm": {
|
"pnpm": {
|
||||||
"neverBuiltDependencies": []
|
"neverBuiltDependencies": []
|
||||||
}
|
}
|
||||||
|
|
783
pnpm-lock.yaml
783
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
|
@ -174,7 +174,8 @@ export default {
|
||||||
this.percent_blocked = response.queries.percent_blocked;
|
this.percent_blocked = response.queries.percent_blocked;
|
||||||
this.retryCount = 0;
|
this.retryCount = 0;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
const isAuthError = e.message.includes("401 error") || e.message.includes("403 error");
|
const isAuthError =
|
||||||
|
e.message.includes("401 error") || e.message.includes("403 error");
|
||||||
if (isAuthError && this.item.apikey) {
|
if (isAuthError && this.item.apikey) {
|
||||||
this.removeCacheSession();
|
this.removeCacheSession();
|
||||||
return this.retryWithDelay();
|
return this.retryWithDelay();
|
||||||
|
|
Loading…
Reference in New Issue