mirror of
https://github.com/remoteintech/remote-jobs
synced 2024-11-10 14:44:14 +00:00
dac8b04fc8
* Prevent duplicate company names
* Fix output indentation
* Search full profile content using lunr.js
* Remove extra stop words
This wasn't really working correctly - the stop word 'work' would leave
instances of 'working' and 'works' in the index for example.
* Change company name description from "Name" to "Company name"
* Pre-process query:
- Search for terms in AND mode, per
https://lunrjs.com/guides/searching.html#term-presence
- Discard non-alphanumeric characters from the search
- Better handling of contractions and searching for stop words
* Display search query and results in the console
* Add special search token: _incomplete
* Add a link to search for incomplete profiles
* Revert "Add a link to search for incomplete profiles"
This reverts commit f6384c90cb
.
* Add link to search documentation
* Improve search explanation appearance when it spans multiple lines
* Fix searching for contractions
Previously, searching for e.g. "don't" wasn't working correctly. After
trimming the contraction, "do" is a stop word, so it should be ignored.
* Improve "empty search" message
* Prefer matches other than "company name" in search excerpts
* Move inline scripts before external scripts
This probably doesn't matter right now due to the way the scripts are
currently structured, but it might matter one day and it's more logical
this way.
* Fix search engine index progress
* Improve script indentation
* I got 99 problems and they're all bots
* Update script exit code
When a Node.js error occurs the exit code is probably going to be 1, so
we should use a different code.
* Fix the tests
* Update documentation
This was wrong (out of date), but the correct version is obvious from
reading the code.
* Make download progress work in both Chrome and Firefox
See https://stackoverflow.com/a/32799706
28 lines
562 B
JSON
28 lines
562 B
JSON
{
|
|
"scripts": {
|
|
"validate": "bin/validate.js",
|
|
"test": "mocha",
|
|
"build": "bin/build-site.js",
|
|
"serve": "http-server site/build/",
|
|
"start": "bin/serve-site.js"
|
|
},
|
|
"nodemonConfig": {
|
|
"ext": "js,md,html,css",
|
|
"ignore": [
|
|
"site/build/"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"cheerio": "^1.0.0-rc.3",
|
|
"lunr": "2.3.7",
|
|
"marked": "^0.7.0",
|
|
"phin": "^3.4.0",
|
|
"rimraf": "^3.0.0",
|
|
"swig-templates": "^2.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.2.0",
|
|
"http-server": "^0.11.1",
|
|
"mocha": "^6.2.2"
|
|
}
|
|
}
|