Skip to content

v3.6.0

Compare
Choose a tag to compare
@marcelklehr marcelklehr released this 01 Jun 18:18
· 6 commits to develop since this release

New

  • Upgrade to webpack v5 and support Node v18

How to update existing projects

$ 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.