├── .eslintignore ├── .eslintrc.js ├── .github ├── dependabot.yml └── workflows │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .prettierrc.js ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── PUBLISH.md ├── README.md ├── bin └── merged-pr-stat.js ├── dist ├── index.js └── index.js.LICENSE.txt ├── examples ├── make-long-term-log.ts ├── make-monthly-stat.ts ├── make-rotate-stat-on-interval-days-basis.ts └── make-stat-on-interval-days-basis.ts ├── jest.config.js ├── package.json ├── src ├── entity.ts ├── github.ts ├── index.ts ├── log-command.ts ├── stat-command.test.ts ├── stat-command.ts └── testdata │ ├── log-repo-vscode.json │ └── simple-log.json ├── tsconfig.json └── webpack.config.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/LICENSE -------------------------------------------------------------------------------- /PUBLISH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/PUBLISH.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/README.md -------------------------------------------------------------------------------- /bin/merged-pr-stat.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require("../dist/index.js"); 3 | -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/dist/index.js.LICENSE.txt -------------------------------------------------------------------------------- /examples/make-long-term-log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/examples/make-long-term-log.ts -------------------------------------------------------------------------------- /examples/make-monthly-stat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/examples/make-monthly-stat.ts -------------------------------------------------------------------------------- /examples/make-rotate-stat-on-interval-days-basis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/examples/make-rotate-stat-on-interval-days-basis.ts -------------------------------------------------------------------------------- /examples/make-stat-on-interval-days-basis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/examples/make-stat-on-interval-days-basis.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/package.json -------------------------------------------------------------------------------- /src/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/src/entity.ts -------------------------------------------------------------------------------- /src/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/src/github.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/log-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/src/log-command.ts -------------------------------------------------------------------------------- /src/stat-command.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/src/stat-command.test.ts -------------------------------------------------------------------------------- /src/stat-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/src/stat-command.ts -------------------------------------------------------------------------------- /src/testdata/log-repo-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/src/testdata/log-repo-vscode.json -------------------------------------------------------------------------------- /src/testdata/simple-log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/src/testdata/simple-log.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/merged-pr-stat/HEAD/webpack.config.js --------------------------------------------------------------------------------