Last active
August 29, 2015 14:11
-
-
Save jaredpalmer/513d47f2b3a53bbb6ba8 to your computer and use it in GitHub Desktop.
BrowserSynce-Grunt yo-Jekyllrb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
browserSync: { | |
server: { | |
bsFiles: { | |
src: [ | |
'.jekyll/**/*.html', | |
'.tmp/css/**/*.css', | |
'{.tmp,<%= yeoman.app %>}/<%= js %>/**/*.js', | |
'{<%= yeoman.app %>}/_bower_components/**/*.js', | |
'<%= yeoman.app %>/img/**/*.{gif,jpg,jpeg,png,svg,webp}' | |
] | |
}, | |
options: { | |
server: { | |
baseDir: [ | |
".jekyll", | |
".tmp", | |
"<%= yeoman.app %>" | |
] | |
}, | |
watchTask: true | |
} | |
} | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment