Closed knulpi closed 1 year ago
Could this be the cause of this following error? I'm I have tried v2.31 and v2.32 and when building it in docker it fails. Just wanted to double check before making another issue.
Could this be the cause of this following error? I'm I have tried v2.31 and v2.32 and when building it in docker it fails. Just wanted to double check before making another issue.
yes, that's exactly the one.
I solved using
"@tabler/icons-svelte": "2.30.0",
Since release
2.32.0
, svelte won't build withicons-svelte
anymore. The problem boils down to the newly introduceddevice-game-pad.svg
icon. It causes a file conflict, so that onlyIconDeviceGamePad.svelte
is in the release, but notIconDeviceGamepad.svelte
. The latter, however, is still referenced in the builttabler-icons-svelte.js
file, causing the svelte build to fail when using2.32.0
.Suggestion: As there already are two gamepad icons, change the latest added one to be
device-gamepad-3.svg
. I will open a PR for that.