├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── automerge.yml │ ├── failureNotifications.yml │ ├── manualRelease.yml │ ├── notify-slack-on-pr-open.yml │ ├── onPushToMain.yml │ ├── onRelease.yml │ └── test.yml ├── .gitignore ├── .mocharc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example.js ├── git2gus └── config.json ├── package.json ├── src ├── alphabet.ts ├── args.ts ├── deps.ts ├── errors.ts ├── flags.ts ├── help.ts ├── index.ts ├── list.ts ├── metadata.ts ├── parse.ts ├── screen.ts ├── util.ts └── validate.ts ├── test ├── help.test.ts ├── helpers │ └── init.js ├── parse.test.ts ├── tsconfig.json └── validate.test.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /lib 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @heroku/cli 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/failureNotifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/.github/workflows/failureNotifications.yml -------------------------------------------------------------------------------- /.github/workflows/manualRelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/.github/workflows/manualRelease.yml -------------------------------------------------------------------------------- /.github/workflows/notify-slack-on-pr-open.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/.github/workflows/notify-slack-on-pr-open.yml -------------------------------------------------------------------------------- /.github/workflows/onPushToMain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/.github/workflows/onPushToMain.yml -------------------------------------------------------------------------------- /.github/workflows/onRelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/.github/workflows/onRelease.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/.mocharc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/README.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/example.js -------------------------------------------------------------------------------- /git2gus/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/git2gus/config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/package.json -------------------------------------------------------------------------------- /src/alphabet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/src/alphabet.ts -------------------------------------------------------------------------------- /src/args.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/src/args.ts -------------------------------------------------------------------------------- /src/deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/src/deps.ts -------------------------------------------------------------------------------- /src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/src/errors.ts -------------------------------------------------------------------------------- /src/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/src/flags.ts -------------------------------------------------------------------------------- /src/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/src/help.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/src/list.ts -------------------------------------------------------------------------------- /src/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/src/metadata.ts -------------------------------------------------------------------------------- /src/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/src/parse.ts -------------------------------------------------------------------------------- /src/screen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/src/screen.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/src/util.ts -------------------------------------------------------------------------------- /src/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/src/validate.ts -------------------------------------------------------------------------------- /test/help.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/test/help.test.ts -------------------------------------------------------------------------------- /test/helpers/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/test/helpers/init.js -------------------------------------------------------------------------------- /test/parse.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/test/parse.test.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/validate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/test/validate.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/parser/HEAD/yarn.lock --------------------------------------------------------------------------------