@codemirror/autocomplete 6.0.1 → 6.0.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/CHANGELOG.md +6 -0
  2. package/package.json +7 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 6.0.2 (2022-06-15)
2
+
3
+ ### Bug fixes
4
+
5
+ Declare package dependencies as peer dependencies as an attempt to avoid duplicated package issues.
6
+
1
7
  ## 6.0.1 (2022-06-09)
2
8
 
3
9
  ### Bug fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemirror/autocomplete",
3
- "version": "6.0.1",
3
+ "version": "6.0.2",
4
4
  "description": "Autocompletion for the CodeMirror code editor",
5
5
  "scripts": {
6
6
  "test": "cm-runtests",
@@ -31,6 +31,12 @@
31
31
  "@codemirror/view": "^6.0.0",
32
32
  "@lezer/common": "^1.0.0"
33
33
  },
34
+ "peerDependencies": {
35
+ "@codemirror/language": "^6.0.0",
36
+ "@codemirror/state": "^6.0.0",
37
+ "@codemirror/view": "^6.0.0",
38
+ "@lezer/common": "^1.0.0"
39
+ },
34
40
  "devDependencies": {
35
41
  "@codemirror/buildhelper": "^0.1.5"
36
42
  },