Skip to content

Commit

Permalink
Adding coveralls support and updating readme heading size
Browse files Browse the repository at this point in the history
  • Loading branch information
rv-emendoza committed Jul 19, 2016
1 parent 836d91e commit 4534d2c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Expand Up @@ -7,4 +7,8 @@ install:
- npm install

script:
- npm test
- npm run cover


# Send coverage data to Coveralls
after_script: "cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js"
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
##gulp-asset-cache
#gulp-asset-cache
A disk based caching task for [gulp](http://gulpjs.com/). This plugin was built mainly to deal with the issues around having no dist directory and wanting to prevent image/video compression from happening multiple times on larger teams. If you do have the luxury of a src/dist file structure I recommend [gulp-changed](https://www.npmjs.com/package/gulp-changed) or [gulp-newer](https://www.npmjs.com/package/gulp-newer) as they easily integrate with that file structure.

##Installation
Expand Down
5 changes: 4 additions & 1 deletion package.json
Expand Up @@ -4,7 +4,8 @@
"description": "A disk based caching task for gulp",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec"
"test": "mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"repository": {
"type": "git",
Expand All @@ -23,7 +24,9 @@
"homepage": "https://github.com/Polyneue/gulp-asset-cache#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.11",
"gulp-util": "^3.0.7",
"istanbul": "^0.4.4",
"mocha": "^2.5.3"
},
"dependencies": {
Expand Down

0 comments on commit 4534d2c

Please sign in to comment.