tex0l

Results 52 comments of tex0l

Hi, There is a way to trick it, use a function: ``` [...] imagemin: { mimizerOptions: { plugins: () => [ [ 'gifsicle', { interlaced: false} ], [ 'jpegtran', {...

The way I fixed it is to do the following: ``` imagemin: { minimizerOptions: { plugins: () => [ ['gifsicle', { interlaced: true }], ['jpegtran', { progressive: true }], ['optipng',...

Does https://github.com/margelo/react-native-quick-crypto/pull/108 solve the issue?

I confirm I have this bug, thanks for the workaround.

I need to deep dive again to reply to you. We solved the issue differently, I'll re-open the issue internally to see if we can prioritize resources on this in...

Hi! I have tried on [email protected], @nuxt/[email protected] and @nuxt/[email protected], it doesn't work with `:nuxt-img{src="/path/to/my/img"}`, the components isn't found.

see https://github.com/nuxt/content/issues/390#issuecomment-1267292231

> > Hi! I have tried on [email protected], @nuxt/[email protected] and @nuxt/[email protected], it doesn't work with `:nuxt-img{src="/path/to/my/img"}`, the components isn't found. > > Try this `` No it doesn't work. However...

@RollingHog We released a version of our [fork](https://github.com/seald/nedb/) which removes the use of `async` in favor of a Promise-based executor, and which exposes a Promise-based interface: https://github.com/seald/nedb/blob/master/CHANGELOG.md#300---2022-03-16

> > a Promise-based executor > > @tex0l why did you choose the promise-based executor? Because doing it without `async` but with the built-in ES6 Promise makes it dependency-free.