@scrabble-solver/dictionaries 2.15.14 → 2.15.16

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.
@@ -25,6 +25,7 @@ class Dictionaries {
25
25
  return this.updateDictionary(locale);
26
26
  }
27
27
  remove() {
28
+ // @ts-expect-error incorrect @types/node? https://nodejs.org/docs/latest-v25.x/api/fs.html#fsrmdirsyncpath-options
28
29
  fs_1.default.rmdirSync(constants_1.OUTPUT_DIRECTORY, { recursive: true });
29
30
  }
30
31
  async update(force) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrabble-solver/dictionaries",
3
- "version": "2.15.14",
3
+ "version": "2.15.16",
4
4
  "description": "Scrabble Solver 2 - Dictionaries",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -30,9 +30,9 @@
30
30
  },
31
31
  "dependencies": {
32
32
  "@kamilmielnik/trie": "^4.0.0",
33
- "@scrabble-solver/logger": "^2.15.14",
34
- "@scrabble-solver/types": "^2.15.14",
35
- "@scrabble-solver/word-lists": "^2.15.14"
33
+ "@scrabble-solver/logger": "^2.15.16",
34
+ "@scrabble-solver/types": "^2.15.16",
35
+ "@scrabble-solver/word-lists": "^2.15.16"
36
36
  },
37
- "gitHead": "ff8105e2d4e2fff5fffde35cbeaa40474c232599"
37
+ "gitHead": "885d587f6003d5dfa0f6029a6c01cbfc59d4acc9"
38
38
  }
@@ -33,6 +33,7 @@ export class Dictionaries {
33
33
  }
34
34
 
35
35
  public remove(): void {
36
+ // @ts-expect-error incorrect @types/node? https://nodejs.org/docs/latest-v25.x/api/fs.html#fsrmdirsyncpath-options
36
37
  fs.rmdirSync(OUTPUT_DIRECTORY, { recursive: true });
37
38
  }
38
39