cspell 8.8.0 → 8.8.2

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 -6
  2. package/package.json +18 -18
package/README.md CHANGED
@@ -45,7 +45,7 @@ The maintainers of cspell and thousands of other packages are working with Tidel
45
45
 
46
46
  ## Installation
47
47
 
48
- ```sh
48
+ ```sh npm2yarn
49
49
  npm install -g cspell
50
50
  ```
51
51
 
@@ -776,11 +776,7 @@ Example:
776
776
 
777
777
  ---
778
778
 
779
- <p align="center">
780
- Brought to you by <a href="https://streetsidesoftware.com" title="Street Side Software">
781
- <img width="16" alt="Street Side Software Logo" src="https://i.imgur.com/CyduuVY.png" /> Street Side Software
782
- </a>
783
- </p>
779
+ <p align="center">Brought to you by<a href="https://streetsidesoftware.com" title="Street Side Software"><img width="16" alt="Street Side Software Logo" src="https://i.imgur.com/CyduuVY.png" /> Street Side Software</a></p>
784
780
 
785
781
  <!--- @@inject-end: ../../static/footer.md --->
786
782
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell",
3
- "version": "8.8.0",
3
+ "version": "8.8.2",
4
4
  "description": "A Spelling Checker for Code!",
5
5
  "funding": "https://github.com/streetsidesoftware/cspell?sponsor=1",
6
6
  "bin": {
@@ -40,11 +40,11 @@
40
40
  ],
41
41
  "scripts": {
42
42
  "clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
43
- "build": "tsc -b . && ts2mjs dist/esm && pnpm run build:api",
43
+ "build": "tsc -b . -f && ts2mjs dist/esm && pnpm run build:api",
44
44
  "build:api": "rollup -c rollup.config.mjs",
45
- "build:esm": "tsc -b tsconfig.esm.json",
45
+ "build:esm": "tsc -b tsconfig.esm.json -f",
46
46
  "build:esm:ts2mjs": "tsc -b tsconfig.esm.json && ts2mjs dist/esm",
47
- "build:lib": "tsc -b src/lib/tsconfig.json",
47
+ "build:lib": "tsc -b src/lib/tsconfig.json -f",
48
48
  "build:readme": "pnpm build:readme:help",
49
49
  "build:readme:help": "pnpm build:readme:help:lint && pnpm build:readme:help:trace && inject-markdown README.md && prettier -w README.md",
50
50
  "build:readme:help:lint": "./bin.mjs lint --help > static/help-lint.txt",
@@ -53,8 +53,8 @@
53
53
  "coverage": "vitest run --coverage",
54
54
  "test:watch": "vitest",
55
55
  "test": "vitest run",
56
- "watch": "tsc -b . -w",
57
- "compile": "tsc -p .",
56
+ "watch": "tsc -b . -w -f",
57
+ "compile": "tsc -b . -f",
58
58
  "test-watch": "vitest",
59
59
  "prepublishOnly": "pnpm run clean-build",
60
60
  "test:update-snapshot": "vitest run --update"
@@ -82,22 +82,22 @@
82
82
  },
83
83
  "homepage": "https://streetsidesoftware.github.io/cspell/",
84
84
  "dependencies": {
85
- "@cspell/cspell-json-reporter": "8.8.0",
86
- "@cspell/cspell-pipe": "8.8.0",
87
- "@cspell/cspell-types": "8.8.0",
88
- "@cspell/dynamic-import": "8.8.0",
85
+ "@cspell/cspell-json-reporter": "8.8.2",
86
+ "@cspell/cspell-pipe": "8.8.2",
87
+ "@cspell/cspell-types": "8.8.2",
88
+ "@cspell/dynamic-import": "8.8.2",
89
89
  "chalk": "^5.3.0",
90
90
  "chalk-template": "^1.1.0",
91
- "commander": "^12.0.0",
92
- "cspell-gitignore": "8.8.0",
93
- "cspell-glob": "8.8.0",
94
- "cspell-io": "8.8.0",
95
- "cspell-lib": "8.8.0",
91
+ "commander": "^12.1.0",
92
+ "cspell-gitignore": "8.8.2",
93
+ "cspell-glob": "8.8.2",
94
+ "cspell-io": "8.8.2",
95
+ "cspell-lib": "8.8.2",
96
96
  "fast-glob": "^3.3.2",
97
97
  "fast-json-stable-stringify": "^2.1.0",
98
98
  "file-entry-cache": "^8.0.0",
99
99
  "get-stdin": "^9.0.0",
100
- "semver": "^7.6.0",
100
+ "semver": "^7.6.2",
101
101
  "strip-ansi": "^7.1.0",
102
102
  "vscode-uri": "^3.0.8"
103
103
  },
@@ -109,8 +109,8 @@
109
109
  "@types/glob": "^8.1.0",
110
110
  "@types/micromatch": "^4.0.7",
111
111
  "@types/semver": "^7.5.8",
112
- "micromatch": "^4.0.5",
112
+ "micromatch": "^4.0.7",
113
113
  "minimatch": "^9.0.4"
114
114
  },
115
- "gitHead": "a42bce675c00cb2d51809b3ae3894119ea4f5ce7"
115
+ "gitHead": "e82ec807677c040c38b7d5608c8a8d42185d3b24"
116
116
  }