Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Commit

Permalink
ci: Update packages (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Mar 8, 2021
1 parent d65d236 commit 5a79a84
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
19 changes: 9 additions & 10 deletions package-lock.json

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

9 changes: 5 additions & 4 deletions package.json
Expand Up @@ -38,14 +38,15 @@
},
"homepage": "https://github.com/Jason-Rev/hunspell-reader#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.7",
"@types/node": "^12.20.1",
"@types/fs-extra": "^9.0.8",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.32",
"cspell": "^5.2.4",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"dependencies": {
"commander": "^7.1.0",
Expand Down
4 changes: 2 additions & 2 deletions src/app.ts
Expand Up @@ -15,7 +15,7 @@ const packageInfo = require('../package.json');
const version = packageInfo['version'];

let displayHelp = true;
let logStream = process.stderr;
let logStream: NodeJS.WritableStream = process.stderr;

commander.version(version);

Expand Down Expand Up @@ -183,7 +183,7 @@ async function actionPrime(hunspellDicFilename: string, options: Options) {
const callback = showProgress
? () => {
current++;
!(current % reportProgressRate) && process.stderr.write(calcProgress(), 'UTF-8');
!(current % reportProgressRate) && process.stderr.write(calcProgress(), 'utf-8');
}
: () => {};
const seqWords = transform ? reader.seqAffWords(callback) : reader.seqRootWords().map(asAffWord);
Expand Down

0 comments on commit 5a79a84

Please sign in to comment.