Skip to content

Commit

Permalink
Add grunt watch task.
Browse files Browse the repository at this point in the history
  • Loading branch information
chinchang committed Nov 23, 2013
1 parent df7012c commit d2d136b
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 30 deletions.
1 change: 1 addition & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-watch');

// Default task.
grunt.registerTask('default', 'sass');
Expand Down
61 changes: 31 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,33 @@
{
"name": "hint",
"title": "Hint.css",
"description": "A tooltip library in CSS for your lovely websites.",
"version": "1.3.0",
"homepage": "http://kushagragour.in/lab/hint/",
"author": {
"name": "Kushagra Gour",
"email": "chinchang457@gmail.com",
"url": "http://kushagragour.in"
},
"repository": {
"type": "git",
"url": "git://github.com/chinchang/hint.css.git"
},
"bugs": {
"url": "https://github.com/chinchang/hint.css/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/chinchang/hint.css/blob/master/LICENSE-MIT"
}
],
"keywords": [],
"devDependencies": {
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-cssmin": "~0.6.0",
"grunt-contrib-sass": "~0.4.1",
"grunt": "~0.4.1"
}
"name": "hint",
"title": "Hint.css",
"description": "A tooltip library in CSS for your lovely websites.",
"version": "1.3.0",
"homepage": "http://kushagragour.in/lab/hint/",
"author": {
"name": "Kushagra Gour",
"email": "chinchang457@gmail.com",
"url": "http://kushagragour.in"
},
"repository": {
"type": "git",
"url": "git://github.com/chinchang/hint.css.git"
},
"bugs": {
"url": "https://github.com/chinchang/hint.css/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/chinchang/hint.css/blob/master/LICENSE-MIT"
}
],
"keywords": [],
"devDependencies": {
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-cssmin": "~0.6.0",
"grunt-contrib-sass": "~0.4.1",
"grunt": "~0.4.1",
"grunt-contrib-watch": "~0.5.3"
}
}

0 comments on commit d2d136b

Please sign in to comment.