cspell 9.4.0 → 9.6.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.
@@ -1,3 +1,3 @@
1
- import { a as parseApplicationFeatureFlags, c as listDictionaries, i as lint, n as checkText, o as suggestions, r as createInit, s as trace, t as IncludeExcludeFlag } from "./application-DCyfKhGm.js";
1
+ import { a as parseApplicationFeatureFlags, c as listDictionaries, i as lint, n as checkText, o as suggestions, r as createInit, s as trace, t as IncludeExcludeFlag } from "./application-BJHh60xM.js";
2
2
 
3
3
  export { IncludeExcludeFlag, checkText, createInit, lint, listDictionaries, parseApplicationFeatureFlags, suggestions, trace };
package/dist/esm/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { a as parseApplicationFeatureFlags, b as getReporter, c as listDictionaries, i as lint, n as checkText, o as suggestions, r as createInit, s as trace, t as IncludeExcludeFlag } from "./application-DCyfKhGm.js";
1
+ import { a as parseApplicationFeatureFlags, c as listDictionaries, h as getReporter, i as lint, n as checkText, o as suggestions, r as createInit, s as trace, t as IncludeExcludeFlag } from "./application-BJHh60xM.js";
2
2
 
3
3
  export * from "@cspell/cspell-types"
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell",
3
- "version": "9.4.0",
3
+ "version": "9.6.0",
4
4
  "description": "A Spelling Checker for Code!",
5
5
  "funding": "https://github.com/streetsidesoftware/cspell?sponsor=1",
6
6
  "bin": {
@@ -9,11 +9,13 @@
9
9
  },
10
10
  "type": "module",
11
11
  "sideEffects": false,
12
- "types": "dist/esm/index.d.ts",
12
+ "types": "dist/cjs/commonJsApi.d.ts",
13
+ "main": "dist/cjs/commonJsApi.cjs",
13
14
  "module": "dist/esm/index.js",
14
15
  "exports": {
15
16
  ".": {
16
- "import": "./dist/esm/index.js"
17
+ "import": "./dist/esm/index.js",
18
+ "require": "./dist/cjs/commonJsApi.cjs"
17
19
  },
18
20
  "./app": {
19
21
  "import": "./dist/esm/app.js"
@@ -53,7 +55,8 @@
53
55
  "coverage": "vitest run --coverage",
54
56
  "test:watch": "vitest",
55
57
  "test": "vitest run",
56
- "watch": "tsc -p . -w",
58
+ "watch": "tsdown -w",
59
+ "watch:tsc": "tsc -p . -w",
57
60
  "compile": "tsc -p .",
58
61
  "test-watch": "vitest",
59
62
  "version": "node ./tools/patch-version.mjs && git add .",
@@ -83,21 +86,21 @@
83
86
  },
84
87
  "homepage": "https://cspell.org/",
85
88
  "dependencies": {
86
- "@cspell/cspell-json-reporter": "9.4.0",
87
- "@cspell/cspell-pipe": "9.4.0",
88
- "@cspell/cspell-types": "9.4.0",
89
- "@cspell/dynamic-import": "9.4.0",
90
- "@cspell/url": "9.4.0",
89
+ "@cspell/cspell-json-reporter": "9.6.0",
90
+ "@cspell/cspell-pipe": "9.6.0",
91
+ "@cspell/cspell-types": "9.6.0",
92
+ "@cspell/dynamic-import": "9.6.0",
93
+ "@cspell/url": "9.6.0",
91
94
  "ansi-regex": "^6.2.2",
92
95
  "chalk": "^5.6.2",
93
96
  "chalk-template": "^1.1.2",
94
97
  "commander": "^14.0.2",
95
- "cspell-config-lib": "9.4.0",
96
- "cspell-dictionary": "9.4.0",
97
- "cspell-gitignore": "9.4.0",
98
- "cspell-glob": "9.4.0",
99
- "cspell-io": "9.4.0",
100
- "cspell-lib": "9.4.0",
98
+ "cspell-config-lib": "9.6.0",
99
+ "cspell-dictionary": "9.6.0",
100
+ "cspell-gitignore": "9.6.0",
101
+ "cspell-glob": "9.6.0",
102
+ "cspell-io": "9.6.0",
103
+ "cspell-lib": "9.6.0",
101
104
  "fast-json-stable-stringify": "^2.1.0",
102
105
  "flatted": "^3.3.3",
103
106
  "semver": "^7.7.3",
@@ -107,11 +110,10 @@
107
110
  "node": ">=20"
108
111
  },
109
112
  "devDependencies": {
110
- "@types/glob": "^8.1.0",
111
113
  "@types/micromatch": "^4.0.10",
112
114
  "@types/semver": "^7.7.1",
113
115
  "micromatch": "^4.0.8",
114
116
  "minimatch": "^9.0.5"
115
117
  },
116
- "gitHead": "12dba3d8b880384d1401c765cb2186647f5a266f"
118
+ "gitHead": "163793ddf2a0ad90bc7c90351698a106003297af"
117
119
  }