diff options
author | Thomas Park <thomas@thomaspark.me> | 2013-05-16 11:25:53 -0700 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2013-05-16 11:25:53 -0700 |
commit | 23d12d938523705496d900293687c5d7eb21407d (patch) | |
tree | f930a95d386208e5d3cefa61208e7945df6ff39a | |
parent | 5a8fb4bf1b64d06e5ca148eb4619a1c692d2dded (diff) | |
parent | f26cda05ee9002aec1e0bf04f0abf64afb360f73 (diff) |
Merge pull request #98 from frapontillo/gh-pages-fork
Added default grunt task
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Gruntfile.js | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,4 @@ .idea components node_modules -build +build
\ No newline at end of file diff --git a/Gruntfile.js b/Gruntfile.js index ed538f2b..bde3d55d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -106,4 +106,8 @@ module.exports = function (grunt) { var t = this.target; grunt.task.run('build:'+t, 'build-responsive:'+t); }); + + grunt.registerTask('default', 'build a theme, both not responsive and responsive', function() { + grunt.task.run('swatch'); + }); };
\ No newline at end of file |