@scrabble-solver/word-lists 2.15.11 → 2.15.12

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.
@@ -1,2 +1,2 @@
1
- import { OptionsTransliterate } from 'transliteration';
1
+ import { type OptionsTransliterate } from 'transliteration';
2
2
  export declare const transliterateDiacritics: (words: string[], options?: OptionsTransliterate) => string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrabble-solver/word-lists",
3
- "version": "2.15.11",
3
+ "version": "2.15.12",
4
4
  "description": "Scrabble Solver 2 - Word lists",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -23,7 +23,7 @@
23
23
  "clean": "rimraf build/"
24
24
  },
25
25
  "dependencies": {
26
- "@scrabble-solver/types": "^2.15.11",
26
+ "@scrabble-solver/types": "^2.15.12",
27
27
  "cheerio": "^1.0.0",
28
28
  "follow-redirects": "^1.15.9",
29
29
  "transliteration": "^2.3.5",
@@ -33,5 +33,5 @@
33
33
  "@types/follow-redirects": "^1.14.4",
34
34
  "@types/unzipper": "^0.10.11"
35
35
  },
36
- "gitHead": "4fa527098d5e67120adb7964777c044a09378332"
36
+ "gitHead": "1eeef2b2975e63b195885dd2636c53624d300c6b"
37
37
  }
@@ -1,4 +1,4 @@
1
- import { OptionsTransliterate, transliterate } from 'transliteration';
1
+ import { type OptionsTransliterate, transliterate } from 'transliteration';
2
2
 
3
3
  import { unique } from './unique';
4
4
 
package/src/lib/unzip.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import fs from 'fs';
2
- import unzipper, { Entry } from 'unzipper';
2
+ import unzipper, { type Entry } from 'unzipper';
3
3
 
4
4
  export const unzip = (zipFilename: string, extractFilename: string, outputFilename: string): Promise<void> => {
5
5
  return fs