summaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'Gruntfile.js')
-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'
}
}
});