Skip to content

Commit e6d161a

Browse files
committed
chore: bump dev deps and vue version
1 parent dd2164b commit e6d161a

12 files changed

+23414
-10837
lines changed

Diff for: .eslintrc.js

+12-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
node: true,
55
},
66
plugins: ["prettier"],
7-
extends: ["plugin:vue/essential", "@vue/airbnb", "plugin:prettier/recommended"],
7+
extends: ["plugin:vue/vue3-essential", "eslint:recommended", "plugin:prettier/recommended"],
88
rules: {
99
"prettier/prettier": "warn",
1010
"no-console": process.env.NODE_ENV === "production" ? "error" : "warn",
@@ -16,8 +16,18 @@ module.exports = {
1616
"guard-for-in": "off",
1717
"no-case-declarations": "off",
1818
"no-use-before-define": "off",
19+
"vue/multi-word-component-names": 0,
20+
"no-promise-executor-return": 0,
1921
},
22+
overrides: [
23+
{
24+
files: ["**/__tests__/*.{j,t}s?(x)", "**/tests/unit/**/*.spec.{j,t}s?(x)"],
25+
env: {
26+
mocha: true,
27+
},
28+
},
29+
],
2030
parserOptions: {
21-
parser: "babel-eslint",
31+
parser: "@babel/eslint-parser",
2232
},
2333
};

Diff for: CHANGELOG.md

+26-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

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

10+
### [Unreleased](https://github.com/setaman/vue-ellipse-progress/compare/v2.1.0...HEAD)
11+
12+
13+
14+
15+
#### Merged
16+
17+
- Fix legendHeight setter in mount [`#170`](https://github.com/setaman/vue-ellipse-progress/pull/170)
18+
- V2 dev add commitlint and husky [`#171`](https://github.com/setaman/vue-ellipse-progress/pull/171)
19+
20+
21+
#### Commits (4)
22+
23+
24+
25+
26+
##### 📜 Misc
27+
28+
- docs: prepare release [`f7df71f`](https://github.com/setaman/vue-ellipse-progress/commit/f7df71fa4ffe23b34135a5d76ca2cf79509bb559)
29+
- chore: add husky [`0e0a690`](https://github.com/setaman/vue-ellipse-progress/commit/0e0a6909319f1bc06468e9e1e337e9cf54e51b25)
30+
- chore: adjust commitlint config [`ebd5e4d`](https://github.com/setaman/vue-ellipse-progress/commit/ebd5e4db4ec0c1ecb7d2edb7014d1f35f6b55b1a)
31+
- chore: minor configuration improvements [`8ab40a1`](https://github.com/setaman/vue-ellipse-progress/commit/8ab40a197233df03ddead947e7b7721b36b32650)
32+
33+
---
34+
1035
### [v2.1.0](https://github.com/setaman/vue-ellipse-progress/compare/v2.0.0...v2.1.0)
1136

1237
> 15 January 2022
@@ -297,7 +322,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
297322

298323
---
299324

300-
### [v2.0.0-alpha.4](https://github.com/setaman/vue-ellipse-progress/compare/v1.3.0...v2.0.0-alpha.4)
325+
### [v2.0.0-alpha.4](https://github.com/setaman/vue-ellipse-progress/compare/v1.3.1...v2.0.0-alpha.4)
301326

302327
> 30 October 2020
303328

Diff for: babel.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = {
2-
presets: ["@vue/app"],
2+
presets: ["@vue/cli-plugin-babel/preset"],
33
};

0 commit comments

Comments
 (0)