Skip to content

Commit

Permalink
build: standard-version
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasanchez committed Apr 13, 2022
1 parent 351f2f2 commit 9537905
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .versionrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"types": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug 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 }
],
"commitUrlFormat": "https://github.com/mokkapps/changelog-generator-demo/commits/{{hash}}",
"compareUrlFormat": "https://github.com/mokkapps/changelog-generator-demo/compare/{{previousTag}}...{{currentTag}}"
}
21 changes: 21 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "kiss",
"version": "0.0.1",
"description": "Kernel de Implementacion Super Simple",
"main": "Makefile",
"repository": "https://github.com/sisoputnfrba/tp-2022-1c-code-for-goOS.git",
"author": "Tomas <tosanchez@frba.utn.edu.ar>",
"license": "MIT",
"scripts": {
"start": "make",
"clean": "make remove",
"release": "standard-version",
"release:first-release": "standard-version --first-release",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major"
},
"dependencies": {
"standard-version": "^9.2.0"
}
}

0 comments on commit 9537905

Please sign in to comment.