Christophe Marois
Christophe Marois
Works for me on 10.15.7. Installed like this: ```bash # install brew cask install WebPQuickLook # bypass the "developer cannot be verified" xattr -d com.apple.quarantine ~/Library/QuickLook/WebpQuickLook.qlgenerator # manually reset quicklook...
Just ran into this myself. It's because `Spinner.vue` uses `...`, so if you don't have `node-sass` and `sass-loader`, the Vue template compiler will fail. Not only that, but `Spinner.vue`'s style...
It seems like the Crystal compiler sometimes has problems linking dynamic libraries, as this [issue suggests](https://github.com/crystal-lang/crystal/issues/2003). I'll try recompiling it by linking the dylib you're missing. If you wanna compile...
I'm still trying to understand how to link the `.dylib`. However the guys in #2 seem to have found a solution!
Thanks @jdrew1303. Would be really helpful to have a more descriptive error such as `Error: absent or invalid token` instead of juste `Error`
Was stuck on this for days. I have a monorepo setup with PNPM workspaces. Temporarily fixed by forcing up-to-date dependencies by adding: ```json "pnpm": { "overrides": { "@stripe/[email protected]>@firebase/app": "0.8.2", "@stripe/[email protected]>@firebase/auth":...
`zValidator` middleware currently has an optional `hook` argument that allows you to add logic before the middleware sends its `400` response, and optionally override the response completely ([source](https://github.com/honojs/middleware/blob/eb56625257bdeeaacdadc038c0cc17d509e1d050/packages/zod-validator/src/index.ts#L20)) ```typescript import...