Blaine Bublitz
Blaine Bublitz
Nvm, I see the writeable stream is fs
However, I'm very confused because I was 99% sure that you aren't allowed to use an object stream with fs writeStream. It's a text based stream.
> The cause is seemed that glob-stream/readable uses highWaterMark as limit of read count. That means you aren't draining the streams correctly.
An alternative implementation I considered was using getters and a loop lookup from each `fss`, but then you can't accurately detect a missing property and the getters would have to...
@lee-chase Storybook Vue 3 support is in preview as outlined at the end of that thread.
My idea to solve the "build the compiler" part is that we could have built compilers uploaded by our normal CI steps and then this workflow could download and use...
Would type aliases help here? Since they wouldn't be exported, you could do something like: ``` type MaybeNumber = Option; export type NumberList = List; ``` It's definitely more verbose,...
Oh, something else that might get confusing is if we add `?` as an "unwrap-or-fail" operator. Then, using `?` in type signatures as the Option type would be weird. I'm...
I was spinning on this a lot last night and if `?` represents optional data, I'd want it to both be the type annotation AND an alias for `Some(val)`, like...
I really like the `or { "default" }` syntax from VLang but I still think the `?` makes for "character soup". Not sure how to reconcile my thoughts around that.