hunspell-reader 6.0.0 → 6.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/aff.d.ts +1 -1
- package/dist/iterableToStream.d.ts +1 -0
- package/package.json +6 -6
package/dist/aff.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ export declare function logAffWord(affWord: AffWord, message: string): AffWord;
|
|
|
36
36
|
export declare function affWordToColoredString(affWord: AffWord): string;
|
|
37
37
|
export declare function flagsToString(flags: AffWordFlags): string;
|
|
38
38
|
export declare function asAffWord(word: string, rules?: string, flags?: AffWordFlags): AffWord;
|
|
39
|
-
export declare function compareAff(a: AffWord, b: AffWord):
|
|
39
|
+
export declare function compareAff(a: AffWord, b: AffWord): 0 | 1 | -1;
|
|
40
40
|
/**
|
|
41
41
|
* Returns a filter function that will filter adjacent AffWords
|
|
42
42
|
* It compares the word and the flags.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hunspell-reader",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.1.1",
|
|
4
4
|
"description": "A library for reading Hunspell Dictionary Files",
|
|
5
5
|
"bin": "bin.js",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/fs-extra": "^9.0.13",
|
|
42
42
|
"@types/jest": "^27.5.1",
|
|
43
|
-
"@types/node": "^17.0.
|
|
43
|
+
"@types/node": "^17.0.36",
|
|
44
44
|
"jest": "^28.1.0",
|
|
45
45
|
"rimraf": "^3.0.2",
|
|
46
|
-
"ts-jest": "^28.0.
|
|
47
|
-
"typescript": "^4.
|
|
46
|
+
"ts-jest": "^28.0.3",
|
|
47
|
+
"typescript": "^4.7.2"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"commander": "^9.
|
|
50
|
+
"commander": "^9.3.0",
|
|
51
51
|
"fs-extra": "^10.1.0",
|
|
52
52
|
"gensequence": "^3.1.1",
|
|
53
53
|
"iconv-lite": "^0.6.3"
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"engines": {
|
|
56
56
|
"node": ">=14"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "e871153bfebefa19b13754b431ce5e49a63da298"
|
|
59
59
|
}
|