feat: ability to write a changelog
.versionrc
0 → 100644
This diff is collapsed.
... | ... | @@ -43,6 +43,7 @@ |
"autoprefixer": "9.8.6", | ||
"babel-eslint": "^10.1.0", | ||
"commitizen": "^4.2.2", | ||
"cz-conventional-changelog": "^3.3.0", | ||
"eslint": "^7.10.0", | ||
"eslint-config-airbnb-base": "^14.2.0", | ||
"eslint-loader": "^4.0.2", | ||
... | ... | @@ -53,6 +54,7 @@ |
"node-sass": "^4.14.1", | ||
"sass": "^1.26.11", | ||
"sass-loader": "8.0.2", | ||
"standard-version": "^9.0.0", | ||
"stylelint": "^13.7.2", | ||
"stylelint-8-point-grid": "^1.0.0", | ||
"stylelint-config-sass-guidelines": "^7.1.0", | ||
... | ... | @@ -87,6 +89,7 @@ |
"lint": "npm run lint:vue && npm run lint:js && npm run lint:scss && npm run lint:markdown", | ||
"test": "npm run test:unit", | ||
"fix": "npm run fix:vue && npm run fix:js && npm run fix:scss", | ||
"write-changelog": "HUSKY_SKIP_HOOKS=1 standard-version", | ||
"fix:vue": "eslint --fix --ext .vue src", | ||
"fix:js": "eslint --fix --ext .js src", | ||
"fix:scss": "node_modules/.bin/stylelint --fix 'src/**/*.scss'", | ||
... | ... |
Please register or sign in to comment