tslint-config-travix
v0.2.0
Published
TSLint configuration from Travix
Readme
tslint-config-travix
Travix configuration for TSLint.
This configuration extends the following ones:
tslint:recommendedtslint-config-prettiertslint-react
Usage
Create a file .tslint.json with following content:
{
"extends": "tslint-config-travix"
}Release
Release of a new version of the npm module is triggering automatically on push (merge) to master branch.
- In case you make
git pushtomasterbranch it will check your commit's message to match the pattern to get release version. - If you merge a PR to
masterbranch without squash it will check all commits one by one and will release the highest version. - If you merge a PR with squash you have to handle it manually (check all commits messages and add appropriate squash message following the pattern).
Pattern for commit messages
We use simple-commit-message to simplify commit messages. Here is a pattern:
fix: <MESSAGE>- does releasepatchversion of NPM module. Alias -patch: <MESSAGE>minor: <MESSAGE>- releasesminorversion. Alias -feat: <MESSAGE>major: <MESSAGE>- releasesmajorversion. Alias -break: <MESSAGE>
