Skip to content

Commit bc9b861

Browse files
chore(deps): update dependency @nuxt/eslint to v0.5.0 (#1406)
* chore(deps): update dependency @nuxt/eslint to v0.5.0 * made sure that tailwind imports don't trigger eslint * renamed `e` to `_e` to not trigger the unused variable check * Update webclient/app/composables/webglSupport.ts --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Frank Elsinga <[email protected]>
1 parent a147302 commit bc9b861

File tree

4 files changed

+180
-145
lines changed

4 files changed

+180
-145
lines changed

webclient/app/composables/webglSupport.ts

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ function supportsWebgl(): boolean {
33
const canvas = document.createElement("canvas");
44
return !!window.WebGLRenderingContext && !!(canvas.getContext("webgl") || canvas.getContext("experimental-webgl"));
55
} catch (e) {
6+
console.error("cannot construct webglcontext (needed to render the map) because", e)
67
return false;
78
}
89
}

webclient/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"vue3-carousel": "0.3.3"
4040
},
4141
"devDependencies": {
42-
"@nuxt/eslint": "0.4.0",
42+
"@nuxt/eslint": "0.5.0",
4343
"@nuxtjs/i18n": "8.3.3",
4444
"@nuxtjs/tailwindcss": "6.12.1",
4545
"@types/geojson": "7946.0.14",

0 commit comments

Comments
 (0)