Breaking
- Strictly validate flag config (#168) 1609709
This is a breaking change if you incorrectly used kebab-case format for flags (was never officially supported) in the meow
config:
meow(``, {
flags: {
- 'foo-bar': {
+ fooBar: {
type: 'boolean'
}
}
});
v8.1.0...v9.0.0