chore: Release automation preparations
This commit is contained in:
parent
b9af1bdab8
commit
65b2ec4cc8
3
.commitlintrc.json
Normal file
3
.commitlintrc.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"extends": ["@commitlint/config-conventional"]
|
||||
}
|
@ -1,5 +1,9 @@
|
||||
.commitlintrc.json
|
||||
.editorconfig
|
||||
.github
|
||||
.gitignore
|
||||
.travis.yml
|
||||
.versionrc.json
|
||||
/storybook
|
||||
/node_modules
|
||||
/build
|
||||
|
12
.versionrc.json
Normal file
12
.versionrc.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"types": [
|
||||
{"type": "feat", "section": "Features"},
|
||||
{"type": "fix", "section": "Fixes"},
|
||||
{"type": "chore", "hidden": true},
|
||||
{"type": "docs", "hidden": true},
|
||||
{"type": "style", "hidden": true},
|
||||
{"type": "refactor", "hidden": true},
|
||||
{"type": "perf", "hidden": true},
|
||||
{"type": "test", "hidden": true}
|
||||
]
|
||||
}
|
@ -25,6 +25,10 @@
|
||||
"build:size": "gzip -c dist/formulario.esm.js | wc -c",
|
||||
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/formulario.umd.js",
|
||||
"lint": "vue-cli-service lint",
|
||||
"release": "standard-version",
|
||||
"release:minor": "standard-version --release-as minor",
|
||||
"release:patch": "standard-version --release-as patch",
|
||||
"release:major": "standard-version --release-as major",
|
||||
"storybook:build": "vue-cli-service storybook:build -c storybook/config",
|
||||
"storybook:serve": "vue-cli-service storybook:serve -p 6006 -c storybook/config",
|
||||
"test": "NODE_ENV=test jest --config test/jest.conf.js",
|
||||
@ -35,6 +39,8 @@
|
||||
"@babel/core": "^7.9.6",
|
||||
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
|
||||
"@babel/preset-env": "^7.9.6",
|
||||
"@commitlint/cli": "^12.1.4",
|
||||
"@commitlint/config-conventional": "^12.1.4",
|
||||
"@rollup/plugin-alias": "^3.1.1",
|
||||
"@rollup/plugin-buble": "^0.21.3",
|
||||
"@rollup/plugin-commonjs": "^11.1.0",
|
||||
@ -80,6 +86,7 @@
|
||||
"rollup-plugin-typescript2": "^0.27.3",
|
||||
"rollup-plugin-vue": "^5.1.7",
|
||||
"sass-loader": "^10.0.3",
|
||||
"standard-version": "^9.3.0",
|
||||
"ts-jest": "^26.4.1",
|
||||
"typescript": "~3.9.3",
|
||||
"vue": "^2.6.11",
|
||||
|
Loading…
Reference in New Issue
Block a user