chore: added standard-version

This commit is contained in:
Corentin Thomasset 2022-04-16 13:41:10 +02:00
parent 82606f6a47
commit db21c5a1be
No known key found for this signature in database
GPG Key ID: DBD997E935996158
3 changed files with 2696 additions and 2 deletions

14
.versionrc Normal file
View File

@ -0,0 +1,14 @@
{
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "docs", "section": "Documentation"},
{"type": "style", "section": "Styling"},
{"type": "refactor", "section": "Refactors"},
{"type": "perf", "section": "Performance"},
{"type": "test", "section": "Tests"},
{"type": "build", "section": "Build System"},
{"type": "ci", "section": "CI"},
{"type": "revert", "section": "Reverts"}
]
}

2678
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "it-tools",
"version": "0.0.0",
"version": "2.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
@ -11,7 +11,8 @@
"test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'",
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress run'",
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore"
"lint": "eslint src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"release": "standard-version"
},
"dependencies": {
"@it-tools/bip39": "^0.0.4",
@ -56,6 +57,7 @@
"jsdom": "^19.0.0",
"less": "^4.1.2",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"start-server-and-test": "^1.14.0",
"typescript": "~4.5.5",
"vite": "^2.9.1",