Skip to content

Commit 2b86b2c

Browse files
committedFeb 15, 2025
Fixed types path.
Update dependencies.
1 parent 7f7f942 commit 2b86b2c

File tree

4 files changed

+2961
-1117
lines changed

4 files changed

+2961
-1117
lines changed
 

‎CHANGELOG.md

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

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

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

‎eslint.config.js

+43-28
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import configPrettier from '@vue/eslint-config-prettier';
2-
import { defineConfigWithVueTs, vueTsConfigs } from '@vue/eslint-config-typescript';
2+
import {
3+
defineConfigWithVueTs,
4+
vueTsConfigs,
5+
} from '@vue/eslint-config-typescript';
36

47
import pluginImport from 'eslint-plugin-import';
58
import pluginVue from 'eslint-plugin-vue';
@@ -16,7 +19,7 @@ import pluginVueA11y from 'eslint-plugin-vuejs-accessibility';
1619
export default defineConfigWithVueTs(
1720
{
1821
name: 'app/files-to-lint',
19-
files: ['**/*.{ts,mts,tsx,vue}']
22+
files: ['**/*.{ts,mts,tsx,vue}'],
2023
},
2124
{
2225
name: 'app/files-to-ignore',
@@ -31,38 +34,39 @@ export default defineConfigWithVueTs(
3134
'playwright-report',
3235
'test-results',
3336
'public/',
34-
'src/**/*.generated.*'
35-
]
37+
'src/**/*.generated.*',
38+
'docs',
39+
],
3640
},
3741
pluginVue.configs['flat/recommended'],
3842
...pluginVueA11y.configs['flat/recommended'],
3943
vueTsConfigs.recommended,
4044
{
4145
plugins: {
42-
import: pluginImport
46+
import: pluginImport,
4347
},
4448

4549
settings: {
4650
// This will do the trick
4751
'import/parsers': {
4852
espree: ['.js', '.cjs', '.mjs', '.jsx'],
4953
'@typescript-eslint/parser': ['.ts', '.tsx'],
50-
'vue-eslint-parser': ['.vue']
54+
'vue-eslint-parser': ['.vue'],
5155
},
5256
'import/resolver': {
5357
typescript: true,
5458
node: true,
5559
'eslint-import-resolver-custom-alias': {
5660
alias: {
5761
'@': './src',
58-
'~': './node_modules'
62+
'~': './node_modules',
5963
},
60-
extensions: ['.js', '.ts', '.jsx', '.tsx', '.vue']
61-
}
64+
extensions: ['.js', '.ts', '.jsx', '.tsx', '.vue'],
65+
},
6266
},
6367
vite: {
64-
configPath: './vite.config.ts'
65-
}
68+
configPath: './vite.config.ts',
69+
},
6670
},
6771
rules: {
6872
// ...importPlugin.configs["recommended"].rules,
@@ -71,19 +75,22 @@ export default defineConfigWithVueTs(
7175
'@typescript-eslint/array-type': [
7276
'error',
7377
{
74-
default: 'array'
75-
}
78+
default: 'array',
79+
},
7680
],
7781
// Enable @ts-ignore etc.
7882
'@typescript-eslint/ban-ts-comment': 'off',
7983
// Left-hand side style
80-
'@typescript-eslint/consistent-generic-constructors': ['error', 'type-annotation'],
84+
'@typescript-eslint/consistent-generic-constructors': [
85+
'error',
86+
'type-annotation',
87+
],
8188
// Enable import sort order, see bellow.
8289
'@typescript-eslint/consistent-type-imports': [
8390
'off',
8491
{
85-
prefer: 'type-imports'
86-
}
92+
prefer: 'type-imports',
93+
},
8794
],
8895
// Fix for pinia
8996
'@typescript-eslint/explicit-function-return-type': 'off',
@@ -102,41 +109,49 @@ export default defineConfigWithVueTs(
102109
'import/order': [
103110
'error',
104111
{
105-
groups: ['builtin', 'external', 'parent', 'sibling', 'index', 'object', 'type'],
112+
groups: [
113+
'builtin',
114+
'external',
115+
'parent',
116+
'sibling',
117+
'index',
118+
'object',
119+
'type',
120+
],
106121
pathGroups: [
107122
// Vue Core
108123
{
109124
pattern:
110125
'{vue,vue-router,vuex,@/store,vue-i18n,pinia,vite,vitest,vitest/**,@vitejs/**,@vue/**}',
111126
group: 'external',
112-
position: 'before'
127+
position: 'before',
113128
},
114129
// Internal Codes
115130
{
116131
pattern: '{@/**}',
117132
group: 'internal',
118-
position: 'before'
119-
}
133+
position: 'before',
134+
},
120135
],
121136
pathGroupsExcludedImportTypes: ['builtin'],
122137
alphabetize: {
123-
order: 'asc'
138+
order: 'asc',
124139
},
125-
'newlines-between': 'always'
126-
}
140+
'newlines-between': 'always',
141+
},
127142
],
128143
// A tag with no content should be written like <br />.
129144
'vue/html-self-closing': [
130145
'error',
131146
{
132147
html: {
133-
void: 'always'
134-
}
135-
}
148+
void: 'always',
149+
},
150+
},
136151
],
137152
// Mitigate non-multiword component name errors to warnings.
138-
'vue/multi-word-component-names': 'warn'
139-
}
153+
'vue/multi-word-component-names': 'warn',
154+
},
140155
},
141156
configPrettier
142157
);

‎package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@
3838
"module": "dist/index.es.js",
3939
"jsdelivr": "dist/index.iife.js",
4040
"unpkg": "dist/index.iife.js",
41-
"types": "dist/src/index.d.ts",
41+
"types": "dist/index.d.ts",
4242
"exports": {
4343
".": {
4444
"import": "./dist/index.es.js",
45-
"types": "./dist/src/index.d.ts"
45+
"types": "./dist/index.d.ts"
4646
}
4747
},
4848
"files": [
@@ -54,9 +54,9 @@
5454
"./sfc": "./src/components/CodeMirror.ts"
5555
},
5656
"engines": {
57-
"pnpm": ">=9.15.0"
57+
"pnpm": ">=10.3.0"
5858
},
59-
"packageManager": "pnpm@10.3.0",
59+
"packageManager": "pnpm@10.4.0",
6060
"sideEffects": false,
6161
"scripts": {
6262
"dev": "vite",
@@ -86,25 +86,25 @@
8686
"vue": "^2.7.14 || ^3.4"
8787
},
8888
"devDependencies": {
89-
"@codemirror/autocomplete": "^6.18.5",
89+
"@codemirror/autocomplete": "^6.18.6",
9090
"@codemirror/lang-javascript": "^6.2.3",
9191
"@codemirror/lang-json": "^6.0.1",
9292
"@codemirror/lang-markdown": "^6.3.2",
9393
"@codemirror/lang-vue": "^0.1.3",
9494
"@codemirror/search": "^6.5.9",
9595
"@tsconfig/node-lts": "^22.0.1",
96-
"@types/node": "^22.13.1",
96+
"@types/node": "^22.13.4",
9797
"@vitejs/plugin-vue": "^5.2.1",
9898
"@vue/compiler-sfc": "^3.5.13",
9999
"@vue/eslint-config-prettier": "^10.2.0",
100100
"@vue/eslint-config-typescript": "^14.4.0",
101101
"@vue/test-utils": "^2.4.6",
102102
"@vue/tsconfig": "^0.7.0",
103-
"@vueuse/core": "^12.5.0",
103+
"@vueuse/core": "^12.6.1",
104104
"bootstrap": "^5.3.3",
105105
"eslint": "^9.20.1",
106106
"eslint-import-resolver-custom-alias": "^1.3.2",
107-
"eslint-import-resolver-typescript": "^3.7.0",
107+
"eslint-import-resolver-typescript": "^3.8.0",
108108
"eslint-linter-browserify": "^9.20.1",
109109
"eslint-plugin-import": "^2.31.0",
110110
"eslint-plugin-playwright": "^2.2.0",
@@ -114,10 +114,10 @@
114114
"jiti": "^2.4.2",
115115
"lint-staged": "^15.4.3",
116116
"npm-run-all": "^4.1.5",
117-
"prettier": "^3.5.0",
117+
"prettier": "^3.5.1",
118118
"rimraf": "^6.0.1",
119119
"rollup-plugin-visualizer": "^5.14.0",
120-
"sass": "^1.84.0",
120+
"sass": "^1.85.0",
121121
"supports-color": "^10.0.0",
122122
"typescript": "^5.7.3",
123123
"typescript-eslint": "^8.24.0",

0 commit comments

Comments
 (0)