Tim De Pauw

Results 85 comments of Tim De Pauw

Thank you so much! 😍 Discoverability could indeed be improved, both for the examples and for Swirly itself. For the former, I should really just get started on a proper...

As a baby step, I've added a single-page [examples.md](https://github.com/timdp/swirly/blob/main/examples.md) to the repo. This way, at least you don't have to click through a bunch of files. Plenty of possible improvements...

What if I want different permalink patterns for different collections, as well as a fallback for other collections? I tried this: ``` js .use(permalinks({ collection: 'pages', pattern: ':title' })) .use(permalinks({...

Hey guys, I really appreciate all the feedback here and I apologize for not responding to it sooner. Busy times, I'm sure you know how it goes. So anyway. As...

Thanks, I'll definitely take a look at spex soon! One thing I've learned since I wrote es6-promise-pool is that there are a _lot_ of scenarios and edge cases for parallel...

> Streams seem to be able to break things in places where it is difficult to understand what is going on. I think you can still handle those by translating...

Thanks for the feedback! There's another issue around the typings that I haven't been able to get to yet. I didn't write them and I don't know _that_ much about...

I considered making this behavior opt-in, or possibly opt-out. I don't like the idea of always having it enabled. One of the goals here was to have something scalable; allocating...

Oh, and by the way, a small code review: - You don't need the `Promise.resolve()` wrapper. You can just `return super.start().then(() => this.resolves)`. - It's cleaner if you remove the...