Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # 0.8.2
  2. - fix bug #18 - detect missing value when flag is last item
  3. - update dependencies
  4. # 0.8.1
  5. - update `fast-levenshtein` dependency
  6. # 0.8.0
  7. - update `levn` dependency - supplying a float value to an option with type `Int` now throws an error, instead of silently converting to an `Int`
  8. # 0.7.1
  9. - fix bug with use of `defaults` and `concatRepeatedArrays` or `mergeRepeatedObjects`
  10. # 0.7.0
  11. - added `concatrepeatedarrays` option: `oneValuePerFlag`, only allows one array value per flag
  12. - added `typeAliases` option
  13. - added `parseArgv` which takes an array and parses with the first two items sliced off
  14. - changed enum help style
  15. - bug fixes (#12)
  16. - use of `concatRepeatedArrays` and `mergeRepeatedObjects` at the top level is deprecated, use it as either a per-option option, or set them in the `defaults` object to set them for all objects
  17. # 0.6.0
  18. - added `defaults` lib-option flag, allowing one to set default properties for all options
  19. - added `concatRepeatedArrays` and `mergeRepeatedObjects` as option level properties, allowing you to turn this feature on for specific options only
  20. # 0.5.0
  21. - `Boolean` flags with `default: 'true'`, and no short aliases, will by default show the `--no` version in help
  22. # 0.4.0
  23. - add `mergeRepeatedObjects` setting
  24. # 0.3.0
  25. - add `concatRepeatedArrays` setting
  26. - add `overrideRequired` option setting
  27. - use just Levenshtein string compare algo rather than Levenshtein Damerau to due dependency license issue
  28. # 0.2.2
  29. - bug fixes
  30. # 0.2.1
  31. - improved interpolation
  32. - added changelog
  33. # 0.2.0
  34. - add dependency checks to options - added `dependsOn` as an option property
  35. - add interpolation for `prepend` and `append` text with new `generateHelp` option, `interpolate`
  36. # 0.1.1
  37. - update dependencies
  38. # 0.1.0
  39. - initial release