cspell-trie 6.18.1 → 6.19.0

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/app.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import * as commander from 'commander';
1
+ import type * as commander from 'commander';
2
2
  export declare function run(program: commander.Command, argv: string[]): Promise<commander.Command>;
3
3
  //# sourceMappingURL=app.d.ts.map
package/dist/app.js CHANGED
@@ -24,11 +24,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.run = void 0;
27
+ const Trie = __importStar(require("cspell-trie-lib"));
27
28
  const fs = __importStar(require("fs-extra"));
28
29
  const fs_extra_1 = require("fs-extra");
29
- const path = __importStar(require("path"));
30
- const Trie = __importStar(require("cspell-trie-lib"));
31
30
  const gensequence_1 = require("gensequence");
31
+ const path = __importStar(require("path"));
32
32
  const stream = __importStar(require("stream"));
33
33
  const zlib = __importStar(require("zlib"));
34
34
  const UTF8 = 'utf8';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell-trie",
3
- "version": "6.18.1",
3
+ "version": "6.19.0",
4
4
  "description": "Trie Data Structure reader for cspell",
5
5
  "bin": {
6
6
  "cspell-trie": "bin.js"
@@ -16,7 +16,7 @@
16
16
  "!**/*.map"
17
17
  ],
18
18
  "scripts": {
19
- "clean": "rimraf dist temp coverage .tsbuildinfo",
19
+ "clean": "shx rm -rf dist temp coverage .tsbuildinfo",
20
20
  "build": "tsc -p .",
21
21
  "build-dev": "tsc -p tsconfig.dev.json",
22
22
  "clean-build": "pnpm run clean && pnpm run build",
@@ -40,8 +40,8 @@
40
40
  },
41
41
  "homepage": "https://github.com/streetsidesoftware/cspell#readme",
42
42
  "dependencies": {
43
- "commander": "^9.4.1",
44
- "cspell-trie-lib": "6.18.1",
43
+ "commander": "^9.5.0",
44
+ "cspell-trie-lib": "6.19.0",
45
45
  "fs-extra": "^11.1.0",
46
46
  "gensequence": "^4.0.3"
47
47
  },
@@ -51,8 +51,7 @@
51
51
  "devDependencies": {
52
52
  "@types/fs-extra": "^9.0.13",
53
53
  "@types/node": "^18.11.18",
54
- "jest": "^29.3.1",
55
- "rimraf": "^3.0.2"
54
+ "jest": "^29.3.1"
56
55
  },
57
- "gitHead": "2570a9bb03e68864d30ed8024786b3b2eeddab2b"
56
+ "gitHead": "f643f0cd6384905618dbca950bd65a39a77dc028"
58
57
  }