urugator

Results 14 issues of urugator

When leaving input with history empty and hitting `enter` , the *blue hint* (first history entry) is submitted as a value instead of the empty string. Providing `initial: ""` or...

```javascript await Prompter.prompt({ type: "snippet", name: "date", message: "Date", values: { day: 1, // "1" works fine }, template: `\${day}` }) ``` Prints ``

Whenever edited input matches one of the history entries, the entry "coalesces" with the input and dissapears from the history: ```javascript const history = { store: { get() { return...

`override` keyword isn't preserved for `keepDecorators: false` . Not sure if it's due to [#1151](https://github.com/benjamn/recast/pull/1151) or if there an issue on our side. That's why test are failing, but it's...

While it makes sense, it's not immediately obvious why the tracy bar isn't showing up. I think it would be beneficial to mention this in docs. What are the possible...

### Current Behavior `yarn nx migrate` randomly fails, most likely due to some race conditions. It's always some FS error like ENOENT on a random file in yarn cache. I...

type: bug
scope: core

Fixes #3648 Changed `computedRequiresReaction` to respect `globalState.allowStateReads`.

Hi, `xxh32` (not sure if specifically this function or the lib in general) seems to be leaking some resources. When used as part of `jest` tests, it randomly causes: `"Jest...

`execCommand` provides streaming ability via `onStdout`/`onStderr` option. However, even if the option is provided, it still collects the output to own array: https://github.com/steelbrain/node-ssh/blob/6c57d8f127ab1173cee68de598ff6940575af149/src/index.ts#L394 When the output is very large it...

Hi, this is basically a duplicate of https://github.com/RediSearch/RediSearch/issues/4432, but I feel like at least the documentation should be improved. The current behavior seems quite confusing and not very well documented....

bug
stale