Releases: SBoudrias/Inquirer.js
Releases · SBoudrias/Inquirer.js
inquirer@9.3.0
- Replace
chalk
with(in 9.3.2 went topicolors
yoctocolors
to stay with Sindre's packages and reduce amount of provenance.) - 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/prompts@5.0.7
- Replace
chalk
with(in 5.1.0 went topicolors
yoctocolors
to stay with Sindre's packages and reduce amount of provenance.) - TS 5.5 (no impact expected on package users)
@inquirer/password@2.1.10
- Fix whitespace inconsistencies #1411
@inquirer/core@8.2.3
- 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.
inquirer@9.2.22
editor
prompt: Fixed compatibility issue betweendefault
andwaitUserInput
options. #1405
@inquirer/core@8.2.0
makeTheme
now performs deep merges of the theme objects.
@inquirer/core@8.1.0
- [Typescript]
useState
doesn't require a default value anymore; in which case it'll default toundefined
- [Typescript]
useRef
doesn't require a default value anymore; in which case it'll default toundefined
Examples:
const [value, setValue] = useState<number>();
// value: number | undefined;
const [value, setValue] = useState<number>(1);
// value: number;
@inquirer/prompts@5.0.1
- Fix: breaking change wrongly removed the
Separator
export.
inquirer@9.2.18
- On windows, we will now use unicode characters whenever possible
@inquirer/select@2.3.0
- Help tip behaviors are now customizable through theme options.