mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-27 18:52:14 +03:00
6e72767a50
fixes https://github.com/TryGhost/Team/issues/2326 When importing more than 500 members, we didn't testImportThreshold at the right time. It was called too early because the importing job was not awaited. This also adds an E2E test for this case.
33 lines
778 B
JSON
33 lines
778 B
JSON
{
|
|
"name": "@tryghost/members-importer",
|
|
"version": "0.0.0",
|
|
"author": "Ghost Foundation",
|
|
"private": true,
|
|
"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": {
|
|
"c8": "7.12.0",
|
|
"fs-extra": "10.1.0",
|
|
"mocha": "10.1.0",
|
|
"should": "13.2.3",
|
|
"sinon": "14.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@tryghost/errors": "1.2.18",
|
|
"@tryghost/logging": "2.3.2",
|
|
"@tryghost/members-csv": "0.0.0",
|
|
"@tryghost/tpl": "0.1.19",
|
|
"moment-timezone": "0.5.23"
|
|
}
|
|
}
|