├── .eslintrc.json ├── .github └── workflows │ └── test-and-release.yml ├── .gitignore ├── .releaseconfig.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── daily-rotate-file.js ├── index.d.ts ├── index.js ├── package.json └── test ├── memory-stream.js ├── mocha.setup.js ├── random-string.js ├── transport-tests.js └── transport.worker.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-daily-rotate-file/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/test-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-daily-rotate-file/HEAD/.github/workflows/test-and-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-daily-rotate-file/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaseconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["license"] 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-daily-rotate-file/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-daily-rotate-file/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-daily-rotate-file/HEAD/README.md -------------------------------------------------------------------------------- /daily-rotate-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-daily-rotate-file/HEAD/daily-rotate-file.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-daily-rotate-file/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-daily-rotate-file/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-daily-rotate-file/HEAD/package.json -------------------------------------------------------------------------------- /test/memory-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-daily-rotate-file/HEAD/test/memory-stream.js -------------------------------------------------------------------------------- /test/mocha.setup.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/random-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-daily-rotate-file/HEAD/test/random-string.js -------------------------------------------------------------------------------- /test/transport-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-daily-rotate-file/HEAD/test/transport-tests.js -------------------------------------------------------------------------------- /test/transport.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-daily-rotate-file/HEAD/test/transport.worker.js --------------------------------------------------------------------------------