Skip to content

Releases: SBoudrias/Inquirer.js

[email protected]

27 Jun 15:44
Compare
Choose a tag to compare
  • Fix risk of prototype injection.

[email protected]

26 Jun 21:39
Compare
Choose a tag to compare
  • Replace chalk with picolors.
  • Drop many dependencies in favour of native functions when possible.

No impact expected, but it's a large changes in dependencies. Let us know if you run into any issues upgrading!

@inquirer/[email protected]

26 Jun 21:37
Compare
Choose a tag to compare
  • Replaced chalk with picolors in the core and all prompts.
  • TS 5.5 (no impact expected on package users)

@inquirer/[email protected]

19 Jun 21:20
Compare
Choose a tag to compare
  • Fix whitespace inconsistencies #1411

@inquirer/[email protected]

19 Jun 21:22
Compare
Choose a tag to compare
  • Performance improvements to usePrefix() when switched to loading mode. There's now a little delay of 300ms before displaying the loader to avoid flickering when fast validation occurs.

[email protected]

17 May 20:26
Compare
Choose a tag to compare
  • editor prompt: Fixed compatibility issue between default and waitUserInput options. #1405

@inquirer/[email protected]

13 May 15:18
Compare
Choose a tag to compare
  • makeTheme now performs deep merges of the theme objects.

@inquirer/[email protected]

26 Apr 15:34
Compare
Choose a tag to compare
  • [Typescript] useState doesn't require a default value anymore; in which case it'll default to undefined
  • [Typescript] useRef doesn't require a default value anymore; in which case it'll default to undefined

Examples:

const [value, setValue] = useState<number>();
// value: number | undefined;

const [value, setValue] = useState<number>(1);
// value: number;

@inquirer/[email protected]

16 Apr 15:07
Compare
Choose a tag to compare
  • Fix: breaking change wrongly removed the Separator export.

[email protected]

12 Apr 18:50
Compare
Choose a tag to compare
  • On windows, we will now use unicode characters whenever possible