-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53f37d6
commit 7438e3f
Showing
3 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
# Changelog | ||
|
||
## [3.6.0] - 2023-06-01 | ||
|
||
### New | ||
- Upgrade to webpack v5 and support Node v18 | ||
|
||
### How to update existing projects | ||
|
||
```sh | ||
$ cd your-project | ||
$ 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 | ||
$ 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" | ||
$ 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 [email protected] | ||
``` | ||
|
||
Read more on [maintaining npm dependencies](https://www.carlrippon.com/upgrading-npm-dependencies/). | ||
|
||
## 3.5.0 | ||
|
||
### New | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters