842290cbef
ref https://linear.app/tryghost/issue/CFR-27 - updated packages to include performance improvement for NQL filter strings including multiple neq filters for the same resource - bumped `bookshelf-plugins` - bumped NQL versions We identified a performance fix that allows us to combine not equal (neq) filters for the same resource in a logically-equivalent way that also has far more performant resulting SQL. We're effectively automatically combining strings like 'tag:-tag1+tag:-tag2` into 'tag:-[tag1,tag2]'.
35 lines
950 B
JSON
35 lines
950 B
JSON
{
|
|
"name": "@tryghost/custom-theme-settings-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 --reporter dot './test/**/*.test.js'",
|
|
"test": "yarn test:unit",
|
|
"lint:code": "eslint *.js lib/ --ext .js --cache",
|
|
"lint": "yarn lint:code && yarn lint:test",
|
|
"lint:test": "eslint -c test/.eslintrc.js test/ --ext .js --cache"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib"
|
|
],
|
|
"devDependencies": {
|
|
"@tryghost/nql-lang": "0.6.1",
|
|
"c8": "8.0.1",
|
|
"mocha": "10.2.0",
|
|
"should": "13.2.3",
|
|
"sinon": "15.2.0"
|
|
},
|
|
"dependencies": {
|
|
"@tryghost/debug": "0.1.29",
|
|
"@tryghost/errors": "1.3.2",
|
|
"@tryghost/nql": "0.12.3",
|
|
"@tryghost/tpl": "0.1.29",
|
|
"lodash": "4.17.21"
|
|
}
|
|
}
|