Skip to content

Commit

Permalink
Add autochangelog to release command.
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-wu committed May 30, 2023
1 parent fc0e579 commit c57a6a0
Show file tree
Hide file tree
Showing 3 changed files with 105 additions and 3 deletions.
101 changes: 101 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
"start": "vue-cli-service serve",
"release:beta": "npm version prerelease --preid=beta; npm publish --tag beta",
"release:minor": "npm version minor; npm publish",
"release:patch": "npm version patch; npm publish"
"release:patch": "npm version patch; npm publish",
"changelog": "auto-changelog -p --output CHANGELOG.md --template keepachangelog",
"version": "npm run build-bundle;npm run changelog; git add CHANGELOG.md"
},
"dependencies": {
"@abi-software/gallery": "^0.3.3",
Expand All @@ -32,6 +34,7 @@
"@vue/cli-plugin-babel": "^4.5.19",
"@vue/cli-plugin-eslint": "^4.5.19",
"@vue/cli-service": "^4.5.19",
"auto-changelog": "^2.4.0",
"babel-eslint": "^10.0.3",
"babel-plugin-component": "^1.1.1",
"eslint": "^5.16.0",
Expand Down
2 changes: 0 additions & 2 deletions vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ module.exports = {
}
},
css: {
sourceMap: process.env.NODE_ENV === 'wc',
extract: process.env.NODE_ENV !== 'wc',
//Import variables into all stylesheets.
loaderOptions: {
sass: {
Expand Down

0 comments on commit c57a6a0

Please sign in to comment.