Skip to content

Commit c8d2594

Browse files
authored
fix: add autocomplete optional version, upgraded dev deps (#115)
#96 seems to be caused by a specific version of `@codemirror/autocomplete` so we will ask for the fix version and newer as an optional. it could be considered a peer, but technically one could use the library and avoid using autocomplete altogether
1 parent f7bfaee commit c8d2594

File tree

3 files changed

+64
-196
lines changed

3 files changed

+64
-196
lines changed

.changeset/hungry-apricots-hang.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"codemirror-json-schema": patch
3+
---
4+
5+
set @codemirror/autocomplete as an optional peer, at a fix version for a bug with curly braces

package.json

+8-9
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
"yaml": "^2.3.4"
7070
},
7171
"optionalDependencies": {
72+
"@codemirror/autocomplete": "^6.16.1",
7273
"@codemirror/lang-json": "^6.0.1",
7374
"@codemirror/lang-yaml": "^6.0.0",
7475
"codemirror-json5": "^1.0.3",
@@ -83,19 +84,17 @@
8384
},
8485
"devDependencies": {
8586
"@changesets/cli": "^2.26.2",
86-
"@codemirror/autocomplete": "^6.8.1",
87-
"@codemirror/basic-setup": "^0.20.0",
88-
"@codemirror/commands": "^6.2.4",
89-
"@codemirror/language": "^6.8.0",
90-
"@codemirror/lint": "^6.5.0",
91-
"@codemirror/state": "^6.0.0",
87+
"@codemirror/autocomplete": "^6.16.2",
88+
"@codemirror/commands": "^6.5.0",
89+
"@codemirror/language": "^6.10.1",
90+
"@codemirror/lint": "^6.8.0",
91+
"@codemirror/state": "^6.4.1",
9292
"@codemirror/theme-one-dark": "^6.1.2",
93-
"@codemirror/view": "^6.0.0",
93+
"@codemirror/view": "^6.26.3",
9494
"@evilmartians/lefthook": "^1.4.6",
95-
"@lezer/common": "^1.0.3",
95+
"@lezer/common": "^1.2.1",
9696
"@types/markdown-it": "^13.0.7",
9797
"@vitest/coverage-v8": "^0.34.6",
98-
"codemirror": "^6.0.1",
9998
"codemirror-json5": "^1.0.3",
10099
"happy-dom": "^10.3.2",
101100
"json5": "^2.2.3",

0 commit comments

Comments
 (0)