Skip to content

Commit 916fa98

Browse files
committed
Update @codemirror/language, @codemirror/lint, @codemirror/state, @codemirror/view.
Update dependencies.
1 parent dadab4e commit 916fa98

File tree

7 files changed

+1295
-1118
lines changed

7 files changed

+1295
-1118
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

77
#### [1.3.8](https://github.com/logue/vue-codemirror6/compare/1.1.16...1.3.8)
88

9-
- Fix sample code syntax error [`#47`](https://github.com/logue/vue-codemirror6/pull/47)
9+
- Fix sample code syntax error [`#47`](https://github.com/logue/vue-codemirror6/pull/47)
1010
- chore: demo docs [`#43`](https://github.com/logue/vue-codemirror6/pull/43)
1111
- fix: editor not update content when `modelValue` change and selection is out of range [`#44`](https://github.com/logue/vue-codemirror6/pull/44)
1212
- chore: props and readme doc [`#31`](https://github.com/logue/vue-codemirror6/pull/31)
@@ -38,7 +38,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
3838
3939
- chore(CODEOWNERS): CODEOWNERS.com Bot, at your service! [`#14`](https://github.com/logue/vue-codemirror6/pull/14)
4040
- Update demo code. (Replaced @codemirror/html to @codemirror/vue.) [`8da1a8a`](https://github.com/logue/vue-codemirror6/commit/8da1a8a4e37d713cc78281ce9c304c42a06940dc)
41-
- Changed implementation to generate *.d.ts with vite-plugin-dts. [`1caaa20`](https://github.com/logue/vue-codemirror6/commit/1caaa20b1423a3d252a6c770a630fb60e2e3440d)
41+
- Changed implementation to generate \*.d.ts with vite-plugin-dts. [`1caaa20`](https://github.com/logue/vue-codemirror6/commit/1caaa20b1423a3d252a6c770a630fb60e2e3440d)
4242
- Update README.md. [`f8dd493`](https://github.com/logue/vue-codemirror6/commit/f8dd4934a7b9cc089cd830473db5250d28b3389b)
4343

4444
#### [1.1.11](https://github.com/logue/vue-codemirror6/compare/1.1.3...1.1.11)

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022-2024 Masashi Yoshikawa
3+
Copyright (c) 2022-2025 Masashi Yoshikawa
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -389,5 +389,5 @@ const config: UserConfig = {
389389

390390
## LICENSE
391391

392-
©2022-2024 by Logue.
392+
©2022-2025 by Logue.
393393
Licensed under the [MIT License](LICENSE).

package.json

+31-31
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "vue-codemirror6",
4-
"version": "1.3.8",
4+
"version": "1.3.9",
55
"license": "MIT",
66
"description": "CodeMirror6 Component for vue2 and vue3.",
77
"keywords": [
@@ -40,8 +40,7 @@
4040
"exports": {
4141
".": {
4242
"import": "./dist/index.es.js",
43-
"require": "./dist/index.umd.js",
44-
"types": "./dist/src/index.d.ts"
43+
"require": "./dist/index.umd.js"
4544
}
4645
},
4746
"files": [
@@ -53,9 +52,9 @@
5352
"./sfc": "./src/components/CodeMirror.ts"
5453
},
5554
"engines": {
56-
"pnpm": ">=9.14.2"
55+
"pnpm": ">=9.15.0"
5756
},
58-
"packageManager": "pnpm@9.14.2",
57+
"packageManager": "pnpm@9.15.2",
5958
"sideEffects": false,
6059
"scripts": {
6160
"dev": "vite",
@@ -73,10 +72,10 @@
7372
},
7473
"dependencies": {
7574
"@codemirror/commands": "^6.7.1",
76-
"@codemirror/language": "^6.10.3",
77-
"@codemirror/lint": "^6.8.3",
78-
"@codemirror/state": "^6.4.1",
79-
"@codemirror/view": "^6.35.0",
75+
"@codemirror/language": "^6.10.8",
76+
"@codemirror/lint": "^6.8.4",
77+
"@codemirror/state": "^6.5.0",
78+
"@codemirror/view": "^6.36.1",
8079
"codemirror": "^6.0.1",
8180
"style-mod": "^4.1.2",
8281
"vue-demi": "latest"
@@ -85,48 +84,49 @@
8584
"vue": "^2.7.14 || ^3.4"
8685
},
8786
"devDependencies": {
88-
"@codemirror/autocomplete": "^6.18.3",
87+
"@codemirror/autocomplete": "^6.18.4",
8988
"@codemirror/lang-javascript": "^6.2.2",
9089
"@codemirror/lang-json": "^6.0.1",
9190
"@codemirror/lang-markdown": "^6.3.1",
9291
"@codemirror/lang-vue": "^0.1.3",
9392
"@codemirror/search": "^6.5.8",
94-
"@eslint/js": "^9.15.0",
95-
"@tsconfig/node-lts": "^22.0.0",
96-
"@types/node": "^22.9.1",
97-
"@typescript-eslint/eslint-plugin": "^8.15.0",
98-
"@vitejs/plugin-vue": "^5.2.0",
93+
"@eslint/js": "^9.17.0",
94+
"@tsconfig/node-lts": "^22.0.1",
95+
"@types/node": "^22.10.5",
96+
"@typescript-eslint/eslint-plugin": "^8.19.0",
97+
"@vitejs/plugin-vue": "^5.2.1",
9998
"@vue/compiler-sfc": "^3.5.13",
10099
"@vue/eslint-config-prettier": "^10.1.0",
101-
"@vue/tsconfig": "^0.6.0",
102-
"@vueuse/core": "^11.3.0",
100+
"@vue/tsconfig": "^0.7.0",
101+
"@vueuse/core": "^12.3.0",
103102
"bootstrap": "^5.3.3",
104-
"eslint": "^9.15.0",
103+
"eslint": "^9.17.0",
105104
"eslint-import-resolver-alias": "^1.1.2",
106-
"eslint-import-resolver-typescript": "^3.6.3",
107-
"eslint-linter-browserify": "^9.15.0",
105+
"eslint-import-resolver-typescript": "^3.7.0",
106+
"eslint-linter-browserify": "^9.17.0",
108107
"eslint-plugin-import": "^2.31.0",
109-
"eslint-plugin-tsdoc": "^0.3.0",
110-
"eslint-plugin-vue": "^9.31.0",
108+
"eslint-plugin-tsdoc": "^0.4.0",
109+
"eslint-plugin-vue": "^9.32.0",
111110
"eslint-plugin-vuejs-accessibility": "^2.4.1",
112111
"eslint-plugin-yaml": "^1.0.3",
113112
"husky": "^9.1.7",
114-
"lint-staged": "^15.2.10",
113+
"lint-staged": "^15.3.0",
115114
"npm-run-all": "^4.1.5",
116-
"prettier": "^3.3.3",
115+
"prettier": "^3.4.2",
117116
"rimraf": "^6.0.1",
118-
"rollup-plugin-visualizer": "^5.12.0",
119-
"sass": "^1.81.0",
120-
"typescript": "^5.6.3",
121-
"typescript-eslint": "^8.15.0",
122-
"vite": "^5.4.11",
117+
"rollup-plugin-visualizer": "^5.13.1",
118+
"sass": "^1.83.1",
119+
"supports-color": "^10.0.0",
120+
"typescript": "^5.7.2",
121+
"typescript-eslint": "^8.19.0",
122+
"vite": "^6.0.7",
123123
"vite-plugin-banner": "^0.8.0",
124124
"vite-plugin-checker": "^0.8.0",
125-
"vite-plugin-dts": "^4.3.0",
125+
"vite-plugin-dts": "^4.4.0",
126126
"vue": "^3.5.13",
127127
"vue-eslint-parser": "^9.4.3",
128128
"vue-markdown-wasm": "^0.4.0",
129-
"vue-tsc": "^2.1.10"
129+
"vue-tsc": "^2.2.0"
130130
},
131131
"husky": {
132132
"hooks": {

0 commit comments

Comments
 (0)