From 62cb57f217ef48c7c905933734f76a4379647066 Mon Sep 17 00:00:00 2001 From: Ruud Date: Wed, 3 Dec 2014 23:30:14 +0100 Subject: [PATCH] Concat --- Gruntfile.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 27bba8b9..77464643 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -66,11 +66,21 @@ module.exports = function(grunt){ } }, + concat: { + options: { + separator: '' + }, + dist: { + src: ['<%= config.tmp %>/styles/**/*.css'], + dest: '<%= config.tmp %>/test.css' + } + }, + // COOL TASKS ============================================================== watch: { scss: { files: ['**/*.{scss,sass}'], - tasks: ['sass:server', 'autoprefixer'], + tasks: ['sass:server', 'autoprefixer', 'concat'], options: { 'livereload': true }