feat: add boosting to context based search

This commit is contained in:
Michel Jonathan Schmitz
2019-04-16 15:29:13 +02:00
committed by Rainer Killinger
parent 67c814443c
commit dd4be92f90
4 changed files with 268 additions and 661 deletions

View File

@@ -12,16 +12,17 @@
],
"scripts": {
"build": "npm run tslint && npm run compile",
"compile": "rimraf lib && tsc --outDir lib && prepend lib/cli.js '#!/usr/bin/env node\n'",
"compile": "rimraf lib && tsc && prepend lib/cli.js '#!/usr/bin/env node\n'",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'",
"check-configuration": "openstapps-configuration",
"documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src",
"documentation": "typedoc --includeDeclarations --mode modules --out docs --readme README.md --listInvalidSymbolLinks src",
"prepublishOnly": "npm ci && npm run build",
"start": "NODE_CONFIG_ENV=elasticsearch ALLOW_NO_TRANSPORT=true node ./lib/cli.js",
"tslint": "tslint 'src/**/*.ts'"
},
"dependencies": {
"@openstapps/core": "0.12.0",
"@openstapps/core-tools": "0.3.0",
"@openstapps/core": "0.15.0",
"@openstapps/core-tools": "0.5.1",
"@openstapps/logger": "0.0.5",
"config": "3.0.1",
"cors": "2.8.5",
@@ -42,7 +43,7 @@
"uuid": "3.3.2"
},
"devDependencies": {
"@openstapps/configuration": "0.6.0",
"@openstapps/configuration": "0.8.0",
"@types/config": "0.0.34",
"@types/cors": "2.8.4",
"@types/elasticsearch": "5.0.31",
@@ -61,6 +62,6 @@
"prepend-file-cli": "1.0.6",
"rimraf": "2.6.3",
"typedoc": "0.14.2",
"typescript": "3.3.3333"
"typescript": "3.3.4000"
}
}