Martin Malinda
Martin Malinda
First of all, I'm loving Alfy so far ❤️ So there's this new awesome new runtime Bun: https://github.com/Jarred-Sumner/bun. And I'm thinking that Alfred workflows would be really nice to run...
Hi! Thanks for creating this lib! In a script filter I can return a bunch of images with `title`, `description` and `arg`. Is it also possible to pass an image...
Hi! One benefit of Quill is that it is modular. So you can import like this ```ts import Quill from 'quill/core'; import Bold from 'quill/formats/bold'; import Italic from 'quill/formats/italic'; import...
I have an async function like this: ```ts source: async function(searchTerm, renderList) { let _creators = [] as any[]; searchCreatorsTask.perform(searchTerm).then(creators => { _creators = creators.map(creator => ({ id: creator.id, value:...
Every task instance creates a bunch of `computed` which can be costly, especially in Vue 2. Task instances are also created often asynchronously - after user interaction or when other...
There's several approaches how to handle SSR with Tasks but none are optimal: https://vue-concurrency.netlify.app/ssr-support/ The approach of saving data to VueX / Pinia or other client side store has proven...
I might need to run microbundle twice with different configs 🤔 https://github.com/developit/microbundle/issues/66
- https://github.com/microsoft/TypeScript/issues/14883 - https://github.com/ilbrando/redux-saga-typescript
By the design of the task that is catching errors, these errors might not appear in the console. The task could print these errors in the console anyways, but I...
vue-concurrency API initially started to be as close as possible to [ember-concurrency](http://ember-concurrency.com/) for a few reasons: - it makes this library easy to understand for people who know ember-concurrency -...