├── .editorconfig ├── .github ├── COMMIT_CONVENTION.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── lock.yml ├── stale.yml └── workflows │ └── test.yml ├── .gitignore ├── .husky ├── .gitignore └── commit-msg ├── .npmrc ├── .prettierignore ├── LICENSE.md ├── README.md ├── adonis-typings └── profiler.ts ├── bin ├── japaTypes.ts └── test.ts ├── exceptions.json ├── index.ts ├── package.json ├── src ├── Action │ └── index.ts ├── DummyProfiler │ └── index.ts ├── Exceptions │ └── InvalidProcessorException.ts ├── Profiler │ ├── AbstractProfiler.ts │ └── index.ts └── Row │ └── index.ts ├── test ├── profiler-action.spec.ts └── profiler.spec.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/COMMIT_CONVENTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/.github/COMMIT_CONVENTION.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/.github/lock.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/.prettierignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/README.md -------------------------------------------------------------------------------- /adonis-typings/profiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/adonis-typings/profiler.ts -------------------------------------------------------------------------------- /bin/japaTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/bin/japaTypes.ts -------------------------------------------------------------------------------- /bin/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/bin/test.ts -------------------------------------------------------------------------------- /exceptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/exceptions.json -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/package.json -------------------------------------------------------------------------------- /src/Action/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/src/Action/index.ts -------------------------------------------------------------------------------- /src/DummyProfiler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/src/DummyProfiler/index.ts -------------------------------------------------------------------------------- /src/Exceptions/InvalidProcessorException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/src/Exceptions/InvalidProcessorException.ts -------------------------------------------------------------------------------- /src/Profiler/AbstractProfiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/src/Profiler/AbstractProfiler.ts -------------------------------------------------------------------------------- /src/Profiler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/src/Profiler/index.ts -------------------------------------------------------------------------------- /src/Row/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/src/Row/index.ts -------------------------------------------------------------------------------- /test/profiler-action.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/test/profiler-action.spec.ts -------------------------------------------------------------------------------- /test/profiler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/test/profiler.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/profiler/HEAD/tsconfig.json --------------------------------------------------------------------------------