chore: Added standart-release tool

This commit is contained in:
Zaytsev Kirill 2021-11-17 15:46:02 +03:00
parent 0df8e0a745
commit 2df7e7ea25
3 changed files with 820 additions and 15 deletions

12
.versionrc.json Normal file
View File

@ -0,0 +1,12 @@
{
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Fixes"},
{"type": "perf", "section": "Performance"},
{"type": "chore", "hidden": true},
{"type": "docs", "hidden": true},
{"type": "style", "hidden": true},
{"type": "refactor", "hidden": true},
{"type": "test", "hidden": true}
]
}

View File

@ -29,6 +29,7 @@
"jsdom": "^16.7.0", "jsdom": "^16.7.0",
"json5": "^2.2.0", "json5": "^2.2.0",
"memory-fs": "^0.5.0", "memory-fs": "^0.5.0",
"standard-version": "^9.3.2",
"vue": "^2.6.14", "vue": "^2.6.14",
"vue-i18n": "^8.26.7", "vue-i18n": "^8.26.7",
"vue-loader": "^15.9.8", "vue-loader": "^15.9.8",
@ -37,6 +38,10 @@
"webpack-sources": "^1.4.1" "webpack-sources": "^1.4.1"
}, },
"scripts": { "scripts": {
"test": "NODE_ENV=test jest --config ./jest.conf.js" "test": "NODE_ENV=test jest --config ./jest.conf.js",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
} }
} }

816
yarn.lock

File diff suppressed because it is too large Load Diff