Kiko Beats

Results 271 comments of Kiko Beats

@ghmendonca that's actually expected since the new rules set is the latest timestamp vs. first timestamp For example, in a markup like this: ``` ``` The `date` field will be...

Another pretty clear example: The new `date` field is the latest modified timestamp rather than the publication date

This is now addressed! just use `metascraper-date` v5.34.0 or above: ```js const date = require('metascraper-date')({ datePublished: true, dateModified: true }) ```

Hello everyone, The PR is prepared https://github.com/microlinkhq/metascraper/pull/608 Appreciated if you can feedback, otherwise will be merged shortly 🙂

BTW this is how I use `cacheable-lookup` with `tangerine` for getting DNS-over-HTTPs: ```js new CacheableLookup({ resolver: new Tangerine( { cache: false, }, require('got').extend({ responseType: 'buffer', decompress: false, retry: 0 })...

For example for use bootstap themes (bootswatch): ``` less // Mixins @import "mixins/bootstrap.mixins.import.less"; @import "mixins/images.mixins.import.less"; // Modules @import "modules/constants.import.less"; @import "modules/spaces.import.less"; @import "modules/fonts.import.less"; // Theme @import "vendor/custom.bootstrap.import.less"; @import "themes/lumen.variables.import.less"; @import...

For people using an old version of Sharp, can you try it again? The Vercel team have fixed stuff that were preventing newer versions of sharp from working. I just...

I tried to understand what's happening. If I create a minimal `[email protected]` and `[email protected]` interaction (that's pretty much what Edge runtime does) it works: ```js import { fetch, Headers, Request,...

@dkokotov > cloning the request is broken in edge runtime with dev server. you can see this with this minimal reproduction. Not really. I ported the reproduction to a standalone...