diff options
author | Francesco Pontillo <francescopontillo@gmail.com> | 2013-05-16 10:25:33 +0200 |
---|---|---|
committer | Francesco Pontillo <francescopontillo@gmail.com> | 2013-05-16 10:25:33 +0200 |
commit | 6f8b9c8d22def7a35b41afc1761045515f7bad6c (patch) | |
tree | 3d36f849a815f2fdb76e7ecdf4b8324c7676c007 | |
parent | 2ec92281b988c129d4eb2ef5efffef57c011f9cc (diff) |
Added default grunt task
-rw-r--r-- | Gruntfile.js | 4 |
1 files changed, 4 insertions, 0 deletions
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 |