Hyper-Z11
Hyper-Z11
@aladdin-add, why you draft it?
> #384 should fix this for autocomplete > > it may also fix it for multiselect and select, i will check when i pick it back up 👍 **NOT** just...
Like this? Code: ```js // spinner.js import { spinner } from '@clack/prompts'; const spin = spinner(); spin.start("Checking") setTimeout(() => { spin.stop(); }, 2000); ``` Run: ```console node spinner.js ``` When...
> Exactly what I had in mind. I have create #402 for this. But, to make spinner is clear, you must take third argument of `spinner.stop()` to `true`
cc @Qix-
We just use `.makeRe` method in `micromatch` which is have same behavior with `.makeRe` in `picomatch`.
> We just use `.makeRe` method in `micromatch` which is have same behavior with `.makeRe` in `picomatch`. @devongovett, you can see this. _from `micromatch` source file_ ```js // ... const...
cc @alexeyraspopov