cspell 6.31.1 → 7.0.0-alpha.1

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +13 -13
package/README.md CHANGED
@@ -58,13 +58,13 @@ cspell
58
58
  with:
59
59
 
60
60
  ```
61
- docker run -v -i -t $PWD:/workdir ghcr.io/streetsidesoftware/cspell:latest
61
+ docker run -it -v $PWD:/workdir ghcr.io/streetsidesoftware/cspell:latest
62
62
  ```
63
63
 
64
64
  **Example:**
65
65
 
66
66
  ```sh
67
- docker run -v -i -t $PWD:/workdir ghcr.io/streetsidesoftware/cspell:latest lint --help
67
+ docker run -it -v $PWD:/workdir ghcr.io/streetsidesoftware/cspell:latest lint --help
68
68
  ```
69
69
 
70
70
  ## Basic Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell",
3
- "version": "6.31.1",
3
+ "version": "7.0.0-alpha.1",
4
4
  "description": "A Spelling Checker for Code!",
5
5
  "funding": "https://github.com/streetsidesoftware/cspell?sponsor=1",
6
6
  "bin": {
@@ -88,36 +88,36 @@
88
88
  },
89
89
  "homepage": "https://streetsidesoftware.github.io/cspell/",
90
90
  "dependencies": {
91
- "@cspell/cspell-pipe": "6.31.1",
92
- "@cspell/dynamic-import": "6.31.1",
91
+ "@cspell/cspell-pipe": "7.0.0-alpha.1",
92
+ "@cspell/dynamic-import": "7.0.0-alpha.1",
93
93
  "chalk": "^4.1.2",
94
94
  "commander": "^10.0.0",
95
- "cspell-gitignore": "6.31.1",
96
- "cspell-glob": "6.31.1",
97
- "cspell-io": "6.31.1",
98
- "cspell-lib": "6.31.1",
95
+ "cspell-gitignore": "7.0.0-alpha.1",
96
+ "cspell-glob": "7.0.0-alpha.1",
97
+ "cspell-io": "7.0.0-alpha.1",
98
+ "cspell-lib": "7.0.0-alpha.1",
99
99
  "fast-glob": "^3.2.12",
100
100
  "fast-json-stable-stringify": "^2.1.0",
101
101
  "file-entry-cache": "^6.0.1",
102
102
  "get-stdin": "^8.0.0",
103
103
  "imurmurhash": "^0.1.4",
104
- "semver": "^7.3.8",
104
+ "semver": "^7.4.0",
105
105
  "strip-ansi": "^6.0.1",
106
106
  "vscode-uri": "^3.0.7"
107
107
  },
108
108
  "engines": {
109
- "node": ">=14"
109
+ "node": ">=16"
110
110
  },
111
111
  "devDependencies": {
112
- "@cspell/cspell-json-reporter": "6.31.1",
113
- "@cspell/cspell-types": "6.31.1",
112
+ "@cspell/cspell-json-reporter": "7.0.0-alpha.1",
113
+ "@cspell/cspell-types": "7.0.0-alpha.1",
114
114
  "@types/file-entry-cache": "^5.0.2",
115
115
  "@types/glob": "^8.1.0",
116
116
  "@types/imurmurhash": "^0.1.1",
117
117
  "@types/micromatch": "^4.0.2",
118
118
  "@types/semver": "^7.3.13",
119
119
  "micromatch": "^4.0.5",
120
- "minimatch": "^7.4.3"
120
+ "minimatch": "^7.4.6"
121
121
  },
122
- "gitHead": "43c3652e27588f6643cf78fd764f12f497f89fbf"
122
+ "gitHead": "626d1a01b413c1b6de0b386a5a264b78a10ba146"
123
123
  }