cspell 6.6.1 → 6.7.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/README.md +12 -0
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -41,6 +41,18 @@ The maintainers of cspell and thousands of other packages are working with Tidel
|
|
|
41
41
|
npm install -g cspell
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
+
### Docker
|
|
45
|
+
|
|
46
|
+
There is a docker image at [Packages for cspell](https://github.com/streetsidesoftware/cspell-cli/pkgs/container/cspell).
|
|
47
|
+
|
|
48
|
+
`cspell` commands below can be run by replacing `cspell` with: `docker run -v -i -t $PWD:/workdir ghcr.io/streetsidesoftware/cspell:latest`
|
|
49
|
+
|
|
50
|
+
Example:
|
|
51
|
+
|
|
52
|
+
```sh
|
|
53
|
+
docker run -v -i -t $PWD:/workdir ghcr.io/streetsidesoftware/cspell:latest lint --help
|
|
54
|
+
```
|
|
55
|
+
|
|
44
56
|
## Basic Usage
|
|
45
57
|
|
|
46
58
|
Example: recursively spell check all JavaScript files in `src`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cspell",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.7.0",
|
|
4
4
|
"description": "A Spelling Checker for Code!",
|
|
5
5
|
"funding": "https://github.com/streetsidesoftware/cspell?sponsor=1",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -70,12 +70,12 @@
|
|
|
70
70
|
},
|
|
71
71
|
"homepage": "https://streetsidesoftware.github.io/cspell/",
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@cspell/cspell-pipe": "^6.
|
|
73
|
+
"@cspell/cspell-pipe": "^6.7.0",
|
|
74
74
|
"chalk": "^4.1.2",
|
|
75
75
|
"commander": "^9.4.0",
|
|
76
|
-
"cspell-gitignore": "^6.
|
|
77
|
-
"cspell-glob": "^6.
|
|
78
|
-
"cspell-lib": "^6.
|
|
76
|
+
"cspell-gitignore": "^6.7.0",
|
|
77
|
+
"cspell-glob": "^6.7.0",
|
|
78
|
+
"cspell-lib": "^6.7.0",
|
|
79
79
|
"fast-json-stable-stringify": "^2.1.0",
|
|
80
80
|
"file-entry-cache": "^6.0.1",
|
|
81
81
|
"fs-extra": "^10.1.0",
|
|
@@ -90,21 +90,21 @@
|
|
|
90
90
|
"node": ">=14"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
|
-
"@cspell/cspell-json-reporter": "^6.
|
|
94
|
-
"@cspell/cspell-types": "^6.
|
|
93
|
+
"@cspell/cspell-json-reporter": "^6.7.0",
|
|
94
|
+
"@cspell/cspell-types": "^6.7.0",
|
|
95
95
|
"@types/file-entry-cache": "^5.0.2",
|
|
96
96
|
"@types/fs-extra": "^9.0.13",
|
|
97
97
|
"@types/glob": "^7.2.0",
|
|
98
98
|
"@types/imurmurhash": "^0.1.1",
|
|
99
99
|
"@types/micromatch": "^4.0.2",
|
|
100
100
|
"@types/minimatch": "^3.0.5",
|
|
101
|
-
"@types/semver": "^7.3.
|
|
101
|
+
"@types/semver": "^7.3.12",
|
|
102
102
|
"jest": "^28.1.3",
|
|
103
103
|
"micromatch": "^4.0.5",
|
|
104
104
|
"minimatch": "^5.1.0",
|
|
105
105
|
"rimraf": "^3.0.2",
|
|
106
|
-
"rollup": "^2.
|
|
106
|
+
"rollup": "^2.78.0",
|
|
107
107
|
"rollup-plugin-dts": "^4.2.2"
|
|
108
108
|
},
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "3a7312a15d2df1507d9e01863ec5842f5a99e0cc"
|
|
110
110
|
}
|