├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md └── issue-template-enforcer.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── reporter.js └── util.js ├── tea.yaml └── test ├── fixtures └── typescript │ ├── src │ ├── another-file.ts │ ├── example.ts │ └── ignored-file.ts │ └── test │ └── test.spec.ts ├── karma.conf.js ├── reporter.spec.js ├── tsconfig.json ├── tslint.json └── util.spec.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/issue-template-enforcer.yml: -------------------------------------------------------------------------------- 1 | _extends: probot-settings 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.json 2 | CHANGELOG.md 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/package.json -------------------------------------------------------------------------------- /src/reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/src/reporter.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/src/util.js -------------------------------------------------------------------------------- /tea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/tea.yaml -------------------------------------------------------------------------------- /test/fixtures/typescript/src/another-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/test/fixtures/typescript/src/another-file.ts -------------------------------------------------------------------------------- /test/fixtures/typescript/src/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/test/fixtures/typescript/src/example.ts -------------------------------------------------------------------------------- /test/fixtures/typescript/src/ignored-file.ts: -------------------------------------------------------------------------------- 1 | export default { foo: 'bar' }; 2 | -------------------------------------------------------------------------------- /test/fixtures/typescript/test/test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/test/fixtures/typescript/test/test.spec.ts -------------------------------------------------------------------------------- /test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/test/karma.conf.js -------------------------------------------------------------------------------- /test/reporter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/test/reporter.spec.js -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/test/tslint.json -------------------------------------------------------------------------------- /test/util.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/HEAD/test/util.spec.js --------------------------------------------------------------------------------