David Peter

Results 52 comments of David Peter

Would love to fix this, what versioning strategy should we adapt? (e.g. semantic-release style vs. bigger releases?) Is deno the only target?

Are you absolutely opposed to supporting Node?

Sounds like a plan! I wanted to use something similar to [semantic-release](https://github.com/semantic-release/semantic-release) but it's just all to much with the plugins and whatnot. Node is not a definite goal, but...

I have written up a small library called `semantic-release-tooling` that would enable pretty much the same feature set as semantic-release but with a smaller footprint. Would you be interested in...

There should be a deno (or a makefile target) [task](https://deno.land/[email protected]/tools/task_runner) e.g.: ``` { "tasks": { "version": "srt" } } ``` SRT has two versioning modes today: - Once [default] (Takes...

The two things that come off weird to me after having it implemented and tested is: - ~we're **no longer accepting `Task`** as the ADT suggests.~ - passing arguments on...

I feel bad about having submitted a non working example. We should not be able to provide examples to consumers of the library that don't actually work. Haven't validated the...

I'm in actual need of this feature. Let's discuss next steps, as currently I'm using [parzec](https://github.com/johtela/parzec) But I had to [denoify](https://github.com/garronej/denoify) it and it's not really what I want.

There is a reason for widening that is also appearing in the [fetch_archive](https://github.com/nullpub/fun/blob/main/examples/fetch_archives.ts#L81), which in production code is quite often coming up, because an operation will often yield a discriminated...

Auto-widening the Left side in chaining is desirable and saves us from having to implement a specific `chainW` or `bindW` where fp-ts went. I would reason here that it's logical...