bededf4520
refs https://ghost.slack.com/archives/C02G9E68C/p1670215917451249 When a member is deleted, and we receive an opened event for an email to that member. We threw an uncaught Bookshelf EmptyResponse error. - This change makes fetching the member not a requirement when handling that event in the last seen at updater. - It also adds try catches for all event listeners in the last seen at updater
33 lines
810 B
JSON
33 lines
810 B
JSON
{
|
|
"name": "@tryghost/members-events-service",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"author": "Ghost Foundation",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "echo \"Implement me!\"",
|
|
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura --check-coverage mocha './test/**/*.test.js'",
|
|
"test": "yarn test:unit",
|
|
"lint": "eslint . --ext .js --cache"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib"
|
|
],
|
|
"devDependencies": {
|
|
"c8": "7.12.0",
|
|
"mocha": "10.1.0",
|
|
"moment": "2.29.4",
|
|
"should": "13.2.3",
|
|
"sinon": "14.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@tryghost/domain-events": "0.0.0",
|
|
"@tryghost/errors": "1.2.18",
|
|
"@tryghost/member-events": "0.0.0",
|
|
"moment-timezone": "0.5.34",
|
|
"@tryghost/logging": "2.3.2"
|
|
}
|
|
}
|