├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── lib ├── AuditManager.d.ts ├── AuditManager.js ├── DefaultOptions.d.ts ├── DefaultOptions.js ├── FileStreamRotator.d.ts ├── FileStreamRotator.js ├── Rotator.d.ts ├── Rotator.js ├── enums.d.ts ├── enums.js ├── helper.d.ts ├── helper.js ├── index.d.ts ├── index.js └── types.d.ts ├── package.json ├── src ├── AuditManager.ts ├── DefaultOptions.ts ├── FileStreamRotator.ts ├── Rotator.ts ├── enums.ts ├── helper.ts ├── index.ts └── types.d.ts ├── tests ├── checkOptions.js ├── checkOptions.ts ├── every-minute-test.js ├── every-second-test.js ├── large-test.js ├── rotate-on-size-without-date.js ├── test.js ├── test2.js └── test2.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/README.md -------------------------------------------------------------------------------- /lib/AuditManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/lib/AuditManager.d.ts -------------------------------------------------------------------------------- /lib/AuditManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/lib/AuditManager.js -------------------------------------------------------------------------------- /lib/DefaultOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/lib/DefaultOptions.d.ts -------------------------------------------------------------------------------- /lib/DefaultOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/lib/DefaultOptions.js -------------------------------------------------------------------------------- /lib/FileStreamRotator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/lib/FileStreamRotator.d.ts -------------------------------------------------------------------------------- /lib/FileStreamRotator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/lib/FileStreamRotator.js -------------------------------------------------------------------------------- /lib/Rotator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/lib/Rotator.d.ts -------------------------------------------------------------------------------- /lib/Rotator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/lib/Rotator.js -------------------------------------------------------------------------------- /lib/enums.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/lib/enums.d.ts -------------------------------------------------------------------------------- /lib/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/lib/enums.js -------------------------------------------------------------------------------- /lib/helper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/lib/helper.d.ts -------------------------------------------------------------------------------- /lib/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/lib/helper.js -------------------------------------------------------------------------------- /lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/lib/index.d.ts -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/lib/types.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/package.json -------------------------------------------------------------------------------- /src/AuditManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/src/AuditManager.ts -------------------------------------------------------------------------------- /src/DefaultOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/src/DefaultOptions.ts -------------------------------------------------------------------------------- /src/FileStreamRotator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/src/FileStreamRotator.ts -------------------------------------------------------------------------------- /src/Rotator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/src/Rotator.ts -------------------------------------------------------------------------------- /src/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/src/enums.ts -------------------------------------------------------------------------------- /src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/src/helper.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /tests/checkOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/tests/checkOptions.js -------------------------------------------------------------------------------- /tests/checkOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/tests/checkOptions.ts -------------------------------------------------------------------------------- /tests/every-minute-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/tests/every-minute-test.js -------------------------------------------------------------------------------- /tests/every-second-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/tests/every-second-test.js -------------------------------------------------------------------------------- /tests/large-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/tests/large-test.js -------------------------------------------------------------------------------- /tests/rotate-on-size-without-date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/tests/rotate-on-size-without-date.js -------------------------------------------------------------------------------- /tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/tests/test.js -------------------------------------------------------------------------------- /tests/test2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/tests/test2.js -------------------------------------------------------------------------------- /tests/test2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/tests/test2.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerc/file-stream-rotator/HEAD/tsconfig.json --------------------------------------------------------------------------------