hunspell-reader
Advanced tools
Comparing version 6.18.1 to 6.19.0
@@ -28,8 +28,8 @@ "use strict"; | ||
const commander_1 = require("commander"); | ||
const IterableHunspellReader_1 = require("./IterableHunspellReader"); | ||
const fs = __importStar(require("fs-extra")); | ||
const util_1 = require("./util"); | ||
const gensequence_1 = require("gensequence"); | ||
const aff_1 = require("./aff"); | ||
const IterableHunspellReader_1 = require("./IterableHunspellReader"); | ||
const iterableToStream_1 = require("./iterableToStream"); | ||
const util_1 = require("./util"); | ||
const uniqueHistorySize = 500000; | ||
@@ -36,0 +36,0 @@ // eslint-disable-next-line @typescript-eslint/no-var-requires |
@@ -0,5 +1,5 @@ | ||
export type { AffInfo, AffWord } from './affDef'; | ||
export { parseAff, parseAffFile as readAffFile } from './affReader'; | ||
export * from './IterableHunspellReader'; | ||
export { IterableHunspellReader as HunspellReader } from './IterableHunspellReader'; | ||
export { parseAffFile as readAffFile, parseAff } from './affReader'; | ||
export type { AffInfo, AffWord } from './affDef'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -17,9 +17,9 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.parseAff = exports.readAffFile = exports.HunspellReader = void 0; | ||
exports.HunspellReader = exports.readAffFile = exports.parseAff = void 0; | ||
var affReader_1 = require("./affReader"); | ||
Object.defineProperty(exports, "parseAff", { enumerable: true, get: function () { return affReader_1.parseAff; } }); | ||
Object.defineProperty(exports, "readAffFile", { enumerable: true, get: function () { return affReader_1.parseAffFile; } }); | ||
__exportStar(require("./IterableHunspellReader"), exports); | ||
var IterableHunspellReader_1 = require("./IterableHunspellReader"); | ||
Object.defineProperty(exports, "HunspellReader", { enumerable: true, get: function () { return IterableHunspellReader_1.IterableHunspellReader; } }); | ||
var affReader_1 = require("./affReader"); | ||
Object.defineProperty(exports, "readAffFile", { enumerable: true, get: function () { return affReader_1.parseAffFile; } }); | ||
Object.defineProperty(exports, "parseAff", { enumerable: true, get: function () { return affReader_1.parseAff; } }); | ||
//# sourceMappingURL=index.js.map |
@@ -1,5 +0,5 @@ | ||
import { Sequence } from 'gensequence'; | ||
import { Aff } from './aff'; | ||
import type { Sequence } from 'gensequence'; | ||
import type { Aff } from './aff'; | ||
import type { AffWord } from './affDef'; | ||
import { WordInfo } from './types'; | ||
import type { WordInfo } from './types'; | ||
export { WordInfo } from './types'; | ||
@@ -6,0 +6,0 @@ export interface HunspellSrcData { |
{ | ||
"name": "hunspell-reader", | ||
"version": "6.18.1", | ||
"version": "6.19.0", | ||
"description": "A library for reading Hunspell Dictionary Files", | ||
@@ -22,3 +22,3 @@ "bin": "bin.js", | ||
"lint": "prettier -w \"**/*.{md,yaml,yml,json,ts}\"", | ||
"clean": "rimraf dist coverage .tsbuildinfo", | ||
"clean": "shx rm -rf dist coverage .tsbuildinfo", | ||
"coverage": "jest --coverage", | ||
@@ -42,11 +42,10 @@ "watch": "tsc -w" | ||
"@types/fs-extra": "^9.0.13", | ||
"@types/jest": "^29.2.4", | ||
"@types/jest": "^29.2.5", | ||
"@types/node": "^18.11.18", | ||
"jest": "^29.3.1", | ||
"rimraf": "^3.0.2", | ||
"ts-jest": "^29.0.3", | ||
"ts-jest": "^29.0.5", | ||
"typescript": "^4.9.4" | ||
}, | ||
"dependencies": { | ||
"commander": "^9.4.1", | ||
"commander": "^9.5.0", | ||
"fs-extra": "^11.1.0", | ||
@@ -59,3 +58,3 @@ "gensequence": "^4.0.3", | ||
}, | ||
"gitHead": "2570a9bb03e68864d30ed8024786b3b2eeddab2b" | ||
"gitHead": "f643f0cd6384905618dbca950bd65a39a77dc028" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6
63902
Updatedcommander@^9.5.0