├── .gitignore ├── CHANGELOG.md ├── README.md ├── app.js ├── package.json └── test ├── echo.js └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/pm2-logrotate/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/pm2-logrotate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/pm2-logrotate/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/pm2-logrotate/HEAD/app.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/pm2-logrotate/HEAD/package.json -------------------------------------------------------------------------------- /test/echo.js: -------------------------------------------------------------------------------- 1 | 2 | setInterval(() => { 3 | console.log('test line') 4 | }, 2000) 5 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/pm2-logrotate/HEAD/test/test.js --------------------------------------------------------------------------------