Skip to content

Commit

Permalink
Merge pull request #96 from stevemao/svg
Browse files Browse the repository at this point in the history
Change to svg badge
  • Loading branch information
shinnn committed Mar 4, 2015
2 parents cdfdcfa + a4bc918 commit fd50056
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 15 deletions.
15 changes: 15 additions & 0 deletions .jshintrc
@@ -0,0 +1,15 @@
{
"boss": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"immed": true,
"latedef": true,
"mocha" : true,
"newcap": true,
"noarg": true,
"node": true,
"sub": true,
"undef": true,
"unused": true
}
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -3,5 +3,6 @@ git:
depth: 2
language: node_js
node_js:
- iojs
- '0.12'
- '0.10'
before_script: npm install -g grunt-cli
4 changes: 2 additions & 2 deletions README.md
@@ -1,4 +1,4 @@
# grunt-browser-sync [![NPM version](https://badge.fury.io/js/grunt-browser-sync.png)](http://badge.fury.io/js/grunt-browser-sync)
# grunt-browser-sync [![NPM version](https://badge.fury.io/js/grunt-browser-sync.svg)](https://www.npmjs.org/package/grunt-browser-sync)

> A grunt task for the [browser-sync](https://github.com/shakyShane/browser-sync) module.
Expand Down Expand Up @@ -36,4 +36,4 @@ If you've found Browser-sync useful and would like to contribute to its continue
[![Support via PayPal](https://rawgithub.com/chris---/Donation-Badges/master/paypal.jpeg)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=shakyshane%40gmail%2ecom&lc=US&item_name=browser%2dsync)

## Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).
23 changes: 11 additions & 12 deletions package.json
Expand Up @@ -21,29 +21,28 @@
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
"node": ">=0.10.0"
},
"scripts": {
"test": "jshint tasks/*.js"
},
"dependencies": {
"browser-sync": "^2.0.1"
},
"keywords": [
"gruntplugin",
"live reload",
"inject styles",
"style injector",
"auto refresh"
],
"dependencies": {
"browser-sync": "^2.2.1"
},
"devDependencies": {
"chai": "^1.10.0",
"grunt": "~0.4.2",
"grunt-concurrent": "~0.4.2",
"grunt-contrib-connect": "~0.5.0",
"grunt-contrib-sass": "~0.6.0",
"grunt-contrib-watch": "~0.5.3",
"jshint": "^2.6.0",
"mocha": "^2.0.1"
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-concurrent": "^1.0.0",
"grunt-contrib-connect": "^0.9.0",
"grunt-contrib-sass": "^0.9.2",
"grunt-contrib-watch": "^0.6.1",
"jshint": "^2.6.3"
}
}

0 comments on commit fd50056

Please sign in to comment.