Skip to content

Commit

Permalink
Dependency update. Bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexagon committed Mar 29, 2022
1 parent 61e9c63 commit adaa855
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 54 deletions.
130 changes: 85 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 3 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thinker-fts",
"version": "2.0.3",
"version": "2.0.4",
"description": "Pure Javascript/Node.js in-memory full text search engine.",
"author": "Hexagon <github.com/hexagon>",
"contributors": [
Expand Down Expand Up @@ -31,12 +31,7 @@
".": {
"import": "./dist/thinker.mjs",
"require": "./dist/thinker.cjs",
"browser": "./dist/croner.min.js"
},
"./minified": {
"import": "./dist/croner.min.mjs",
"require": "./dist/croner.min.js",
"browser": "./dist/croner.min.js"
"browser": "./dist/thinker.min.js"
}
},
"files": [
Expand Down Expand Up @@ -69,7 +64,7 @@
"rollup": "^2.70.0",
"should": "^13.2.3",
"soundex": "^0.2.1",
"stemmer": "^1.0.5",
"stemmer": "^2.0.0",
"uglify-js": "^3.15.3"
},
"license": "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/processors.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ THE SOFTWARE.
*/

import stemmer from "stemmer";
import { stemmer } from "stemmer";
import Soundex from "soundex";

function stopwords ( stopword ) {
Expand Down

0 comments on commit adaa855

Please sign in to comment.