mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-29 12:39:45 +00:00
Add spelling check to GitHub workflow (#3623)
Besides updating cspell and handling spelling issues, the important change is adding the spelling check to the GitHub workflow. I'm not sure if it will bother us too much when people create PRs. But I wanted to give it a try. Or do you have any other ideas on how we can run the spelling check on a regular basis?
This commit is contained in:
parent
0aae771799
commit
6ce3622c61
31
.github/workflows/spellcheck.yaml
vendored
Normal file
31
.github/workflows/spellcheck.yaml
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
# This workflow will run a spellcheck on the codebase.
|
||||
# It runs a few days before each release. At 00:00 on day-of-month 27 in March, June, September, and December.
|
||||
|
||||
name: Run Spellcheck
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 27 3,6,9,12 *"
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
spellcheck:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: develop
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "22"
|
||||
check-latest: true
|
||||
cache: "npm"
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
npm run install-mm:dev
|
||||
- name: Run Spellcheck
|
||||
run: npm run test:spellcheck
|
@ -14,6 +14,7 @@ _This release is scheduled to be released on 2025-01-01._
|
||||
- [core] Add wayland and windows start options to `package.json` (#3594)
|
||||
- [linter] re-added `eslint-plugin-import`now that it supports ESLint v9 (#3586)
|
||||
- [docs] Added step for npm publishing in release process (#3595)
|
||||
- [core] Add GitHub workflow to run spellcheck a few days before each release.
|
||||
|
||||
### Removed
|
||||
|
||||
@ -30,9 +31,9 @@ _This release is scheduled to be released on 2025-01-01._
|
||||
|
||||
- [updatenotification] Fix pm2 using detection when pm2 script is inside or outside MagicMirror root folder (#3576) (#3605)
|
||||
- [core] Fix loading node_helper of modules: avoid black screen, display errors and continue loading with next module (#3578)
|
||||
- [weather] changed default value for weatherEndpoint of provider openweathermap to "/onecall" (#3574)
|
||||
- [tests] fix electron tests with mock dates, the mock on server side was missing (#3597)
|
||||
- [tests] fix testcases with hard coded Date.now (#3597)
|
||||
- [weather] Changed default value for weatherEndpoint of provider openweathermap to "/onecall" (#3574)
|
||||
- [tests] Fix electron tests with mock dates, the mock on server side was missing (#3597)
|
||||
- [tests] Fix test cases with hard coded Date.now (#3597)
|
||||
- [core] Fix missing `basePath` where `location.host` is used (#3613)
|
||||
|
||||
## [2.29.0] - 2024-10-01
|
||||
|
@ -38,6 +38,7 @@
|
||||
"currentweather",
|
||||
"CUSTOMCSS",
|
||||
"customregions",
|
||||
"cxmj",
|
||||
"Cymraeg",
|
||||
"dariom",
|
||||
"darksky",
|
||||
@ -48,6 +49,8 @@
|
||||
"DAYBEFOREYESTERDAY",
|
||||
"defaultmodules",
|
||||
"dgoth",
|
||||
"dkallen",
|
||||
"drivelist",
|
||||
"DTEND",
|
||||
"Duffman",
|
||||
"earlman",
|
||||
@ -79,6 +82,7 @@
|
||||
"fullday",
|
||||
"fullscreen",
|
||||
"Gevoelstemperatuur",
|
||||
"GHSA",
|
||||
"ghsas",
|
||||
"grenagit",
|
||||
"Hirschberger",
|
||||
@ -92,6 +96,7 @@
|
||||
"jakemulley",
|
||||
"jakobsarwary",
|
||||
"jalibu",
|
||||
"jargordon",
|
||||
"jetson",
|
||||
"jkriegshauser",
|
||||
"jsdocs",
|
||||
@ -112,8 +117,10 @@
|
||||
"krekos",
|
||||
"Kristjan",
|
||||
"krukle",
|
||||
"Landis",
|
||||
"larryare",
|
||||
"letsencrypt",
|
||||
"libgpiod",
|
||||
"Lightspeed",
|
||||
"locationforecast",
|
||||
"lockstring",
|
||||
@ -162,6 +169,7 @@
|
||||
"psieg",
|
||||
"radokristof",
|
||||
"rajniszp",
|
||||
"rebuilded",
|
||||
"Reis",
|
||||
"rejas",
|
||||
"Resig",
|
||||
@ -172,6 +180,7 @@
|
||||
"sdetweil",
|
||||
"sendheaders",
|
||||
"serveronly",
|
||||
"skpanagiotis",
|
||||
"SMHI",
|
||||
"Snille",
|
||||
"socketclient",
|
||||
|
218
package-lock.json
generated
218
package-lock.json
generated
@ -32,7 +32,7 @@
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.14.0",
|
||||
"@stylistic/eslint-plugin": "^2.10.1",
|
||||
"cspell": "^8.15.5",
|
||||
"cspell": "^8.15.7",
|
||||
"eslint-plugin-import": "^2.31.0",
|
||||
"eslint-plugin-jest": "^28.8.3",
|
||||
"eslint-plugin-jsdoc": "^50.4.3",
|
||||
@ -702,9 +702,9 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@cspell/cspell-bundled-dicts": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.15.5.tgz",
|
||||
"integrity": "sha512-Su1gnTBbE7ouMQvM4DISUmP6sZiFyQRE+ODvjBzW+c/x9ZLbVp+2hBEEmxFSn5fdZCJzPOMwzwsjlLYykb9iUg==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.15.7.tgz",
|
||||
"integrity": "sha512-lNbrlHhDnOWCJh/vNCliZJz4X1KMEZqWJZpTgmdPrEGS9ZyfEiCmZyoQzw+fauC5Xo7dwd2KdS9VMHftAJqMPQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
@ -713,7 +713,7 @@
|
||||
"@cspell/dict-aws": "^4.0.7",
|
||||
"@cspell/dict-bash": "^4.1.8",
|
||||
"@cspell/dict-companies": "^3.1.7",
|
||||
"@cspell/dict-cpp": "^5.1.23",
|
||||
"@cspell/dict-cpp": "^6.0.0",
|
||||
"@cspell/dict-cryptocurrencies": "^5.0.3",
|
||||
"@cspell/dict-csharp": "^4.0.5",
|
||||
"@cspell/dict-css": "^4.0.16",
|
||||
@ -747,7 +747,7 @@
|
||||
"@cspell/dict-markdown": "^2.0.7",
|
||||
"@cspell/dict-monkeyc": "^1.0.9",
|
||||
"@cspell/dict-node": "^5.0.4",
|
||||
"@cspell/dict-npm": "^5.1.8",
|
||||
"@cspell/dict-npm": "^5.1.9",
|
||||
"@cspell/dict-php": "^4.0.13",
|
||||
"@cspell/dict-powershell": "^5.0.13",
|
||||
"@cspell/dict-public-licenses": "^2.0.11",
|
||||
@ -760,7 +760,7 @@
|
||||
"@cspell/dict-sql": "^2.1.8",
|
||||
"@cspell/dict-svelte": "^1.0.5",
|
||||
"@cspell/dict-swift": "^2.0.4",
|
||||
"@cspell/dict-terraform": "^1.0.5",
|
||||
"@cspell/dict-terraform": "^1.0.6",
|
||||
"@cspell/dict-typescript": "^3.1.11",
|
||||
"@cspell/dict-vue": "^3.0.3"
|
||||
},
|
||||
@ -769,22 +769,22 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@cspell/cspell-json-reporter": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.15.5.tgz",
|
||||
"integrity": "sha512-yXd7KDBfUkA6y+MrOqK3q/UWorZgLIgyCZoFb0Pj67OU2ZMtgJ1VGFXAdzpKAEgEmdcblyoFzHkleYbg08qS6g==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.15.7.tgz",
|
||||
"integrity": "sha512-kOcJaThztX1A8jkALBiAyp8dWrHPMuDOXki8Q5ZG1dL25wKsAnPyqflXhXg6Up4VGVIkkgy1S3T0Q/i+G5f12w==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cspell/cspell-types": "8.15.5"
|
||||
"@cspell/cspell-types": "8.15.7"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/@cspell/cspell-pipe": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-8.15.5.tgz",
|
||||
"integrity": "sha512-X8QY73060hkR8040jabNJsvydeTG0owpqr9S0QJDdhG1z8uzenNcwR3hfwaIwQq5d6sIKcDFZY5qrO4x6eEAMw==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-8.15.7.tgz",
|
||||
"integrity": "sha512-EyVSJPqJFrDA9Sj4Nzx13vytloMS0V3HaevhqMFLHJ53QNz/ZP7vuECbXApRAJwLonuToJBvY3b9xzB6eEhU/A==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
@ -792,9 +792,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@cspell/cspell-resolver": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-8.15.5.tgz",
|
||||
"integrity": "sha512-ejzUGLEwI8TQWXovQzzvAgSNToRrQe3h97YrH2XaB9rZDKkeA7dIBZDQ/OgOfidO+ZAsPIOxdHai3CBzEHYX3A==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-8.15.7.tgz",
|
||||
"integrity": "sha512-9RPZ5VwjYPYLTLWkoPGHqV3Kuai5QwTWgZJW3Yk2GgJkxss/LDsXME+9CalPcPBQpnCIBEOtE2DjDQbFjAiMnA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
@ -805,9 +805,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@cspell/cspell-service-bus": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-8.15.5.tgz",
|
||||
"integrity": "sha512-zZJRRvNhvUJntnw8sX4J5gE4uIHpX2oe+Tqs3lu2vRwogadNEXE4QNJbEQyQqgMePgmqULtRdxSBzG4wy4HoQg==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-8.15.7.tgz",
|
||||
"integrity": "sha512-kL+1+K4VApdwZccGlg7Vjmh4CzzjoT+G556/gErdESQFPY0y9/4OPPVKLrFkbEDODtp9Py7aTRHdhl6w1xxCCw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
@ -815,9 +815,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@cspell/cspell-types": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-8.15.5.tgz",
|
||||
"integrity": "sha512-bMRq9slD/D0vXckxe9vubG02HXrV4cASo6Ytkaw8rTfxMKpkBgxJWjFWphCFLOCICD71q45fUSg+W5vCp83f/Q==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-8.15.7.tgz",
|
||||
"integrity": "sha512-QMbGJsUXTdV8/V9Gsc/kBgdkBwm4hvcChhQf6KE9yeg3CZlbd95NkFJuSiqp1phJOWMTzHCZ0Ro7v7P/LGKdVA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
@ -860,9 +860,9 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@cspell/dict-cpp": {
|
||||
"version": "5.1.23",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-5.1.23.tgz",
|
||||
"integrity": "sha512-59VUam6bYWzn50j8FASWWLww0rBPA0PZfjMZBvvt0aqMpkvXzoJPnAAI4eDDSibPWVHKutjpqLmast+uMLHVsQ==",
|
||||
"version": "6.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-6.0.0.tgz",
|
||||
"integrity": "sha512-z9Mv3/Ool19aw/kl1C+NmLdHF5WN6XCDmP4UkM/sYIfBO4WMUmrhiKiqK/pzSih9jyC5C2AuxujtB/IdHmyfVg==",
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
@ -1111,9 +1111,9 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@cspell/dict-npm": {
|
||||
"version": "5.1.8",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.1.8.tgz",
|
||||
"integrity": "sha512-AJELYXeB4fQdIoNfmuaQxB1Hli3cX6XPsQCjfBxlu0QYXhrjB/IrCLLQAjWIywDqJiWyGUFTz4DqaANm8C/r9Q==",
|
||||
"version": "5.1.9",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.1.9.tgz",
|
||||
"integrity": "sha512-ZH10gepefFee03SYQXH4mMmYbI3iwwEg5+B0ujsUohGJR789SyieelY0xPiDeh1y9gcQAp62k1QxbUwpcCYe5A==",
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
@ -1205,9 +1205,9 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@cspell/dict-terraform": {
|
||||
"version": "1.0.5",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/dict-terraform/-/dict-terraform-1.0.5.tgz",
|
||||
"integrity": "sha512-qH3epPB2d6d5w1l4hR2OsnN8qDQ4P0z6oDB7+YiNH+BoECXv4Z38MIV1H8cxIzD2wkzkt2JTcFYaVW72MDZAlg==",
|
||||
"version": "1.0.6",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/dict-terraform/-/dict-terraform-1.0.6.tgz",
|
||||
"integrity": "sha512-Sqm5vGbXuI9hCFcr4w6xWf4Y25J9SdleE/IqfM6RySPnk8lISEmVdax4k6+Kinv9qaxyvnIbUUN4WFLWcBPQAg==",
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
@ -1226,9 +1226,9 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@cspell/dynamic-import": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-8.15.5.tgz",
|
||||
"integrity": "sha512-xfLRVi8zHKCGK1fg1ixXQ0bAlIU9sGm7xfbTmGG8TQt+iaKHVMIlt+XeCAo0eE7aKjIaIfqcC/PCIdUJiODuGA==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-8.15.7.tgz",
|
||||
"integrity": "sha512-qFlVisdP2lvFcS4Kre4Dl+f4Y7U9w/Y7IQAS+XXl5KlInImMaYhNUDEru8DoUPQHYsXKAPJsu/Y2JloHNE502Q==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
@ -1239,9 +1239,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@cspell/filetypes": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/filetypes/-/filetypes-8.15.5.tgz",
|
||||
"integrity": "sha512-ljEFUp61mw5RWZ3S6ke6rvGKy8m4lZZjRd5KO07RYyGwSeLa4PX9AyTgSzuqXiN9y1BwogD3xolCMfPsMrtZIQ==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/filetypes/-/filetypes-8.15.7.tgz",
|
||||
"integrity": "sha512-MeP6gh8Om9vHSxYoYey2BFCib4m+vEyMLQCSub1Gk+uXiJjj1l/S5MFWM9zHhjGBBNNdvuopuUKP6Gcgcw+3Cw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
@ -1249,9 +1249,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@cspell/strong-weak-map": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-8.15.5.tgz",
|
||||
"integrity": "sha512-7VzDAXsJPDXllTIi9mvQwd7PR43TPk1Ix3ocLTZDVNssf1cQbmLiQX6YWk0k8FWGfIPoIMlByw4tTSizRJcTcw==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-8.15.7.tgz",
|
||||
"integrity": "sha512-SGlkhRnHXoBzLY2SxVppMsREhyaDHpyXQrPDUfsCnyG5DC8UVmXnTVQp9c2kqhAZw6g6g6V7uoqTLqJQmrWOFQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
@ -1259,9 +1259,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@cspell/url": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/url/-/url-8.15.5.tgz",
|
||||
"integrity": "sha512-z8q7LUppFiNvytX2qrKDkXcsmOrwjqFf/5RkcpNppDezLrFejaMZu4BEVNcPrFCeS2J04K+uksNL1LYSob8jCg==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/@cspell/url/-/url-8.15.7.tgz",
|
||||
"integrity": "sha512-IzBsrl54TyO5Ezbyr25ZOUZA3Sg2UbSWDZZar9jSRAsoikcsoy1ivgSumcYJYOH8HAtanfr8YGN0+8UF/kbYqg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
@ -4305,25 +4305,25 @@
|
||||
}
|
||||
},
|
||||
"node_modules/cspell": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/cspell/-/cspell-8.15.5.tgz",
|
||||
"integrity": "sha512-Vp1WI6axghVvenZS7GUlsZf6JFF7jDXdV5f4nXWjrZLbTrH+wbnFEO2mg+QJWa4IN35igjNYeu9TbA9/EGJzog==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/cspell/-/cspell-8.15.7.tgz",
|
||||
"integrity": "sha512-68Bs/brr31M0W6tljNCgHcz09xdfDnRobyyRQJ8z0ZrovfTHHj9gSQldJJt5Fq3AMlCeYbECnKPsY9DkzIP1sQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cspell/cspell-json-reporter": "8.15.5",
|
||||
"@cspell/cspell-pipe": "8.15.5",
|
||||
"@cspell/cspell-types": "8.15.5",
|
||||
"@cspell/dynamic-import": "8.15.5",
|
||||
"@cspell/url": "8.15.5",
|
||||
"@cspell/cspell-json-reporter": "8.15.7",
|
||||
"@cspell/cspell-pipe": "8.15.7",
|
||||
"@cspell/cspell-types": "8.15.7",
|
||||
"@cspell/dynamic-import": "8.15.7",
|
||||
"@cspell/url": "8.15.7",
|
||||
"chalk": "^5.3.0",
|
||||
"chalk-template": "^1.1.0",
|
||||
"commander": "^12.1.0",
|
||||
"cspell-dictionary": "8.15.5",
|
||||
"cspell-gitignore": "8.15.5",
|
||||
"cspell-glob": "8.15.5",
|
||||
"cspell-io": "8.15.5",
|
||||
"cspell-lib": "8.15.5",
|
||||
"cspell-dictionary": "8.15.7",
|
||||
"cspell-gitignore": "8.15.7",
|
||||
"cspell-glob": "8.15.7",
|
||||
"cspell-io": "8.15.7",
|
||||
"cspell-lib": "8.15.7",
|
||||
"fast-json-stable-stringify": "^2.1.0",
|
||||
"file-entry-cache": "^9.1.0",
|
||||
"get-stdin": "^9.0.0",
|
||||
@ -4342,13 +4342,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/cspell-config-lib": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/cspell-config-lib/-/cspell-config-lib-8.15.5.tgz",
|
||||
"integrity": "sha512-16XBjAlUWO46uEuUKHQvSeiU7hQzG9Pqg6lwKQOyZ/rVLZyihk7JGtnWuG83BbW0RFokB/BcgT1q6OegWJiEZw==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/cspell-config-lib/-/cspell-config-lib-8.15.7.tgz",
|
||||
"integrity": "sha512-orxPKLMLQjk+Px1wlZdMElsHlKFGiwlXhQcG/36hODFKsle9DnGqVefOjH6aWFO5DyDF+Z678leiO2F30wtXEQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cspell/cspell-types": "8.15.5",
|
||||
"@cspell/cspell-types": "8.15.7",
|
||||
"comment-json": "^4.2.5",
|
||||
"yaml": "^2.6.0"
|
||||
},
|
||||
@ -4370,15 +4370,15 @@
|
||||
}
|
||||
},
|
||||
"node_modules/cspell-dictionary": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-8.15.5.tgz",
|
||||
"integrity": "sha512-L+4MD3KItFGsxR8eY2ed6InsD7hZU1TIAeV2V4sG0wIbUXJXbPFxBTNZJrPLxTzAeCutHmkZwAl4ZCGu18bgtw==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-8.15.7.tgz",
|
||||
"integrity": "sha512-jmOk9kJ/bsVFg0/ObnNMUHA3wPgHb4eGFx6yF+Lx28eYx9j2XkLZuXXicbNyOWqJ9AzP0CavPmHwAS6bJrxD3Q==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cspell/cspell-pipe": "8.15.5",
|
||||
"@cspell/cspell-types": "8.15.5",
|
||||
"cspell-trie-lib": "8.15.5",
|
||||
"@cspell/cspell-pipe": "8.15.7",
|
||||
"@cspell/cspell-types": "8.15.7",
|
||||
"cspell-trie-lib": "8.15.7",
|
||||
"fast-equals": "^5.0.1"
|
||||
},
|
||||
"engines": {
|
||||
@ -4386,15 +4386,15 @@
|
||||
}
|
||||
},
|
||||
"node_modules/cspell-gitignore": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-8.15.5.tgz",
|
||||
"integrity": "sha512-z5T0Xswfiu2NbkoVdf6uwEWzOgxCBb3L8kwB6lxzK5iyQDW2Bqlk+5b6KQaY38OtjTjJ9zzIJfFN3MfFlMFd3A==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-8.15.7.tgz",
|
||||
"integrity": "sha512-LxX/PS3z6UqXHUqw3wIB1OJwZrexxKn/EUertYcLce/K2M2wLsUA+uneU5EvUqzkM6vwMHvdv/hl/tROFQJIbw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cspell/url": "8.15.5",
|
||||
"cspell-glob": "8.15.5",
|
||||
"cspell-io": "8.15.5",
|
||||
"@cspell/url": "8.15.7",
|
||||
"cspell-glob": "8.15.7",
|
||||
"cspell-io": "8.15.7",
|
||||
"find-up-simple": "^1.0.0"
|
||||
},
|
||||
"bin": {
|
||||
@ -4405,13 +4405,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/cspell-glob": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-8.15.5.tgz",
|
||||
"integrity": "sha512-VpfP16bRbkHEyGGjf6/EifFxETfS7lpcHbYt1tRi6VhCv1FTMqbB7H7Aw+DQkDezOUN8xdw0gYe/fk5AJGOBDg==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-8.15.7.tgz",
|
||||
"integrity": "sha512-BI0mF0IWqVxEGpRkH2kBgT9Ey7lAMlEhvY/zKCy3JQY5PSn/qI3RhlsXrsTDt2RJxhicuzJIe3KiNdUKXQM0Ig==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cspell/url": "8.15.5",
|
||||
"@cspell/url": "8.15.7",
|
||||
"micromatch": "^4.0.8"
|
||||
},
|
||||
"engines": {
|
||||
@ -4419,14 +4419,14 @@
|
||||
}
|
||||
},
|
||||
"node_modules/cspell-grammar": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-8.15.5.tgz",
|
||||
"integrity": "sha512-2YnlSATtWHNL6cgx1qmTsY5ZO0zu8VdEmfcLQKgHr67T7atLRUnWAlmh06WMLd5qqp8PpWNPaOJF2prEYAXsUA==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-8.15.7.tgz",
|
||||
"integrity": "sha512-g7ocpFG9Gam4+b2bHrqhmXVaFNV4BjFjVnaEKS3RoqcMjJuQUa9wD5HWO6AvBJeJf/auvQS7CgmumQqSo9xxCw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cspell/cspell-pipe": "8.15.5",
|
||||
"@cspell/cspell-types": "8.15.5"
|
||||
"@cspell/cspell-pipe": "8.15.7",
|
||||
"@cspell/cspell-types": "8.15.7"
|
||||
},
|
||||
"bin": {
|
||||
"cspell-grammar": "bin.mjs"
|
||||
@ -4436,42 +4436,42 @@
|
||||
}
|
||||
},
|
||||
"node_modules/cspell-io": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-8.15.5.tgz",
|
||||
"integrity": "sha512-6kBK+EGTG9hiUDfB55r3xbhc7YUA5vJTXoc65pe9PXd4vgXXfrPRuy+5VRtvgSMoQj59oWOQw3ZqTAR95gbGnw==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-8.15.7.tgz",
|
||||
"integrity": "sha512-GEnMPu+xyyHTal2QdCbuRrPUEpjCYo0mF/Tz/YkcZNJdn0sj6MylH2EA0A+d6WzheRpw9ijd1dRvq3h5jJgmuQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cspell/cspell-service-bus": "8.15.5",
|
||||
"@cspell/url": "8.15.5"
|
||||
"@cspell/cspell-service-bus": "8.15.7",
|
||||
"@cspell/url": "8.15.7"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/cspell-lib": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-8.15.5.tgz",
|
||||
"integrity": "sha512-DGieMWc82ouHb6Rq2LRKAlG4ExeQL1D5uvemgaouVHMZq4GvPtVaTwA6qHhw772/5z665oOVsRCicYbDtP4V3w==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-8.15.7.tgz",
|
||||
"integrity": "sha512-RxxPEymTENc76f8ny1LN+aPyR4Efwyah8m5c20xOwxD/lAhBrNs2PPE1taEMPkI7WTXWjKm4D0DJpZatD+W6pg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cspell/cspell-bundled-dicts": "8.15.5",
|
||||
"@cspell/cspell-pipe": "8.15.5",
|
||||
"@cspell/cspell-resolver": "8.15.5",
|
||||
"@cspell/cspell-types": "8.15.5",
|
||||
"@cspell/dynamic-import": "8.15.5",
|
||||
"@cspell/filetypes": "8.15.5",
|
||||
"@cspell/strong-weak-map": "8.15.5",
|
||||
"@cspell/url": "8.15.5",
|
||||
"@cspell/cspell-bundled-dicts": "8.15.7",
|
||||
"@cspell/cspell-pipe": "8.15.7",
|
||||
"@cspell/cspell-resolver": "8.15.7",
|
||||
"@cspell/cspell-types": "8.15.7",
|
||||
"@cspell/dynamic-import": "8.15.7",
|
||||
"@cspell/filetypes": "8.15.7",
|
||||
"@cspell/strong-weak-map": "8.15.7",
|
||||
"@cspell/url": "8.15.7",
|
||||
"clear-module": "^4.1.2",
|
||||
"comment-json": "^4.2.5",
|
||||
"cspell-config-lib": "8.15.5",
|
||||
"cspell-dictionary": "8.15.5",
|
||||
"cspell-glob": "8.15.5",
|
||||
"cspell-grammar": "8.15.5",
|
||||
"cspell-io": "8.15.5",
|
||||
"cspell-trie-lib": "8.15.5",
|
||||
"cspell-config-lib": "8.15.7",
|
||||
"cspell-dictionary": "8.15.7",
|
||||
"cspell-glob": "8.15.7",
|
||||
"cspell-grammar": "8.15.7",
|
||||
"cspell-io": "8.15.7",
|
||||
"cspell-trie-lib": "8.15.7",
|
||||
"env-paths": "^3.0.0",
|
||||
"fast-equals": "^5.0.1",
|
||||
"gensequence": "^7.0.0",
|
||||
@ -4486,14 +4486,14 @@
|
||||
}
|
||||
},
|
||||
"node_modules/cspell-trie-lib": {
|
||||
"version": "8.15.5",
|
||||
"resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-8.15.5.tgz",
|
||||
"integrity": "sha512-DAEkp51aFgpp9DFuJkNki0kVm2SVR1Hp0hD3Pnta7S4X2h5424TpTVVPltAIWtcdxRLGbX6N2x26lTI4K/YfpQ==",
|
||||
"version": "8.15.7",
|
||||
"resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-8.15.7.tgz",
|
||||
"integrity": "sha512-b8WWWOx5wfhT72K43fk3dMoE4H2c1UpbCEVB2JXJ5scub7mjqoT/CRiZlw1IDfQT6BmUtJuD7sZ8NRFanF9hQA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cspell/cspell-pipe": "8.15.5",
|
||||
"@cspell/cspell-types": "8.15.5",
|
||||
"@cspell/cspell-pipe": "8.15.7",
|
||||
"@cspell/cspell-types": "8.15.7",
|
||||
"gensequence": "^7.0.0"
|
||||
},
|
||||
"engines": {
|
||||
|
@ -83,7 +83,7 @@
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.14.0",
|
||||
"@stylistic/eslint-plugin": "^2.10.1",
|
||||
"cspell": "^8.15.5",
|
||||
"cspell": "^8.15.7",
|
||||
"eslint-plugin-import": "^2.31.0",
|
||||
"eslint-plugin-jest": "^28.8.3",
|
||||
"eslint-plugin-jsdoc": "^50.4.3",
|
||||
|
Loading…
x
Reference in New Issue
Block a user