Skip to content

Commit

Permalink
v3.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelklehr committed Apr 25, 2024
1 parent e1fb563 commit 262fea6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [3.6.7] - 2024-04-25

### Fixed

- fix(linting): Make linting work again

### How to update existing projects

```sh
$ cd your-project
$ rm -rf node_modules # Or remove the node_modules folder by hand
$ rm package-lock.json # Or remove the package-lock.json file by hand
$ npm install magpie-base@3.6.x
$ npm install --save-dev @samhammer/vue-cli-plugin-stylelint@5.x
$ npm install --save-dev @vue/cli-plugin-eslint@5.x
```

- In your `eslintrc.js` remove all lines that mention `vue` or `babel-eslint`
- In your `stylelint.config.js` replace `'stylelint-config-standard'` with `'stylelint-config-recommended-vue'`
- Add `eslintrc.js` as the last line to the file `.eslintignore`

## [3.6.2] - 2024-03-17

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "magpie-base",
"version": "3.6.6",
"version": "3.6.7",
"description": "Provides base components for magpie frontend projects",
"author": "magpie project",
"scripts": {
Expand Down

0 comments on commit 262fea6

Please sign in to comment.