From 32444aea2e891e097ab347119a75d523a9a907f2 Mon Sep 17 00:00:00 2001 From: clux Date: Sat, 14 Nov 2015 14:57:47 +0000 Subject: [PATCH] build on node 4 and do coveralls on travis --- .npmignore | 5 +++++ .travis.yml | 11 +++++++---- CHANGELOG.md | 4 ++++ README.md | 8 -------- package.json | 4 +--- 5 files changed, 17 insertions(+), 15 deletions(-) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..ba15cf8 --- /dev/null +++ b/.npmignore @@ -0,0 +1,5 @@ +test +examples +.gitignore +.travis.yml +.npmignore diff --git a/.travis.yml b/.travis.yml index 2dfad71..affe9fb 100644 --- a/.travis.yml +++ b/.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 diff --git a/CHANGELOG.md b/CHANGELOG.md index f8a2f5d..b3ff5df 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/README.md b/README.md index 9a090a4..e70a254 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/package.json b/package.json index f188f83..bd14ac3 100644 --- a/package.json +++ b/package.json @@ -18,8 +18,7 @@ "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", @@ -27,7 +26,6 @@ "trials": "^0.1.4" }, "devDependencies": { - "coveralls": "^2.11.2", "ircdkit": "^1.0.2", "jscoverage": "^0.5.9", "nodeunit": "^0.9.1",