7a2f766668
fixes https://github.com/TryGhost/Ghost/issues/15190 refs https://github.com/TryGhost/framework/pull/76 - log output always uses UTC timestamps, but it may be desirable to configure logs to use the local machine timezone - a new config option has been added to `@tryghost/logging` so you can switch the logs to the local timezone - this commit bumps the package and sets the default config option to `false`, so it doesn't suddenly change the timezone of the logs - docs will be updated soon but if you'd like to use the timezone-altered timestamps, you can set `logging.useLocalTime` to `true` - credits to https://github.com/levee223 for the implementation and PR
37 lines
861 B
JSON
37 lines
861 B
JSON
{
|
|
"name": "@tryghost/job-manager",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"author": "Ghost Foundation",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "echo \"Implement me!\"",
|
|
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura mocha './test/**/*.test.js'",
|
|
"test": "yarn test:unit",
|
|
"lint": "eslint . --ext .js --cache"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib"
|
|
],
|
|
"devDependencies": {
|
|
"@sinonjs/fake-timers": "9.1.2",
|
|
"c8": "7.12.0",
|
|
"date-fns": "2.29.2",
|
|
"delay": "5.0.0",
|
|
"mocha": "10.0.0",
|
|
"should": "13.2.3",
|
|
"sinon": "14.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@breejs/later": "4.1.0",
|
|
"@tryghost/errors": "1.2.15",
|
|
"@tryghost/logging": "2.3.0",
|
|
"bree": "6.5.0",
|
|
"cron-validate": "1.4.3",
|
|
"fastq": "1.13.0",
|
|
"p-wait-for": "3.2.0"
|
|
}
|
|
}
|