forked from foundation/foundation-sites
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
27 lines (22 loc) · 1.17 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
var gulp = require('gulp');
var browser = require('browser-sync');
var requireDir = require('require-dir');
var port = process.env.SERVER_PORT || 3000;
requireDir('./gulp/tasks');
// Builds the documentation and framework files
gulp.task('build', ['clean', 'copy', 'docs:all', 'sass', 'javascript']);
// Starts a BrowerSync instance
gulp.task('serve', ['build'], function(){
browser.init({server: './_build', port: port});
});
// Watch files for changes
gulp.task('watch', function() {
gulp.watch('docs/**/*', ['docs', browser.reload]);
gulp.watch(['docs/layout/*.html', 'docs/partials/*{html,hbs}', 'docs/assets/partials/*{html,hbs}', 'node_modules/foundation-docs/templates/*{html,hbs}'], ['docs:all', browser.reload]);
gulp.watch('scss/**/*', ['sass', browser.reload]);
gulp.watch(['docs/assets/scss/**/*', 'node_modules/foundation-docs/scss/**/*'], ['sass:docs', browser.reload]);
gulp.watch('js/**/*', ['javascript:foundation', browser.reload]);
gulp.watch(['docs/assets/js/**/*', 'node_modules/foundation-docs/js/**/*'], ['javascript:docs', browser.reload]);
});
// Runs all of the above tasks and then waits for files to change
gulp.task('default', ['serve', 'watch']);