Skip to content
This repository was archived by the owner on Oct 1, 2021. It is now read-only.

Commit e2e005e

Browse files
committed
fix(npm): SHELL-1530 SHELL-1531 #qa/testing Integrate with automated NPM versioning
1 parent 49c5c15 commit e2e005e

4 files changed

Lines changed: 13 additions & 4 deletions

File tree

.coveralls.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
service_name: travis-pro
2+
repo_token: PLACEHOLDER

.npmignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ docs
33
test
44
.npmignore
55
.gitmodules
6-
*.md
6+
*.mdcommitlint.config.js
7+
.coveralls.yml

commitlint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {extends: ['@commitlint/config-conventional']};

package.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,15 @@
2424
"delay": "1.3.1",
2525
"istanbul": "0.4.5",
2626
"jasmine": "2.5.2",
27-
"supertest": "2.0.1"
27+
"supertest": "2.0.1",
28+
"@commitlint/cli": "^6.2.0",
29+
"@commitlint/config-conventional": "^6.1.3",
30+
"husky": "^0.14.3",
31+
"coveralls": "^3.0.1"
2832
},
2933
"scripts": {
3034
"test": "jasmine JASMINE_CONFIG_PATH=./test/lib/jasmine.json",
31-
"coverage": "istanbul cover jasmine JASMINE_CONFIG_PATH=./test/lib/jasmine.json"
35+
"coverage": "istanbul cover jasmine JASMINE_CONFIG_PATH=./test/lib/jasmine.json",
36+
"commitmsg": "commitlint -e $GIT_PARAMS"
3237
}
33-
}
38+
}

0 commit comments

Comments
 (0)