Skip to content

Commit

Permalink
Merge pull request #175 from setaman/v2-dev-bump-dev-deps
Browse files Browse the repository at this point in the history
chore: bump dev deps and vue version
  • Loading branch information
setaman committed Apr 14, 2022
2 parents dd2164b + e6d161a commit 71f0011
Show file tree
Hide file tree
Showing 12 changed files with 23,414 additions and 10,837 deletions.
14 changes: 12 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
node: true,
},
plugins: ["prettier"],
extends: ["plugin:vue/essential", "@vue/airbnb", "plugin:prettier/recommended"],
extends: ["plugin:vue/vue3-essential", "eslint:recommended", "plugin:prettier/recommended"],
rules: {
"prettier/prettier": "warn",
"no-console": process.env.NODE_ENV === "production" ? "error" : "warn",
Expand All @@ -16,8 +16,18 @@ module.exports = {
"guard-for-in": "off",
"no-case-declarations": "off",
"no-use-before-define": "off",
"vue/multi-word-component-names": 0,
"no-promise-executor-return": 0,
},
overrides: [
{
files: ["**/__tests__/*.{j,t}s?(x)", "**/tests/unit/**/*.spec.{j,t}s?(x)"],
env: {
mocha: true,
},
},
],
parserOptions: {
parser: "babel-eslint",
parser: "@babel/eslint-parser",
},
};
27 changes: 26 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

### [Unreleased](https://github.com/setaman/vue-ellipse-progress/compare/v2.1.0...HEAD)




#### Merged

- Fix legendHeight setter in mount [`#170`](https://github.com/setaman/vue-ellipse-progress/pull/170)
- V2 dev add commitlint and husky [`#171`](https://github.com/setaman/vue-ellipse-progress/pull/171)


#### Commits (4)




##### 📜 Misc

- docs: prepare release [`f7df71f`](https://github.com/setaman/vue-ellipse-progress/commit/f7df71fa4ffe23b34135a5d76ca2cf79509bb559)
- chore: add husky [`0e0a690`](https://github.com/setaman/vue-ellipse-progress/commit/0e0a6909319f1bc06468e9e1e337e9cf54e51b25)
- chore: adjust commitlint config [`ebd5e4d`](https://github.com/setaman/vue-ellipse-progress/commit/ebd5e4db4ec0c1ecb7d2edb7014d1f35f6b55b1a)
- chore: minor configuration improvements [`8ab40a1`](https://github.com/setaman/vue-ellipse-progress/commit/8ab40a197233df03ddead947e7b7721b36b32650)

---

### [v2.1.0](https://github.com/setaman/vue-ellipse-progress/compare/v2.0.0...v2.1.0)

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

---

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

> 30 October 2020
Expand Down
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
presets: ["@vue/app"],
presets: ["@vue/cli-plugin-babel/preset"],
};
Loading

0 comments on commit 71f0011

Please sign in to comment.