Jake Teton-Landis

Results 129 comments of Jake Teton-Landis

I would prefer `prompt()` to return a rejected promise on Ctrl-C. This is achievable if you're willing to reach in and monkey with a `Prompt` object's readline directly: ```typescript /**...

@muuvmuuv I am referring to the [OAuth flow for public integrations](https://developers.notion.com/docs/authorization#authorizing-public-integrations) which involves sending a `POST` request to `https://api.notion.com/v1/oauth/token`

I took a look at `ky`, but I didn't see a straightforward way to use it as the basis of isomorphic support. @taylorjdawson suggests providing a HTTP client implementation as...

@orta also off the cuff because I'm about to head to a meeting, setting `NODE_OPTIONS="-r ts-node/register/transpile-only"` in the environment should be enough to ensure that all child node processes require...

@dai-shi I might have some spare time to pick away at some of these issues slowly - in some ways, I'm trying to share ideas inspired by the closed-source state...

I added a third idea which builds on top of the first two. Instrumenting my framework with all 3 ideas as suggested above took me 3-4 days of full-time work,...

@dai-shi I started experimenting with this a bit. There are two approaches to implementing this: 1. add a lot more event callbacks to store (onAtomRead, onAtomWrite, and some kind of...

Related: there's a similar issue with `shaker` because it `unshift`s a `"@babel/preset-env"` even when the user may already have @babel/preset-env configured.

@TMaszko thanks for the quick response. I'll try to provide a repo some time this week. In the mean time, I started working on a PR to address the issue...

@TMaszko proposed fix: https://github.com/callstack/linaria/pull/613