Skip to content

Commit 6862dc3

Browse files
committed
Update eslint.config.js.
Removed vue-codemirror6 from package.json. Update dependencies.
1 parent e0cce28 commit 6862dc3

File tree

3 files changed

+3034
-1294
lines changed

3 files changed

+3034
-1294
lines changed

eslint.config.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export default tseslint.config(
1515
'.vscode/',
1616
'.yarn/',
1717
'dist/',
18+
'docs/',
1819
'public/',
1920
'src/** /*.generated.*',
2021
'eslint.config.js',
@@ -26,7 +27,11 @@ export default tseslint.config(
2627
{
2728
languageOptions: {
2829
parserOptions: {
29-
project: ['tsconfig.app.json', 'tsconfig.node.json'],
30+
project: [
31+
'tsconfig.app.json',
32+
'tsconfig.node.json',
33+
'tsconfig.docs.json',
34+
],
3035
tsconfigRootDir: import.meta.dirname,
3136
extraFileExtensions: ['.vue'],
3237
ecmaVersion: 'latest',

package.json

+11-12
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.7",
4+
"version": "1.3.8",
55
"license": "MIT",
66
"description": "CodeMirror6 Component for vue2 and vue3.",
77
"keywords": [
@@ -53,9 +53,9 @@
5353
"./sfc": "./src/components/CodeMirror.ts"
5454
},
5555
"engines": {
56-
"pnpm": ">=9.12.3"
56+
"pnpm": ">=9.13.0"
5757
},
58-
"packageManager": "pnpm@9.12.3",
58+
"packageManager": "pnpm@9.13.2",
5959
"sideEffects": false,
6060
"scripts": {
6161
"dev": "vite",
@@ -79,14 +79,13 @@
7979
"@codemirror/view": "^6.34.2",
8080
"codemirror": "^6.0.1",
8181
"style-mod": "^4.1.2",
82-
"vue-codemirror6": "file:",
8382
"vue-demi": "latest"
8483
},
8584
"peerDependencies": {
8685
"vue": "^2.7.14 || ^3.4"
8786
},
8887
"devDependencies": {
89-
"@codemirror/autocomplete": "^6.18.2",
88+
"@codemirror/autocomplete": "^6.18.3",
9089
"@codemirror/lang-javascript": "^6.2.2",
9190
"@codemirror/lang-json": "^6.0.1",
9291
"@codemirror/lang-markdown": "^6.3.1",
@@ -95,11 +94,11 @@
9594
"@eslint/js": "^9.14.0",
9695
"@tsconfig/node-lts": "^22.0.0",
9796
"@types/node": "^22.9.0",
98-
"@typescript-eslint/eslint-plugin": "^8.13.0",
99-
"@vitejs/plugin-vue": "^5.1.4",
97+
"@typescript-eslint/eslint-plugin": "^8.14.0",
98+
"@vitejs/plugin-vue": "^5.2.0",
10099
"@vue/compiler-sfc": "^3.5.12",
101100
"@vue/eslint-config-prettier": "^10.1.0",
102-
"@vue/tsconfig": "^0.5.1",
101+
"@vue/tsconfig": "^0.6.0",
103102
"@vueuse/core": "^11.2.0",
104103
"bootstrap": "^5.3.3",
105104
"eslint": "^9.14.0",
@@ -108,7 +107,7 @@
108107
"eslint-linter-browserify": "^9.14.0",
109108
"eslint-plugin-import": "^2.31.0",
110109
"eslint-plugin-tsdoc": "^0.3.0",
111-
"eslint-plugin-vue": "^9.30.0",
110+
"eslint-plugin-vue": "^9.31.0",
112111
"eslint-plugin-vuejs-accessibility": "^2.4.1",
113112
"eslint-plugin-yaml": "^1.0.3",
114113
"husky": "^9.1.6",
@@ -117,10 +116,10 @@
117116
"prettier": "^3.3.3",
118117
"rimraf": "^6.0.1",
119118
"rollup-plugin-visualizer": "^5.12.0",
120-
"sass": "^1.80.6",
119+
"sass": "^1.80.7",
121120
"typescript": "~5.6.3",
122-
"typescript-eslint": "^8.13.0",
123-
"vite": "^5.4.10",
121+
"typescript-eslint": "^8.14.0",
122+
"vite": "^5.4.11",
124123
"vite-plugin-banner": "^0.8.0",
125124
"vite-plugin-checker": "^0.8.0",
126125
"vite-plugin-dts": "^4.3.0",

0 commit comments

Comments
 (0)