aboutsummaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorYves Delley <hack@delley.net>2014-09-12 22:49:13 +0200
committerYves Delley <hack@delley.net>2014-09-12 22:49:13 +0200
commit9bc5b81292619ef06e9a582a7607b7e0601d7c17 (patch)
treecc4220eacd9e47cb42cdd237a4fa27038103294c /Gruntfile.js
parent2bc36f2dfe04746d5a10c48531b38c64415d43aa (diff)
parent80c375fae85d5b1edc2656641e03942739daa28b (diff)
downloadfreenode-live-2017-presentation-9bc5b81292619ef06e9a582a7607b7e0601d7c17.tar
freenode-live-2017-presentation-9bc5b81292619ef06e9a582a7607b7e0601d7c17.tar.gz
merged dev branch
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js16
1 files changed, 13 insertions, 3 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 55585d4..4e57152 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -70,7 +70,9 @@ module.exports = function(grunt) {
head: false,
module: false,
console: false,
- unescape: false
+ unescape: false,
+ define: false,
+ exports: false
}
},
files: [ 'Gruntfile.js', 'js/reveal.js' ]
@@ -96,7 +98,9 @@ module.exports = function(grunt) {
server: {
options: {
port: port,
- base: '.'
+ base: '.',
+ livereload: true,
+ open: true
}
}
},
@@ -113,6 +117,9 @@ module.exports = function(grunt) {
},
watch: {
+ options: {
+ livereload: true
+ },
main: {
files: [ 'Gruntfile.js', 'js/reveal.js', 'css/reveal.css' ],
tasks: 'default'
@@ -124,7 +131,10 @@ module.exports = function(grunt) {
css: {
files: [ 'css/reveal.bare.css' ],
tasks: 'css'
- }
+ },
+ html: {
+ files: [ 'index.html']
+ }
}
});