├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yaml ├── ISSUE_TEMPLATE │ ├── 01_bug_report.yaml │ ├── 02_feature_request.yaml │ ├── 03_question.yaml │ └── 04_codebase_improvement.yml ├── SECURITY.md ├── pull_request_template.md └── workflows │ ├── ci.yaml │ ├── contributors.yaml │ ├── slate.yaml │ └── toc.yaml ├── .gitignore ├── .markdownlint.json ├── LICENSE ├── README.md ├── contributors.svg ├── jest.config.json ├── package.json ├── renovate.json ├── sample ├── async-config │ ├── .env │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── nest-cli.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app.controller.spec.ts │ │ ├── app.controller.ts │ │ ├── app.module.ts │ │ ├── app.service.ts │ │ └── main.ts │ ├── test │ │ ├── app.e2e-spec.ts │ │ └── jest-e2e.json │ ├── tsconfig.build.json │ └── tsconfig.json ├── quick-start-v8 │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── nest-cli.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app.controller.spec.ts │ │ ├── app.controller.ts │ │ ├── app.module.ts │ │ ├── app.service.ts │ │ └── main.ts │ ├── test │ │ ├── app.e2e-spec.ts │ │ └── jest-e2e.json │ ├── tsconfig.build.json │ └── tsconfig.json ├── quick-start │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── nest-cli.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app.controller.spec.ts │ │ ├── app.controller.ts │ │ ├── app.module.ts │ │ ├── app.service.ts │ │ └── main.ts │ ├── test │ │ ├── app.e2e-spec.ts │ │ └── jest-e2e.json │ ├── tsconfig.build.json │ └── tsconfig.json ├── replace-nest-logger-bootstrap │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── nest-cli.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app.controller.spec.ts │ │ ├── app.controller.ts │ │ ├── app.module.ts │ │ ├── app.service.ts │ │ └── main.ts │ ├── test │ │ ├── app.e2e-spec.ts │ │ └── jest-e2e.json │ ├── tsconfig.build.json │ └── tsconfig.json └── replace-nest-logger │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── nest-cli.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app.controller.spec.ts │ ├── app.controller.ts │ ├── app.module.ts │ ├── app.service.ts │ └── main.ts │ ├── test │ ├── app.e2e-spec.ts │ └── jest-e2e.json │ ├── tsconfig.build.json │ └── tsconfig.json ├── src ├── index.ts ├── winston.classes.ts ├── winston.constants.ts ├── winston.interfaces.ts ├── winston.module.spec.ts ├── winston.module.ts ├── winston.providers.ts ├── winston.utilities.spec.ts └── winston.utilities.ts └── tsconfig.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | sample/ 3 | src/**/*.spec.ts 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | github: gremo 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01_bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/.github/ISSUE_TEMPLATE/01_bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/.github/ISSUE_TEMPLATE/02_feature_request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/.github/ISSUE_TEMPLATE/03_question.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04_codebase_improvement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/.github/ISSUE_TEMPLATE/04_codebase_improvement.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/contributors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/.github/workflows/contributors.yaml -------------------------------------------------------------------------------- /.github/workflows/slate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/.github/workflows/slate.yaml -------------------------------------------------------------------------------- /.github/workflows/toc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/.github/workflows/toc.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /node_modules/ 3 | -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/README.md -------------------------------------------------------------------------------- /contributors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/contributors.svg -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/jest.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/renovate.json -------------------------------------------------------------------------------- /sample/async-config/.env: -------------------------------------------------------------------------------- 1 | LOG_PATH=logs/app.log 2 | -------------------------------------------------------------------------------- /sample/async-config/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/async-config/.eslintrc.js -------------------------------------------------------------------------------- /sample/async-config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/async-config/.gitignore -------------------------------------------------------------------------------- /sample/async-config/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/async-config/.prettierrc -------------------------------------------------------------------------------- /sample/async-config/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/async-config/nest-cli.json -------------------------------------------------------------------------------- /sample/async-config/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/async-config/package-lock.json -------------------------------------------------------------------------------- /sample/async-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/async-config/package.json -------------------------------------------------------------------------------- /sample/async-config/src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/async-config/src/app.controller.spec.ts -------------------------------------------------------------------------------- /sample/async-config/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/async-config/src/app.controller.ts -------------------------------------------------------------------------------- /sample/async-config/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/async-config/src/app.module.ts -------------------------------------------------------------------------------- /sample/async-config/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/async-config/src/app.service.ts -------------------------------------------------------------------------------- /sample/async-config/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/async-config/src/main.ts -------------------------------------------------------------------------------- /sample/async-config/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/async-config/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /sample/async-config/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/async-config/test/jest-e2e.json -------------------------------------------------------------------------------- /sample/async-config/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/async-config/tsconfig.build.json -------------------------------------------------------------------------------- /sample/async-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/async-config/tsconfig.json -------------------------------------------------------------------------------- /sample/quick-start-v8/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start-v8/.eslintrc.js -------------------------------------------------------------------------------- /sample/quick-start-v8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start-v8/.gitignore -------------------------------------------------------------------------------- /sample/quick-start-v8/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start-v8/.prettierrc -------------------------------------------------------------------------------- /sample/quick-start-v8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start-v8/README.md -------------------------------------------------------------------------------- /sample/quick-start-v8/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start-v8/nest-cli.json -------------------------------------------------------------------------------- /sample/quick-start-v8/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start-v8/package-lock.json -------------------------------------------------------------------------------- /sample/quick-start-v8/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start-v8/package.json -------------------------------------------------------------------------------- /sample/quick-start-v8/src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start-v8/src/app.controller.spec.ts -------------------------------------------------------------------------------- /sample/quick-start-v8/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start-v8/src/app.controller.ts -------------------------------------------------------------------------------- /sample/quick-start-v8/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start-v8/src/app.module.ts -------------------------------------------------------------------------------- /sample/quick-start-v8/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start-v8/src/app.service.ts -------------------------------------------------------------------------------- /sample/quick-start-v8/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start-v8/src/main.ts -------------------------------------------------------------------------------- /sample/quick-start-v8/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start-v8/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /sample/quick-start-v8/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start-v8/test/jest-e2e.json -------------------------------------------------------------------------------- /sample/quick-start-v8/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start-v8/tsconfig.build.json -------------------------------------------------------------------------------- /sample/quick-start-v8/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start-v8/tsconfig.json -------------------------------------------------------------------------------- /sample/quick-start/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start/.eslintrc.js -------------------------------------------------------------------------------- /sample/quick-start/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start/.gitignore -------------------------------------------------------------------------------- /sample/quick-start/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start/.prettierrc -------------------------------------------------------------------------------- /sample/quick-start/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start/nest-cli.json -------------------------------------------------------------------------------- /sample/quick-start/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start/package-lock.json -------------------------------------------------------------------------------- /sample/quick-start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start/package.json -------------------------------------------------------------------------------- /sample/quick-start/src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start/src/app.controller.spec.ts -------------------------------------------------------------------------------- /sample/quick-start/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start/src/app.controller.ts -------------------------------------------------------------------------------- /sample/quick-start/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start/src/app.module.ts -------------------------------------------------------------------------------- /sample/quick-start/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start/src/app.service.ts -------------------------------------------------------------------------------- /sample/quick-start/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start/src/main.ts -------------------------------------------------------------------------------- /sample/quick-start/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /sample/quick-start/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start/test/jest-e2e.json -------------------------------------------------------------------------------- /sample/quick-start/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start/tsconfig.build.json -------------------------------------------------------------------------------- /sample/quick-start/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/quick-start/tsconfig.json -------------------------------------------------------------------------------- /sample/replace-nest-logger-bootstrap/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger-bootstrap/.eslintrc.js -------------------------------------------------------------------------------- /sample/replace-nest-logger-bootstrap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger-bootstrap/.gitignore -------------------------------------------------------------------------------- /sample/replace-nest-logger-bootstrap/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger-bootstrap/.prettierrc -------------------------------------------------------------------------------- /sample/replace-nest-logger-bootstrap/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger-bootstrap/nest-cli.json -------------------------------------------------------------------------------- /sample/replace-nest-logger-bootstrap/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger-bootstrap/package-lock.json -------------------------------------------------------------------------------- /sample/replace-nest-logger-bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger-bootstrap/package.json -------------------------------------------------------------------------------- /sample/replace-nest-logger-bootstrap/src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger-bootstrap/src/app.controller.spec.ts -------------------------------------------------------------------------------- /sample/replace-nest-logger-bootstrap/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger-bootstrap/src/app.controller.ts -------------------------------------------------------------------------------- /sample/replace-nest-logger-bootstrap/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger-bootstrap/src/app.module.ts -------------------------------------------------------------------------------- /sample/replace-nest-logger-bootstrap/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger-bootstrap/src/app.service.ts -------------------------------------------------------------------------------- /sample/replace-nest-logger-bootstrap/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger-bootstrap/src/main.ts -------------------------------------------------------------------------------- /sample/replace-nest-logger-bootstrap/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger-bootstrap/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /sample/replace-nest-logger-bootstrap/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger-bootstrap/test/jest-e2e.json -------------------------------------------------------------------------------- /sample/replace-nest-logger-bootstrap/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger-bootstrap/tsconfig.build.json -------------------------------------------------------------------------------- /sample/replace-nest-logger-bootstrap/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger-bootstrap/tsconfig.json -------------------------------------------------------------------------------- /sample/replace-nest-logger/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger/.eslintrc.js -------------------------------------------------------------------------------- /sample/replace-nest-logger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger/.gitignore -------------------------------------------------------------------------------- /sample/replace-nest-logger/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger/.prettierrc -------------------------------------------------------------------------------- /sample/replace-nest-logger/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger/nest-cli.json -------------------------------------------------------------------------------- /sample/replace-nest-logger/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger/package-lock.json -------------------------------------------------------------------------------- /sample/replace-nest-logger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger/package.json -------------------------------------------------------------------------------- /sample/replace-nest-logger/src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger/src/app.controller.spec.ts -------------------------------------------------------------------------------- /sample/replace-nest-logger/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger/src/app.controller.ts -------------------------------------------------------------------------------- /sample/replace-nest-logger/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger/src/app.module.ts -------------------------------------------------------------------------------- /sample/replace-nest-logger/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger/src/app.service.ts -------------------------------------------------------------------------------- /sample/replace-nest-logger/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger/src/main.ts -------------------------------------------------------------------------------- /sample/replace-nest-logger/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /sample/replace-nest-logger/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger/test/jest-e2e.json -------------------------------------------------------------------------------- /sample/replace-nest-logger/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger/tsconfig.build.json -------------------------------------------------------------------------------- /sample/replace-nest-logger/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/sample/replace-nest-logger/tsconfig.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/winston.classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/src/winston.classes.ts -------------------------------------------------------------------------------- /src/winston.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/src/winston.constants.ts -------------------------------------------------------------------------------- /src/winston.interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/src/winston.interfaces.ts -------------------------------------------------------------------------------- /src/winston.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/src/winston.module.spec.ts -------------------------------------------------------------------------------- /src/winston.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/src/winston.module.ts -------------------------------------------------------------------------------- /src/winston.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/src/winston.providers.ts -------------------------------------------------------------------------------- /src/winston.utilities.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/src/winston.utilities.spec.ts -------------------------------------------------------------------------------- /src/winston.utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/src/winston.utilities.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gremo/nest-winston/HEAD/tsconfig.json --------------------------------------------------------------------------------