Skip to content

Commit 7438e3f

Browse files
committed
v3.6.0
1 parent 53f37d6 commit 7438e3f

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## [3.6.0] - 2023-06-01
4+
5+
### New
6+
- Upgrade to webpack v5 and support Node v18
7+
8+
### How to update existing projects
9+
10+
```sh
11+
$ cd your-project
12+
$ npm uninstall babel-eslint eslint eslint-config-prettier eslint-plugin-prettier eslint-plugin-vue prettier stylelint @samhammer/vue-cli-plugin-stylelint @vue/cli-plugin-eslint stylelint-config-standard
13+
$ sed -i 's#"node": ".*"#"node": "14.x || 16.x || 18.x"#' package.json # Or if this doesn't work, replace the engines -> node value in your package.json with "14.x || 16.x || 18.x"
14+
$ rm -rf node_modules # Or remove the node_modules folder by hand
15+
$ rm package-lock.json # Or remove the package-lock.json file by hand
16+
$ npm install magpie-base@3.6.x
17+
```
18+
19+
Read more on [maintaining npm dependencies](https://www.carlrippon.com/upgrading-npm-dependencies/).
20+
321
## 3.5.0
422

523
### New

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "magpie-base",
3-
"version": "3.6.0-beta.1",
3+
"version": "3.6.0",
44
"description": "Provides base components for magpie frontend projects",
55
"author": "magpie project",
66
"scripts": {

0 commit comments

Comments
 (0)