Skip to content

Commit a226c36

Browse files
committed
build(general): remove semantic-release stuff that got accidentally merged
1 parent 6e95d2d commit a226c36

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

.travis.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,4 @@ before_script:
1212
- npm prune
1313
script:
1414
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
15-
after_success:
16-
- npm run semantic-release
17-
branches:
18-
except:
19-
- /^v\d+\.\d+\.\d+$/
15+

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
[![Build Status](https://travis-ci.org/jedwards1211/es2015-library-skeleton.svg?branch=master)](https://travis-ci.org/jedwards1211/es2015-library-skeleton)
44
[![Coverage Status](https://coveralls.io/repos/github/jedwards1211/es2015-library-skeleton/badge.svg?branch=master)](https://coveralls.io/github/jedwards1211/es2015-library-skeleton?branch=master)
5-
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
65
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
76

87
This is my personal skeleton for creating an ES2015 library npm package. You are welcome to use it.
@@ -19,7 +18,9 @@ This is my personal skeleton for creating an ES2015 library npm package. You ar
1918
* eslint-watch
2019
* flow
2120
* flow-watch
22-
* pre-commit (runs eslnt and flow)
23-
* semantic-release
21+
* husky
22+
* commitmsg: uses validate-commit-msg
23+
* precommit: runs lint and flow
24+
* prepush: runs test
2425
* Travis CI
2526
* Coveralls

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
"precommit": "npm run lint && flow",
1919
"prepush": "npm test",
2020
"prepublish": "npm run lint && flow && npm test && npm run build && npm run copy-flow-files",
21-
"open:coverage": "open coverage/lcov-report/index.html",
22-
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
21+
"open:coverage": "open coverage/lcov-report/index.html"
2322
},
2423
"config": {
2524
"mocha": "--compilers js:babel-core/register ./test/**/*.js",
@@ -76,7 +75,6 @@
7675
"mocha": "^3.2.0",
7776
"nyc": "^10.0.0",
7877
"rimraf": "^2.5.4",
79-
"semantic-release": "^6.3.2",
8078
"validate-commit-msg": "^2.8.2"
8179
},
8280
"dependencies": {}

0 commit comments

Comments
 (0)