├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── auto-merge.yml │ ├── build.yaml │ └── publish.yaml ├── .gitignore ├── .mocharc.yml ├── .prettierignore ├── .prettierrc.yaml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── bin ├── run └── run.cmd ├── package.json ├── src ├── api.ts ├── auth-file.ts ├── base-command.ts ├── commands │ ├── code.ts │ ├── commits.ts │ ├── config.ts │ ├── issues.ts │ ├── notifications.ts │ └── repositories.ts ├── hooks │ └── init │ │ ├── auth-questions.ts │ │ └── auth.ts ├── index.ts ├── notifications-api.ts ├── opener.ts └── pagination.ts ├── test ├── __fixtures__ │ ├── commands_code_runs_runs_oclif_org_parser_full_text.json │ ├── commands_code_runs_runs_oclif_repo_parser.json │ ├── commands_code_runs_runs_oclif_repo_parser_full_text.json │ ├── commands_commits_runs_runs_oclif_repo_parser.json │ ├── commands_issues_runs_ahejlsberg.json │ ├── commands_notifications_default.json │ ├── commands_notifications_issue_comment.json │ ├── commands_notifications_release.json │ ├── commands_repositories_errors_unknown_user.json │ ├── commands_repositories_runs_oclif.json │ ├── commands_repositories_runs_repo_user_feinoujc.json │ ├── commands_repositories_runs_repo_user_oclif_page1.json │ └── commands_repositories_runs_repo_user_oclif_page2.json ├── commands │ ├── auth.test.ts │ ├── commands.test.ts │ └── config.test.ts ├── helpers │ ├── init.js │ └── utils.ts └── tsconfig.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /lib 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/.mocharc.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/README.md -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/bin/run -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/package.json -------------------------------------------------------------------------------- /src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/src/api.ts -------------------------------------------------------------------------------- /src/auth-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/src/auth-file.ts -------------------------------------------------------------------------------- /src/base-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/src/base-command.ts -------------------------------------------------------------------------------- /src/commands/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/src/commands/code.ts -------------------------------------------------------------------------------- /src/commands/commits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/src/commands/commits.ts -------------------------------------------------------------------------------- /src/commands/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/src/commands/config.ts -------------------------------------------------------------------------------- /src/commands/issues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/src/commands/issues.ts -------------------------------------------------------------------------------- /src/commands/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/src/commands/notifications.ts -------------------------------------------------------------------------------- /src/commands/repositories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/src/commands/repositories.ts -------------------------------------------------------------------------------- /src/hooks/init/auth-questions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/src/hooks/init/auth-questions.ts -------------------------------------------------------------------------------- /src/hooks/init/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/src/hooks/init/auth.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export { run } from '@oclif/command'; 2 | -------------------------------------------------------------------------------- /src/notifications-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/src/notifications-api.ts -------------------------------------------------------------------------------- /src/opener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/src/opener.ts -------------------------------------------------------------------------------- /src/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/src/pagination.ts -------------------------------------------------------------------------------- /test/__fixtures__/commands_code_runs_runs_oclif_org_parser_full_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/__fixtures__/commands_code_runs_runs_oclif_org_parser_full_text.json -------------------------------------------------------------------------------- /test/__fixtures__/commands_code_runs_runs_oclif_repo_parser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/__fixtures__/commands_code_runs_runs_oclif_repo_parser.json -------------------------------------------------------------------------------- /test/__fixtures__/commands_code_runs_runs_oclif_repo_parser_full_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/__fixtures__/commands_code_runs_runs_oclif_repo_parser_full_text.json -------------------------------------------------------------------------------- /test/__fixtures__/commands_commits_runs_runs_oclif_repo_parser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/__fixtures__/commands_commits_runs_runs_oclif_repo_parser.json -------------------------------------------------------------------------------- /test/__fixtures__/commands_issues_runs_ahejlsberg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/__fixtures__/commands_issues_runs_ahejlsberg.json -------------------------------------------------------------------------------- /test/__fixtures__/commands_notifications_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/__fixtures__/commands_notifications_default.json -------------------------------------------------------------------------------- /test/__fixtures__/commands_notifications_issue_comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/__fixtures__/commands_notifications_issue_comment.json -------------------------------------------------------------------------------- /test/__fixtures__/commands_notifications_release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/__fixtures__/commands_notifications_release.json -------------------------------------------------------------------------------- /test/__fixtures__/commands_repositories_errors_unknown_user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/__fixtures__/commands_repositories_errors_unknown_user.json -------------------------------------------------------------------------------- /test/__fixtures__/commands_repositories_runs_oclif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/__fixtures__/commands_repositories_runs_oclif.json -------------------------------------------------------------------------------- /test/__fixtures__/commands_repositories_runs_repo_user_feinoujc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/__fixtures__/commands_repositories_runs_repo_user_feinoujc.json -------------------------------------------------------------------------------- /test/__fixtures__/commands_repositories_runs_repo_user_oclif_page1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/__fixtures__/commands_repositories_runs_repo_user_oclif_page1.json -------------------------------------------------------------------------------- /test/__fixtures__/commands_repositories_runs_repo_user_oclif_page2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/__fixtures__/commands_repositories_runs_repo_user_oclif_page2.json -------------------------------------------------------------------------------- /test/commands/auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/commands/auth.test.ts -------------------------------------------------------------------------------- /test/commands/commands.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/commands/commands.test.ts -------------------------------------------------------------------------------- /test/commands/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/commands/config.test.ts -------------------------------------------------------------------------------- /test/helpers/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/helpers/init.js -------------------------------------------------------------------------------- /test/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/helpers/utils.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feinoujc/gh-search-cli/HEAD/tslint.json --------------------------------------------------------------------------------