Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: 75lb/command-line-args
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.0.2
Choose a base ref
...
head repository: 75lb/command-line-args
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.1.0
Choose a head ref
  • 11 commits
  • 50 files changed
  • 1 contributor

Commits on Feb 7, 2018

  1. API docs update

    75lb committed Feb 7, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    sentrivana Ivana Kellyer
    Copy the full SHA
    9c07457 View commit details

Commits on Jun 1, 2018

  1. Verified

    This commit was signed with the committer’s verified signature.
    sentrivana Ivana Kellyer
    Copy the full SHA
    749a904 View commit details

Commits on Jun 19, 2018

  1. extra alias test

    75lb committed Jun 19, 2018
    Copy the full SHA
    827ba1e View commit details

Commits on Jan 21, 2019

  1. update deps and dates

    75lb committed Jan 21, 2019
    Copy the full SHA
    acd8988 View commit details

Commits on Mar 21, 2019

  1. rewrite as ESM modules

    75lb committed Mar 21, 2019
    Copy the full SHA
    14d8624 View commit details

Commits on Mar 22, 2019

  1. rewrite as ESM modules

    75lb committed Mar 22, 2019
    Copy the full SHA
    9f21f9d View commit details
  2. added ESM dist

    75lb committed Mar 22, 2019
    Copy the full SHA
    6bd77b8 View commit details
  3. upgrade find-replace

    75lb committed Mar 22, 2019
    Copy the full SHA
    ce13bcc View commit details

Commits on Mar 23, 2019

  1. convert test suite to ESM

    75lb committed Mar 23, 2019
    Copy the full SHA
    ddce64b View commit details
  2. use lodash.camelcase

    75lb committed Mar 23, 2019
    Copy the full SHA
    145b5dc View commit details

Commits on Mar 24, 2019

  1. 5.1.0

    75lb committed Mar 24, 2019
    Copy the full SHA
    6ef337e View commit details
Showing with 7,454 additions and 770 deletions.
  1. +3 −3 .travis.yml
  2. +1 −1 LICENSE
  3. +1 −1 README.md
  4. +1,367 −0 dist/index.js
  5. +1,363 −0 dist/index.mjs
  6. +3,565 −0 dist/tests.js
  7. +9 −9 doc/option-definition.md
  8. +8 −6 index.js → index.mjs
  9. +5 −0 jsdoc.conf
  10. +6 −7 lib/{argv-parser.js → argv-parser.mjs}
  11. +168 −0 lib/argv-tools.mjs
  12. +11 −12 lib/{option-definition.js → option-definition.mjs}
  13. +5 −6 lib/{option-definitions.js → option-definitions.mjs}
  14. +2 −3 lib/{option-flag.js → option-flag.mjs}
  15. +15 −6 lib/{option.js → option.mjs}
  16. +5 −6 lib/{output-grouped.js → output-grouped.mjs}
  17. +4 −5 lib/{output.js → output.mjs}
  18. +724 −560 package-lock.json
  19. +20 −10 package.json
  20. +50 −0 test/alias-cluster.mjs
  21. +3 −4 test/{alias.js → alias.mjs}
  22. +3 −4 test/{ambiguous-input.js → ambiguous-input.mjs}
  23. +3 −4 test/{bad-input.js → bad-input.mjs}
  24. +3 −4 test/{camel-case.js → camel-case.mjs}
  25. +3 −4 test/{default-option.js → default-option.mjs}
  26. +3 −4 test/{default-value.js → default-value.mjs}
  27. +3 −4 test/{detect-process-argv.js → detect-process-argv.mjs}
  28. +3 −4 test/{exceptions-already-set.js → exceptions-already-set.mjs}
  29. +3 −4 test/{exceptions-invalid-definition.js → exceptions-invalid-definition.mjs}
  30. +3 −4 test/{exceptions-unknowns.js → exceptions-unknowns.mjs}
  31. +3 −4 test/{grouping.js → grouping.mjs}
  32. +4 −4 test/internals/{argv-parser.js → argv-parser.mjs}
  33. +3 −4 test/internals/{option-default.js → option-default.mjs}
  34. +3 −4 test/internals/{option-definitions.js → option-definitions.mjs}
  35. +3 −4 test/internals/{option-flag.js → option-flag.mjs}
  36. +3 −4 test/internals/{option.js → option.mjs}
  37. +4 −5 test/internals/{output.js → output.mjs}
  38. +3 −4 test/{multiple-lazy.js → multiple-lazy.mjs}
  39. +3 −4 test/{multiple.js → multiple.mjs}
  40. +3 −4 test/{name-alias-mix.js → name-alias-mix.mjs}
  41. +3 −4 test/{name-unicode.js → name-unicode.mjs}
  42. +5 −21 test/{notations.js → option=value-notation.mjs}
  43. +3 −4 test/{partial.js → partial.mjs}
  44. +3 −4 test/{stop-at-first-unknown.js → stop-at-first-unknown.mjs}
  45. +30 −0 test/tests.mjs
  46. +3 −4 test/{type-boolean.js → type-boolean.mjs}
  47. +3 −4 test/{type-none.js → type-none.mjs}
  48. +3 −4 test/{type-number.js → type-number.mjs}
  49. +4 −5 test/{type-other.js → type-other.mjs}
  50. +3 −4 test/{type-string.js → type-string.mjs}
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: node_js
node_js:
- 9
- 11
- 10
- 8
- 7
- 6
- 5
- 4
script: npm run travis-test
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014-18 Lloyd Brookes <75pound@gmail.com>
Copyright (c) 2014-19 Lloyd Brookes <75pound@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -100,4 +100,4 @@ $ npm install command-line-args --save

* * *

&copy; 2014-18 Lloyd Brookes \<75pound@gmail.com\>. Documented by [jsdoc-to-markdown](https://github.com/75lb/jsdoc-to-markdown).
&copy; 2014-19 Lloyd Brookes \<75pound@gmail.com\>. Documented by [jsdoc-to-markdown](https://github.com/75lb/jsdoc-to-markdown).
Loading