├── .circleci └── config.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FAQ.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── BUG.md │ ├── DOCS.md │ ├── FEATURE.md │ ├── MODIFICATION.md │ └── SUPPORT.md ├── PULL_REQUEST_TEMPLATE.md ├── labels.json ├── screen.png └── workflows │ └── node-windows.yml ├── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── codecov.yml ├── commitlint.config.js ├── package.json ├── pnpm-lock.yaml ├── src └── index.ts ├── test ├── helpers │ ├── resolvers.ts │ ├── setup.ts │ └── typedefs.ts ├── snapshots │ ├── test.ts.md │ └── test.ts.snap ├── test.ts └── tsconfig.json ├── tsconfig.base.json ├── tsconfig.eslint.json └── tsconfig.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | package-lock.json -diff 2 | * text=auto 3 | bin/* eol=lf -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.github/FAQ.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.github/ISSUE_TEMPLATE/BUG.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.github/ISSUE_TEMPLATE/DOCS.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.github/ISSUE_TEMPLATE/FEATURE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/MODIFICATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.github/ISSUE_TEMPLATE/MODIFICATION.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.github/ISSUE_TEMPLATE/SUPPORT.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.github/labels.json -------------------------------------------------------------------------------- /.github/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.github/screen.png -------------------------------------------------------------------------------- /.github/workflows/node-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.github/workflows/node-windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/codecov.yml -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/helpers/resolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/test/helpers/resolvers.ts -------------------------------------------------------------------------------- /test/helpers/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/test/helpers/setup.ts -------------------------------------------------------------------------------- /test/helpers/typedefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/test/helpers/typedefs.ts -------------------------------------------------------------------------------- /test/snapshots/test.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/test/snapshots/test.ts.md -------------------------------------------------------------------------------- /test/snapshots/test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/test/snapshots/test.ts.snap -------------------------------------------------------------------------------- /test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/test/test.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/apollo-log/HEAD/tsconfig.json --------------------------------------------------------------------------------