forked from foundation/foundation-sites
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
31 lines (25 loc) · 1.44 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
28
29
30
31
var gulp = require('gulp');
var browser = require('browser-sync');
var requireDir = require('require-dir');
var forwardReference = require('undertaker-forward-reference');
var port = process.env.SERVER_PORT || 3000;
// Make Gulp accepting reference to tasks that are not declared yet, like in v3.
gulp.registry(forwardReference());
requireDir('./gulp/tasks');
// Builds the documentation and framework files
gulp.task('build', gulp.series('clean', 'copy', 'sass', 'javascript', 'docs:all'));
// Starts a BrowerSync instance
gulp.task('serve', gulp.series('build', function(){
browser.init({server: './_build', port: port});
}));
// Watch files for changes
gulp.task('watch', function() {
gulp.watch('docs/**/*', gulp.series('docs', browser.reload));
gulp.watch(['docs/layout/*.html', 'docs/partials/*{html,hbs}', 'docs/assets/partials/*{html,hbs}', 'node_modules/foundation-docs/templates/*{html,hbs}'], gulp.series('docs:all', browser.reload));
gulp.watch('scss/**/*', gulp.series('sass', browser.reload));
gulp.watch(['docs/assets/scss/**/*', 'node_modules/foundation-docs/scss/**/*'], gulp.series('sass:docs', browser.reload));
gulp.watch('js/**/*', gulp.series('javascript:foundation', browser.reload));
gulp.watch(['docs/assets/js/**/*', 'node_modules/foundation-docs/js/**/*'], gulp.series('javascript:docs', browser.reload));
});
// Runs all of the above tasks and then waits for files to change
gulp.task('default', gulp.series('serve', 'watch'));