Skip to content

Commit

Permalink
Update eslint.config.js.
Browse files Browse the repository at this point in the history
Removed vue-codemirror6 from package.json.
Update dependencies.
  • Loading branch information
logue committed Nov 17, 2024
1 parent e0cce28 commit 6862dc3
Show file tree
Hide file tree
Showing 3 changed files with 3,034 additions and 1,294 deletions.
7 changes: 6 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export default tseslint.config(
'.vscode/',
'.yarn/',
'dist/',
'docs/',
'public/',
'src/** /*.generated.*',
'eslint.config.js',
Expand All @@ -26,7 +27,11 @@ export default tseslint.config(
{
languageOptions: {
parserOptions: {
project: ['tsconfig.app.json', 'tsconfig.node.json'],
project: [
'tsconfig.app.json',
'tsconfig.node.json',
'tsconfig.docs.json',
],
tsconfigRootDir: import.meta.dirname,
extraFileExtensions: ['.vue'],
ecmaVersion: 'latest',
Expand Down
23 changes: 11 additions & 12 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.7",
"version": "1.3.8",
"license": "MIT",
"description": "CodeMirror6 Component for vue2 and vue3.",
"keywords": [
Expand Down Expand Up @@ -53,9 +53,9 @@
"./sfc": "./src/components/CodeMirror.ts"
},
"engines": {
"pnpm": ">=9.12.3"
"pnpm": ">=9.13.0"
},
"packageManager": "pnpm@9.12.3",
"packageManager": "pnpm@9.13.2",
"sideEffects": false,
"scripts": {
"dev": "vite",
Expand All @@ -79,14 +79,13 @@
"@codemirror/view": "^6.34.2",
"codemirror": "^6.0.1",
"style-mod": "^4.1.2",
"vue-codemirror6": "file:",
"vue-demi": "latest"
},
"peerDependencies": {
"vue": "^2.7.14 || ^3.4"
},
"devDependencies": {
"@codemirror/autocomplete": "^6.18.2",
"@codemirror/autocomplete": "^6.18.3",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.3.1",
Expand All @@ -95,11 +94,11 @@
"@eslint/js": "^9.14.0",
"@tsconfig/node-lts": "^22.0.0",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@vitejs/plugin-vue": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@vitejs/plugin-vue": "^5.2.0",
"@vue/compiler-sfc": "^3.5.12",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/tsconfig": "^0.5.1",
"@vue/tsconfig": "^0.6.0",
"@vueuse/core": "^11.2.0",
"bootstrap": "^5.3.3",
"eslint": "^9.14.0",
Expand All @@ -108,7 +107,7 @@
"eslint-linter-browserify": "^9.14.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-plugin-vue": "^9.30.0",
"eslint-plugin-vue": "^9.31.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"eslint-plugin-yaml": "^1.0.3",
"husky": "^9.1.6",
Expand All @@ -117,10 +116,10 @@
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.80.6",
"sass": "^1.80.7",
"typescript": "~5.6.3",
"typescript-eslint": "^8.13.0",
"vite": "^5.4.10",
"typescript-eslint": "^8.14.0",
"vite": "^5.4.11",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-dts": "^4.3.0",
Expand Down
Loading

0 comments on commit 6862dc3

Please sign in to comment.