Skip to content

Commit c634b55

Browse files
committed
Fix for #11
Update dependencies. Fixed eslint import configure.
1 parent 903af1f commit c634b55

File tree

6 files changed

+120
-129
lines changed

6 files changed

+120
-129
lines changed

.eslintignore

-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@
44
dist/
55
public/assets/
66
docs/
7-
dev/helpers/markdown.js

.eslintrc.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,12 @@ settings:
5454
- .ts
5555
- .tsx
5656
import/resolver:
57-
typescript: {}
57+
typescript: true
58+
node: true
5859
alias:
5960
map:
6061
- ['@', './src']
62+
- ['~', './node_modules']
6163
extensions:
6264
- .js
6365
- .ts

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [1.1.4](https://github.com/logue/vue-codemirror6/compare/1.1.4...1.1.4)
8+
9+
> 12 January 2023
10+
11+
- Update dependencies. [`febe5f1`](https://github.com/logue/vue-codemirror6/commit/febe5f1822d86a8e30d38fc6440b13209b41186d)
12+
- release v1.1.2 [`903af1f`](https://github.com/logue/vue-codemirror6/commit/903af1fcf128ea7958ca9ae40fc97f062d8696d1)
13+
714
#### [1.1.3](https://github.com/logue/vue-codemirror6/compare/1.1.2...1.1.3)
815

16+
> 9 January 2023
17+
918
- Bump json5 from 1.0.1 to 1.0.2 [`#10`](https://github.com/logue/vue-codemirror6/pull/10)
1019
- Consolidated demo code generation settings into a single vite.config.ts [`7fe3ad2`](https://github.com/logue/vue-codemirror6/commit/7fe3ad25676eb34844b7bfe64b5dc73f30211a5b)
1120
- Update dependencies. [`75b984e`](https://github.com/logue/vue-codemirror6/commit/75b984e38c13114ce30b853fba64493c55368be3)

LICENSE

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

3-
Copyright (c) 2022 Masashi Yoshikawa
3+
Copyright (c) 2022-2023 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

package.json

+8-7
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.1.3",
4+
"version": "1.1.4",
55
"license": "MIT",
66
"description": "CodeMirror6 Component for vue2 and vue3.",
77
"keywords": [
@@ -75,8 +75,6 @@
7575
},
7676
"dependencies": {
7777
"codemirror": "^6.0.1",
78-
"lodash.compact": "^3.0.1",
79-
"lodash.trim": "^4.5.1",
8078
"vue-demi": "latest"
8179
},
8280
"peerDependencies": {
@@ -94,8 +92,8 @@
9492
"@codemirror/lang-markdown": "^6.0.5",
9593
"@types/lodash": "^4.14.191",
9694
"@types/node": "^18.11.18",
97-
"@typescript-eslint/eslint-plugin": "^5.48.0",
98-
"@typescript-eslint/parser": "^5.48.0",
95+
"@typescript-eslint/eslint-plugin": "^5.48.1",
96+
"@typescript-eslint/parser": "^5.48.1",
9997
"@vitejs/plugin-vue": "^4.0.0",
10098
"@vue/eslint-config-prettier": "^7.0.0",
10199
"@vue/tsconfig": "^0.1.3",
@@ -104,10 +102,10 @@
104102
"eslint-config-google": "^0.14.0",
105103
"eslint-config-prettier": "^8.6.0",
106104
"eslint-import-resolver-alias": "^1.1.2",
107-
"eslint-import-resolver-typescript": "^3.5.2",
105+
"eslint-import-resolver-typescript": "^3.5.3",
108106
"eslint-linter-browserify": "^8.31.0",
109107
"eslint-plugin-html": "^7.1.0",
110-
"eslint-plugin-import": "^2.26.0",
108+
"eslint-plugin-import": "^2.27.2",
111109
"eslint-plugin-jsdoc": "^39.6.4",
112110
"eslint-plugin-prettier": "^4.2.1",
113111
"eslint-plugin-tsdoc": "^0.2.17",
@@ -138,5 +136,8 @@
138136
"lint-staged": {
139137
"*.{js,ts,json,htm,html}": "eslint --fix --cache --cache-location ./node_modules/.vite/vite-plugin-eslint",
140138
"*": "prettier -w -u"
139+
},
140+
"resolutions": {
141+
"json5": "^2.2.3"
141142
}
142143
}

0 commit comments

Comments
 (0)