Sigurd Schoeler

Results 26 comments of Sigurd Schoeler

The hack doesn't work here, the errors object seems to not persist the changes between `didEncounterErrors` and `formatError`.

I came here from google after running `vue create` with custom setup and getting a cryptic error message relating to this package. For future self, this can be fixed by...

You have to change backslashes to forwardslashes in the `apollo client:codegen` command. This can be done using [normalize-path](https://www.npmjs.com/package/normalize-path) package if you are running this command through js. See other issue...

The fix in my case was to just remove the call to `jest.setTimeout` and let the test run. In the normal jest runner the test fails after 5 seconds, and...

This could be fixed by allowing a mapping from a keyboard shortcut to itself on a target app if there is a global shortcut. Something like: ctrl+p -> alt+space (All...

TLDR: ```ts import Enquirer from "enquirer"; const { prompt } = Enquirer; ``` Hi, there are multiple bugs with enquirer, and only one of these is specific to bun, and...

Bun works perfectly with enquirer, i have used it in my very small project, and haven't seen any bugs related to bun. All of the errors i have seen are...

@raulfdm Could you try to import enquirer like this? Then it should work correctly with bun. > ```ts > import Enquirer from "enquirer"; > const { prompt } = Enquirer;...