Skip to content

Commit

Permalink
Update @codemirror/language, @codemirror/lint, @codemirror/state, @co…
Browse files Browse the repository at this point in the history
…demirror/view.

Update dependencies.
  • Loading branch information
logue committed Jan 5, 2025
1 parent dadab4e commit 916fa98
Show file tree
Hide file tree
Showing 7 changed files with 1,295 additions and 1,118 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

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

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

#### [1.1.11](https://github.com/logue/vue-codemirror6/compare/1.1.3...1.1.11)
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022-2024 Masashi Yoshikawa
Copyright (c) 2022-2025 Masashi Yoshikawa

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -389,5 +389,5 @@ const config: UserConfig = {

## LICENSE

©2022-2024 by Logue.
©2022-2025 by Logue.
Licensed under the [MIT License](LICENSE).
62 changes: 31 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "vue-codemirror6",
"version": "1.3.8",
"version": "1.3.9",
"license": "MIT",
"description": "CodeMirror6 Component for vue2 and vue3.",
"keywords": [
Expand Down Expand Up @@ -40,8 +40,7 @@
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/src/index.d.ts"
"require": "./dist/index.umd.js"
}
},
"files": [
Expand All @@ -53,9 +52,9 @@
"./sfc": "./src/components/CodeMirror.ts"
},
"engines": {
"pnpm": ">=9.14.2"
"pnpm": ">=9.15.0"
},
"packageManager": "pnpm@9.14.2",
"packageManager": "pnpm@9.15.2",
"sideEffects": false,
"scripts": {
"dev": "vite",
Expand All @@ -73,10 +72,10 @@
},
"dependencies": {
"@codemirror/commands": "^6.7.1",
"@codemirror/language": "^6.10.3",
"@codemirror/lint": "^6.8.3",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.35.0",
"@codemirror/language": "^6.10.8",
"@codemirror/lint": "^6.8.4",
"@codemirror/state": "^6.5.0",
"@codemirror/view": "^6.36.1",
"codemirror": "^6.0.1",
"style-mod": "^4.1.2",
"vue-demi": "latest"
Expand All @@ -85,48 +84,49 @@
"vue": "^2.7.14 || ^3.4"
},
"devDependencies": {
"@codemirror/autocomplete": "^6.18.3",
"@codemirror/autocomplete": "^6.18.4",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.3.1",
"@codemirror/lang-vue": "^0.1.3",
"@codemirror/search": "^6.5.8",
"@eslint/js": "^9.15.0",
"@tsconfig/node-lts": "^22.0.0",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@vitejs/plugin-vue": "^5.2.0",
"@eslint/js": "^9.17.0",
"@tsconfig/node-lts": "^22.0.1",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.13",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/tsconfig": "^0.6.0",
"@vueuse/core": "^11.3.0",
"@vue/tsconfig": "^0.7.0",
"@vueuse/core": "^12.3.0",
"bootstrap": "^5.3.3",
"eslint": "^9.15.0",
"eslint": "^9.17.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-linter-browserify": "^9.15.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-linter-browserify": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-plugin-vue": "^9.31.0",
"eslint-plugin-tsdoc": "^0.4.0",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"eslint-plugin-yaml": "^1.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"lint-staged": "^15.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.81.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vite": "^5.4.11",
"rollup-plugin-visualizer": "^5.13.1",
"sass": "^1.83.1",
"supports-color": "^10.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.7",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-dts": "^4.4.0",
"vue": "^3.5.13",
"vue-eslint-parser": "^9.4.3",
"vue-markdown-wasm": "^0.4.0",
"vue-tsc": "^2.1.10"
"vue-tsc": "^2.2.0"
},
"husky": {
"hooks": {
Expand Down
Loading

0 comments on commit 916fa98

Please sign in to comment.