diff --git a/.npmignore b/.npmignore index 1368d23..09fa8f9 100644 --- a/.npmignore +++ b/.npmignore @@ -1,6 +1,7 @@ .envrc .eslintignore .eslintrc +.eslintcache .github/* .husky/* .nvmrc @@ -8,4 +9,7 @@ flake* jest* src/* test/* -tsconfig.json \ No newline at end of file +tsconfig.json +examples/ +coverage/ +.vscode/ \ No newline at end of file diff --git a/README.md b/README.md index 87292e0..fc188ce 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,7 @@ import { Args, ParserOpts, a } from 'args.ts' export const parserOpts: ParserOpts = { programName: 'program-name', programDescription: 'program description', - unknownArgBehaviour: 'throw', - excessArgBehaviour: 'throw' + programVersion: 'v1.0', } const parser = new Args(parserOpts)