summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Häggqvist <[email protected]>2014-06-27 03:12:04 +0200
committerVictor Häggqvist <[email protected]>2014-06-27 03:12:04 +0200
commit7a628f02d385998eb30ba6230a088aae4bcc1670 (patch)
treec65fa53fab07062d194cc9ea28267b4c8e8f76c9
parent2fcd1d25d1b006f356f0999d24764c361ac60583 (diff)
copy css
-rw-r--r--Gruntfile.js11
1 files changed, 9 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 16905d1..5be03fa 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -14,7 +14,7 @@ module.exports = function(grunt) {
watch: {
main: {
options: {
- reload: true;
+ reload: true
},
files: ['index.php', 'sass/demo.scss'],
tasks: ['sass']
@@ -53,12 +53,19 @@ module.exports = function(grunt) {
}
},
copy: {
- lightbox: {
+ lightbox_js: {
expand: true,
flatten: true,
src: ['bower_components/touch-imagelightbox/dist/touch-imagelightbox.js'],
dest: './',
filter: 'isFile'
+ },
+ lightbox_css: {
+ expand: true,
+ flatten: true,
+ src: ['bower_components/touch-imagelightbox/dist/touch-imagelightbox.min.css'],
+ dest: './',
+ filter: 'isFile'
}
}
});