Skip to content

Commit

Permalink
build on node 4 and do coveralls on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
clux committed Nov 14, 2015
1 parent fdf5e85 commit 32444ae
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 15 deletions.
5 changes: 5 additions & 0 deletions .npmignore
@@ -0,0 +1,5 @@
test
examples
.gitignore
.travis.yml
.npmignore
11 changes: 7 additions & 4 deletions .travis.yml
@@ -1,11 +1,14 @@
language: node_js
sudo: false

node_js:
- 0.12
- 0.10
- iojs
- 4
- node

notifications:
email: true
email: false

after_script:
- npm run coveralls
- npm install coveralls
- npm run coverage | coveralls
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
0.3.1 / 2015-11-15
==================
* Added `.npmignore`

0.3.1 / 2015-05-08
==================
* smell module now correctly in dependencies rather than devDependencies
Expand Down
8 changes: 0 additions & 8 deletions README.md
Expand Up @@ -52,13 +52,5 @@ NB: Can only do one of `neverHighlight` and `alwaysHighlight`. By default, `irc-
$ npm install irc-stream
```

## Running tests
Install development dependencies and run test command:

```sh
$ npm install
$ npm test
```

## License
MIT-Licensed. See LICENSE file for details.
4 changes: 1 addition & 3 deletions package.json
Expand Up @@ -18,16 +18,14 @@
"scripts": {
"test": "nodeunit --reporter=verbose test/*.test.js",
"precoverage": "jscoverage irc-stream.js",
"coverage": "IRCSTREAM_COV=1 nodeunit --reporter=lcov test/*.test.js",
"coveralls": "npm run coverage | coveralls"
"coverage": "IRCSTREAM_COV=1 nodeunit --reporter=lcov test/*.test.js"
},
"dependencies": {
"irc": "^0.3.9",
"smell": "^2.0.2",
"trials": "^0.1.4"
},
"devDependencies": {
"coveralls": "^2.11.2",
"ircdkit": "^1.0.2",
"jscoverage": "^0.5.9",
"nodeunit": "^0.9.1",
Expand Down

0 comments on commit 32444ae

Please sign in to comment.