summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2013-05-16 11:25:53 -0700
committerThomas Park <thomas@thomaspark.me>2013-05-16 11:25:53 -0700
commit23d12d938523705496d900293687c5d7eb21407d (patch)
treef930a95d386208e5d3cefa61208e7945df6ff39a
parent5a8fb4bf1b64d06e5ca148eb4619a1c692d2dded (diff)
parentf26cda05ee9002aec1e0bf04f0abf64afb360f73 (diff)
Merge pull request #98 from frapontillo/gh-pages-fork
Added default grunt task
-rw-r--r--.gitignore2
-rw-r--r--Gruntfile.js4
2 files changed, 5 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 05aa84c5..37eef13c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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