Skip to content

v9.0.0

Compare
Choose a tag to compare
@sindresorhus sindresorhus released this 07 Jan 11:25

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