-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: split release-it config into extra file
- Loading branch information
Showing
2 changed files
with
18 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"git": { | ||
"commitMessage": "chore: release ${version}", | ||
"tagName": "${version}" | ||
}, | ||
"npm": { | ||
"publish": true | ||
}, | ||
"github": { | ||
"release": true | ||
}, | ||
"plugins": { | ||
"@release-it/conventional-changelog": { | ||
"preset": "angular" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@evva-sfw/abrevva-react-native", | ||
"version": "0.1.0", | ||
"description": "evva", | ||
"description": "The EVVA React-Native Module is a collection of tools to work with electronical EVVA access components. It allows for scanning and connecting via BLE.", | ||
"source": "./src/index.tsx", | ||
"main": "./lib/commonjs/index.js", | ||
"module": "./lib/module/index.js", | ||
|
@@ -54,7 +54,6 @@ | |
"type": "git", | ||
"url": "git+https://github.com/evva-sfw/abrevva-react-native.git" | ||
}, | ||
"author": "HOCHSTÖGER Matthias / EVVA Wien <[email protected]>", | ||
"license": "SEE LICENSE IN <LICENSE>", | ||
"bugs": { | ||
"url": "https://github.com/evva-sfw/abrevva-react-native/issues" | ||
|
@@ -109,23 +108,6 @@ | |
"@commitlint/config-conventional" | ||
] | ||
}, | ||
"release-it": { | ||
"git": { | ||
"commitMessage": "chore: release ${version}", | ||
"tagName": "v${version}" | ||
}, | ||
"npm": { | ||
"publish": true | ||
}, | ||
"github": { | ||
"release": true | ||
}, | ||
"plugins": { | ||
"@release-it/conventional-changelog": { | ||
"preset": "angular" | ||
} | ||
} | ||
}, | ||
"eslintConfig": { | ||
"root": true, | ||
"extends": [ | ||
|