Shiba

Results 35 comments of Shiba

ok not the perfect solution but this works. *package.json* ```json "prisma:inline": "cp ./node_modules/.prisma/client/*.js ./node_modules/@prisma/client", "prisma:migrate": "prisma migrate deploy && npm run prisma:inline", "prisma:migrate:dev": "prisma migrate dev && npm run prisma:inline",...

> It's not svelte-specific. I fot same issue with [nuxt 3](https://v3.nuxtjs.org/) in production build in heroku its probably a vite, or rollup issue, i believe maybe it's a problem with...

## Problem ok the problem is in `@prisma/client` import string is starting with `.` ## Solutions - so first solution without editing the module files is this: https://github.com/prisma/prisma/issues/12504#issuecomment-1136126199 - to...

> @DeepDoge Is it possible to get around the problem by adding an [import map](https://github.com/WICG/import-maps) somewhere? maybe, idk how vite or rollup would react to it. never used it before.

@shtse8 if my memory is not failing me, i tried doing that before sending my solution. it didnt work for me but gonna look into it again

@kcastellino This would work, but there is one problem on the type side. Typescript doesn't support symbol properties on namespaces yet (https://github.com/microsoft/TypeScript/issues/36813). So `.d.ts` would look like this instead: ```ts...

I don't like the idea of `Signal[Symbol.hasInstance]()` too. I was just trying to please the critics of the idea. But tbh, I see no problems with "faking" a Signal, devs...

Since i didn't know about the portable mode, couldn't find the other issue while searching. So yeah I think this is a duplicate. But still, an option to create the...

@T3sT3ro I think you're confused about what this feature request is actually about. It's not about putting AppImages into different folders. It's about creating a separate folder that AppImage will...

I think instead of having a separated margin setting, having multiplier settings for top/left/bottom/right would be more flexible. Then we can remove the hard-coded `margin * 3` or `margin *...