diff --git a/action-src/package.json b/action-src/package.json index 183cf4858..5116d5309 100644 --- a/action-src/package.json +++ b/action-src/package.json @@ -41,8 +41,8 @@ "@octokit/core": "^3.6.0", "@octokit/plugin-rest-endpoint-methods": "^5.13.0", "@octokit/rest": "^18.12.0", - "cspell": "^5.21.2", - "cspell-glob": "^5.21.2", + "cspell": "^6.0.0", + "cspell-glob": "^6.0.0", "vscode-uri": "^3.0.3" } } diff --git a/action.yaml b/action.yaml index f87a53776..109ba9d10 100644 --- a/action.yaml +++ b/action.yaml @@ -11,33 +11,40 @@ inputs: Also when generating a new PAT, select the least scopes necessary. [Learn more about creating and using encrypted secrets](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets) default: ${{ github.token }} + required: false files: description: > Define glob patterns to filter the files to be checked. Use a new line between patterns to define multiple patterns. The default is to check ALL files that were changed in in the pull_request or push. Note: `ignorePaths` defined in cspell.json still apply. + required: false incremental_files_only: description: > Limit the files checked to the ones in the pull request or push. - default: true + default: "true" + required: false config: description: > Path to `cspell.json` + required: false root: description: > The point in the directory tree to start spell checking. + required: false inline: description: > Notification level to use with inline reporting of spelling errors. Allowed values are: warning, error, none default: warning + required: false strict: description: > Determines if the action should be failed if any spelling issues are found. Allowed values are: true, false - default: true + default: "true" + required: false runs: - using: "node12" + using: "node16" main: "./action/lib/main_root.js" branding: icon: "code" diff --git a/action/node_modules/@cspell/cspell-bundled-dicts/package.json b/action/node_modules/@cspell/cspell-bundled-dicts/package.json index ba8d079bd..8e7a19ae8 100644 --- a/action/node_modules/@cspell/cspell-bundled-dicts/package.json +++ b/action/node_modules/@cspell/cspell-bundled-dicts/package.json @@ -1,6 +1,6 @@ { "name": "@cspell/cspell-bundled-dicts", - "version": "5.21.2", + "version": "6.0.0", "description": "Dictionaries bundled with cspell", "publishConfig": { "access": "public" @@ -85,11 +85,11 @@ "@cspell/dict-vue": "^2.0.2" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { - "@cspell/cspell-tools": "^5.21.2", - "@cspell/cspell-types": "^5.21.2" + "@cspell/cspell-tools": "^6.0.0", + "@cspell/cspell-types": "^6.0.0" }, - "gitHead": "ce422e9d62a5fbad056c4f82aafcbf98c6a86677" + "gitHead": "7fd3e4ff8738a84d0aa48b9a9d4581b5efe50bea" } diff --git a/action/node_modules/@cspell/cspell-pipe/package.json b/action/node_modules/@cspell/cspell-pipe/package.json index 9ef9098c4..66d59ae33 100644 --- a/action/node_modules/@cspell/cspell-pipe/package.json +++ b/action/node_modules/@cspell/cspell-pipe/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "5.21.2", + "version": "6.0.0", "description": "Library to make working with Iterators/AsyncIterators easier.", "keywords": [ "cspell", @@ -90,12 +90,12 @@ "url": "https://github.com/streetsidesoftware/cspell/labels/cspell-gitignore" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { "@types/node": "^17.0.35", "jest": "^28.1.0", "rimraf": "^3.0.2" }, - "gitHead": "ce422e9d62a5fbad056c4f82aafcbf98c6a86677" + "gitHead": "7fd3e4ff8738a84d0aa48b9a9d4581b5efe50bea" } diff --git a/action/node_modules/@cspell/cspell-types/package.json b/action/node_modules/@cspell/cspell-types/package.json index 2855aa479..debe601f3 100644 --- a/action/node_modules/@cspell/cspell-types/package.json +++ b/action/node_modules/@cspell/cspell-types/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "5.21.2", + "version": "6.0.0", "description": "Types for cspell and cspell-lib", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -18,6 +18,8 @@ "build": "npm run compile && npm run build-schema", "build-dev": "tsc -p tsconfig.dev.json", "build-schema": "ts-json-schema-generator --no-top-ref --path src/CSpellSettingsDef.ts --type CSpellSettings --validation-keywords markdownDescription --validation-keywords scope --validation-keywords deprecated --validation-keywords deprecationMessage -o ./cspell.schema.json && cp ./cspell.schema.json ../..", + "build-cspell-types-docs": "rimraf ../../docs/types/cspell-types && typedoc --out ../../docs/types/cspell-types src/index.ts", + "test-build-docs": "typedoc --out ./temp/docs src/index.ts", "clean-build": "npm run clean && npm run build", "compile": "tsc -p .", "test-schema": "ajv -s ./cspell.schema.json -d \"cspell.test.{json,yaml}\" -c ./ajv.config.js", @@ -44,14 +46,16 @@ "author": "Jason Dent", "license": "MIT", "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { "ajv-cli": "^5.0.0", "jest": "^28.1.0", "rimraf": "^3.0.2", "ts-json-schema-generator": "^1.0.0", + "typedoc": "0.22.15", + "typedoc-plugin-markdown": "^3.12.1", "typescript": "^4.6.4" }, - "gitHead": "ce422e9d62a5fbad056c4f82aafcbf98c6a86677" + "gitHead": "7fd3e4ff8738a84d0aa48b9a9d4581b5efe50bea" } diff --git a/action/node_modules/cspell-gitignore/package.json b/action/node_modules/cspell-gitignore/package.json index 0f4612795..e39631eeb 100644 --- a/action/node_modules/cspell-gitignore/package.json +++ b/action/node_modules/cspell-gitignore/package.json @@ -1,6 +1,6 @@ { "name": "cspell-gitignore", - "version": "5.21.2", + "version": "6.0.0", "description": "Gitignore Glob matcher for cspell", "keywords": [ "cspell", @@ -44,10 +44,10 @@ "url": "https://github.com/streetsidesoftware/cspell/labels/cspell-gitignore" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "dependencies": { - "cspell-glob": "^5.21.2", + "cspell-glob": "^6.0.0", "find-up": "^5.0.0" }, "devDependencies": { @@ -55,5 +55,5 @@ "jest": "^28.1.0", "rimraf": "^3.0.2" }, - "gitHead": "ce422e9d62a5fbad056c4f82aafcbf98c6a86677" + "gitHead": "7fd3e4ff8738a84d0aa48b9a9d4581b5efe50bea" } diff --git a/action/node_modules/cspell-glob/package.json b/action/node_modules/cspell-glob/package.json index b39b2aa78..cea2acdd5 100644 --- a/action/node_modules/cspell-glob/package.json +++ b/action/node_modules/cspell-glob/package.json @@ -1,6 +1,6 @@ { "name": "cspell-glob", - "version": "5.21.2", + "version": "6.0.0", "description": "Glob matcher for cspell", "keywords": [ "cspell", @@ -39,7 +39,7 @@ "url": "https://github.com/streetsidesoftware/cspell/labels/cspell-glob" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "dependencies": { "micromatch": "^4.0.5" @@ -50,5 +50,5 @@ "jest": "^28.1.0", "rimraf": "^3.0.2" }, - "gitHead": "ce422e9d62a5fbad056c4f82aafcbf98c6a86677" + "gitHead": "7fd3e4ff8738a84d0aa48b9a9d4581b5efe50bea" } diff --git a/action/node_modules/cspell-io/package.json b/action/node_modules/cspell-io/package.json index 13618c5b6..144d19350 100644 --- a/action/node_modules/cspell-io/package.json +++ b/action/node_modules/cspell-io/package.json @@ -1,6 +1,6 @@ { "name": "cspell-io", - "version": "5.21.2", + "version": "6.0.0", "description": "A library of useful I/O functions used across various cspell tools.", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -35,7 +35,7 @@ }, "homepage": "https://github.com/streetsidesoftware/cspell#readme", "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { "@types/fs-extra": "^9.0.13", @@ -45,5 +45,5 @@ "lorem-ipsum": "^2.0.4", "rimraf": "^3.0.2" }, - "gitHead": "ce422e9d62a5fbad056c4f82aafcbf98c6a86677" + "gitHead": "7fd3e4ff8738a84d0aa48b9a9d4581b5efe50bea" } diff --git a/action/node_modules/cspell-lib/package.json b/action/node_modules/cspell-lib/package.json index 720019101..d69fa0c8d 100644 --- a/action/node_modules/cspell-lib/package.json +++ b/action/node_modules/cspell-lib/package.json @@ -1,6 +1,6 @@ { "name": "cspell-lib", - "version": "5.21.2", + "version": "6.0.0", "description": "A library of useful functions used across various cspell tools.", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -48,16 +48,16 @@ }, "homepage": "https://github.com/streetsidesoftware/cspell#readme", "dependencies": { - "@cspell/cspell-bundled-dicts": "^5.21.2", - "@cspell/cspell-pipe": "^5.21.2", - "@cspell/cspell-types": "^5.21.2", + "@cspell/cspell-bundled-dicts": "^6.0.0", + "@cspell/cspell-pipe": "^6.0.0", + "@cspell/cspell-types": "^6.0.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.2", - "cspell-io": "^5.21.2", - "cspell-trie-lib": "^5.21.2", + "cspell-glob": "^6.0.0", + "cspell-io": "^6.0.0", + "cspell-trie-lib": "^6.0.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -69,21 +69,22 @@ "vscode-uri": "^3.0.3" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { "@cspell/dict-cpp": "^3.1.0", "@cspell/dict-csharp": "^3.0.1", - "@cspell/dict-css": "^2.0.0", + "@cspell/dict-css": "^1.0.13", "@cspell/dict-fa-ir": "^2.0.0", "@cspell/dict-fr-fr": "^2.1.0", - "@cspell/dict-html": "^3.0.1", + "@cspell/dict-html": "^1.1.9", "@cspell/dict-nl-nl": "^2.2.5", - "@cspell/dict-python": "^3.0.5", + "@cspell/dict-python": "^2.0.6", "@types/configstore": "^5.0.1", "@types/fs-extra": "^9.0.13", "@types/jest": "^27.5.1", "@types/node": "^17.0.35", + "cspell-dict-nl-nl": "^1.1.2", "jest": "^28.1.0", "lorem-ipsum": "^2.0.4", "rimraf": "^3.0.2", @@ -91,5 +92,5 @@ "rollup-plugin-dts": "^4.2.1", "ts-jest": "^28.0.2" }, - "gitHead": "ce422e9d62a5fbad056c4f82aafcbf98c6a86677" + "gitHead": "7fd3e4ff8738a84d0aa48b9a9d4581b5efe50bea" } diff --git a/action/node_modules/cspell-trie-lib/package.json b/action/node_modules/cspell-trie-lib/package.json index 0c161261a..8399f3524 100644 --- a/action/node_modules/cspell-trie-lib/package.json +++ b/action/node_modules/cspell-trie-lib/package.json @@ -1,6 +1,6 @@ { "name": "cspell-trie-lib", - "version": "5.21.2", + "version": "6.0.0", "description": "Trie Data Structure to support cspell.", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -37,15 +37,15 @@ }, "homepage": "https://github.com/streetsidesoftware/cspell#readme", "dependencies": { - "@cspell/cspell-pipe": "^5.21.2", + "@cspell/cspell-pipe": "^6.0.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { - "@cspell/cspell-types": "^5.21.2", + "@cspell/cspell-types": "^6.0.0", "@cspell/dict-en_us": "^2.2.5", "@cspell/dict-es-es": "^2.2.0", "@types/fs-extra": "^9.0.13", @@ -53,5 +53,5 @@ "jest": "^28.1.0", "rimraf": "^3.0.2" }, - "gitHead": "ce422e9d62a5fbad056c4f82aafcbf98c6a86677" + "gitHead": "7fd3e4ff8738a84d0aa48b9a9d4581b5efe50bea" } diff --git a/action/node_modules/cspell/package.json b/action/node_modules/cspell/package.json index 3e87cd263..a899ff7fb 100644 --- a/action/node_modules/cspell/package.json +++ b/action/node_modules/cspell/package.json @@ -1,6 +1,6 @@ { "name": "cspell", - "version": "5.21.2", + "version": "6.0.0", "description": "A Spelling Checker for Code!", "funding": "https://github.com/streetsidesoftware/cspell?sponsor=1", "main": "dist/index.js", @@ -70,12 +70,12 @@ }, "homepage": "https://streetsidesoftware.github.io/cspell/", "dependencies": { - "@cspell/cspell-pipe": "^5.21.2", + "@cspell/cspell-pipe": "^6.0.0", "chalk": "^4.1.2", "commander": "^9.2.0", - "cspell-gitignore": "^5.21.2", - "cspell-glob": "^5.21.2", - "cspell-lib": "^5.21.2", + "cspell-gitignore": "^6.0.0", + "cspell-glob": "^6.0.0", + "cspell-lib": "^6.0.0", "fast-json-stable-stringify": "^2.1.0", "file-entry-cache": "^6.0.1", "fs-extra": "^10.1.0", @@ -87,11 +87,11 @@ "vscode-uri": "^3.0.3" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { - "@cspell/cspell-json-reporter": "^5.21.2", - "@cspell/cspell-types": "^5.21.2", + "@cspell/cspell-json-reporter": "^6.0.0", + "@cspell/cspell-types": "^6.0.0", "@types/file-entry-cache": "^5.0.2", "@types/fs-extra": "^9.0.13", "@types/glob": "^7.2.0", @@ -106,5 +106,5 @@ "rollup": "^2.74.1", "rollup-plugin-dts": "^4.2.1" }, - "gitHead": "ce422e9d62a5fbad056c4f82aafcbf98c6a86677" + "gitHead": "7fd3e4ff8738a84d0aa48b9a9d4581b5efe50bea" } diff --git a/action/package.json b/action/package.json index a32728da1..78e41250f 100644 --- a/action/package.json +++ b/action/package.json @@ -14,8 +14,8 @@ "@octokit/core": "^3.6.0", "@octokit/plugin-rest-endpoint-methods": "^5.13.0", "@octokit/rest": "^18.12.0", - "cspell": "^5.21.2", - "cspell-glob": "^5.21.2", + "cspell": "^6.0.0", + "cspell-glob": "^6.0.0", "vscode-uri": "^3.0.3" } } diff --git a/yarn.lock b/yarn.lock index a7dc34eb2..f53e489dc 100644 --- a/yarn.lock +++ b/yarn.lock @@ -310,10 +310,10 @@ resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== -"@cspell/cspell-bundled-dicts@^5.21.2": - version "5.21.2" - resolved "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.2.tgz#2254c392e2a617b5ffe591a438840028fe8dc4b8" - integrity sha512-Y5TU6wV/H+RV1VOB32MowiKofBsEZId4x4ReWCyw4KUtJegeljajCfhHwiQaZuvA69E13cJnOMDwi9qozj4kjw== +"@cspell/cspell-bundled-dicts@^6.0.0": + version "6.0.0" + resolved "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0.tgz#4238871434bec96a13b76d0a3d499d39b0c42126" + integrity sha512-n6fr7V57og7Sp9Wb2K4W3ag3yvRR/hl0p1lSvA+AMnatDbYm8id/5YUlc+AdXlOb604i1fAmHLQ/1dNvm3PMMw== dependencies: "@cspell/dict-ada" "^2.0.0" "@cspell/dict-aws" "^2.0.0" @@ -356,15 +356,15 @@ "@cspell/dict-typescript" "^2.0.0" "@cspell/dict-vue" "^2.0.2" -"@cspell/cspell-pipe@^5.21.2": - version "5.21.2" - resolved "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.2.tgz#7adfbc66426ee28549fd72a39deec7b98a76b320" - integrity sha512-MN1SXeqqurWYNknbUMPHRFyTvURbO53/1Aw3zEoCeVUSiGbD5rrb1N+t0YDbOphWrkkrJAZk82/2ZBJ2USE/vg== +"@cspell/cspell-pipe@^6.0.0": + version "6.0.0" + resolved "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0.tgz#aad5c6ecfa36f28a75d8b4050d4607d1d77a644b" + integrity sha512-oehpfj8tOoFep34uOCABdpsqisg37Htc+DjOu5pT1gtzozReSdahD5dQUKAp/ND/tttdE4SWQUMUVZq6cxvTvw== -"@cspell/cspell-types@^5.21.2": - version "5.21.2" - resolved "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.2.tgz#899b4c41b59ca6e0b81c12f1973fda63535e6f3e" - integrity sha512-g2h4qNR6C53IcSM3KR0DZ9gsqp+2FyKD371htJOmSJGmWb4s45QY0hsPr12A2J8/bT+E3uMtHn9KxJeQ7t0SzA== +"@cspell/cspell-types@^6.0.0": + version "6.0.0" + resolved "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0.tgz#a65aea274438cdbba0c0ef24ba52cd80cd89be9a" + integrity sha512-N8wGQU+n64s3cIMC/5WJzo6UT/Jetxz6oSdOr0SksCHO84I6QR1ORwsXM3ej7x6490uoTM+cf11CSYrw6ma+bg== "@cspell/dict-ada@^2.0.0": version "2.0.0" @@ -1965,41 +1965,41 @@ crypto-random-string@^2.0.0: resolved "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== -cspell-gitignore@^5.21.2: - version "5.21.2" - resolved "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.21.2.tgz#f2e93addbc459098ea2d23cd29d9e645478d6907" - integrity sha512-MdNmRRbglmCi20LU7ORZM1gyPSe1gL+4A8Pn+Jm+W5ropSbotzCqiO8BcyhRMNb3lAdMGGrj7gmYtiQ5C/fXIQ== +cspell-gitignore@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.0.0.tgz#a98a8f5f20e2c8ccab507c9f2ca3658f05a27a7d" + integrity sha512-VngxI9wdb72CWElxGNJQ24MmEewhXNCEkW2Bx5AMOM/vgmuim8JlslEGYWCdN0XqJ4OtOVzIZ2muMV9/Oy5AvQ== dependencies: - cspell-glob "^5.21.2" + cspell-glob "^6.0.0" find-up "^5.0.0" -cspell-glob@^5.21.2: - version "5.21.2" - resolved "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.2.tgz#ef56578b561ab67efd3c2c84c2fbd85a7072ba61" - integrity sha512-AabqzG31UWy4CSz1xJIK4qzXcarxuRFP9OD2EX8iDtEo0tQJLGoTHE+UpNDBPWTHearE0BZPhpMDF/radtZAgw== +cspell-glob@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0.tgz#ccbfcb7f888683afd6453146f42bb848799bf818" + integrity sha512-H0FiYJm5Zv+HzJseRdNwHQMeJBNC8JqAzBw+5dS78RHzDyU8P3XeFEhUEy2baS2od2zxIRPLvL0/8fBXEzxPhQ== dependencies: micromatch "^4.0.5" -cspell-io@^5.21.2: - version "5.21.2" - resolved "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.2.tgz#d9087163b1c8ad11c6f94cb7dddf8c57eb97fabe" - integrity sha512-3J4cLuN59R7ARiRZ8ke5QwlC5uPfzHLVELOtEAmsTIjuUMvr7BpbrdCuTsUvLkAqYE9NA5eqolqQm3GLXnECNw== +cspell-io@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0.tgz#7895eb184ac475e929950497946cfe73f521ad8e" + integrity sha512-pqrBrb7zW7cIopJ1P+LgHflU1bBg2f1SPmThU+Q8jWPshE3twYfdhwsAy13X/92vZFZa2+qZS4ejSpEC6SO9SQ== -cspell-lib@^5.21.2: - version "5.21.2" - resolved "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.2.tgz#77e81b4f134441e11c0434dee7532c00ea116268" - integrity sha512-emAFXtDfs84FoMlhOxZYxYVvbCoCN0LxN0obIRvCsvFCLUPj9y7vHv/Tu/01ZyAPeo2r6gkqhanJpQyoIDA1yg== +cspell-lib@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0.tgz#ff9e2f7cc7ba2289035b423108ef160e5f8c8d3f" + integrity sha512-NuPOO0SPckmRCJy3jWrXc7yVfVFrFM9H/rVWBHK1Z8lPFvAD9Y+/q/+Buw7eYIxpAgX3x/t7HU/Xscf0xIQqsQ== dependencies: - "@cspell/cspell-bundled-dicts" "^5.21.2" - "@cspell/cspell-pipe" "^5.21.2" - "@cspell/cspell-types" "^5.21.2" + "@cspell/cspell-bundled-dicts" "^6.0.0" + "@cspell/cspell-pipe" "^6.0.0" + "@cspell/cspell-types" "^6.0.0" clear-module "^4.1.2" comment-json "^4.2.2" configstore "^5.0.1" cosmiconfig "^7.0.1" - cspell-glob "^5.21.2" - cspell-io "^5.21.2" - cspell-trie-lib "^5.21.2" + cspell-glob "^6.0.0" + cspell-io "^6.0.0" + cspell-trie-lib "^6.0.0" fast-equals "^3.0.2" find-up "^5.0.0" fs-extra "^10.1.0" @@ -2010,26 +2010,26 @@ cspell-lib@^5.21.2: vscode-languageserver-textdocument "^1.0.4" vscode-uri "^3.0.3" -cspell-trie-lib@^5.21.2: - version "5.21.2" - resolved "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.2.tgz#5d00667754c02695a00fc98f2c6bd467f7945951" - integrity sha512-iux2F+85jDlBEJZgikfPT5SUZMwuFjNqEJiO1SO+xfQG+2MFV9CaHTsoRJIGNy3udMm1mw0GMY5UIVAodwlnhg== +cspell-trie-lib@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0.tgz#2752e1b128bfe17d1b7d0ea4ba9507134b5bd06a" + integrity sha512-vrYgxw9pohpoZxZ6AYtTNmx4RcDfCIw1v2s2BpDmLcs0t3Js333YLqjd/B78OHIYjEBcGQgLO9Xl0O32dHXbdA== dependencies: - "@cspell/cspell-pipe" "^5.21.2" + "@cspell/cspell-pipe" "^6.0.0" fs-extra "^10.1.0" gensequence "^3.1.1" -cspell@^5.21.2: - version "5.21.2" - resolved "https://registry.npmjs.org/cspell/-/cspell-5.21.2.tgz#3b147ba49ecdbaa8818d638b71ef142e15ccf303" - integrity sha512-yG14BUumeIcsuSEcM//+9XpbUR6a6FlAxfaVI4e5t6ZZE5tPgDE0PNIVr/jAiLPVm9qUfnq+oNdZE8wmVUbMzw== +cspell@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/cspell/-/cspell-6.0.0.tgz#358da651b061f25f94e52bb1ceae6bfc49c801ba" + integrity sha512-skfNomVlYXGOe4C9wz0O/B8VlZc9GzpW5QDFHaRMYwWEtuyitN5WevuPMc9bkWbVKV8ghn1sXehBzy85V5PXIQ== dependencies: - "@cspell/cspell-pipe" "^5.21.2" + "@cspell/cspell-pipe" "^6.0.0" chalk "^4.1.2" commander "^9.2.0" - cspell-gitignore "^5.21.2" - cspell-glob "^5.21.2" - cspell-lib "^5.21.2" + cspell-gitignore "^6.0.0" + cspell-glob "^6.0.0" + cspell-lib "^6.0.0" fast-json-stable-stringify "^2.1.0" file-entry-cache "^6.0.1" fs-extra "^10.1.0"