Files
releases/docs/gulp/watch.js
T
Eva Xiaohui Luo 25ba04c980 Refresh OPA website
These changes contain a redesign of the OPA website. The main changes
are (1) new frontpage w/ refreshed messaging and assets and (2) docs
ported to gitbook.
2017-07-05 15:39:45 -07:00

22 lines
294 B
JavaScript
Executable File

/**
* Watches all the files for changes
**/
'use strict';
var gulp = require('gulp');
var tasks = [
'styles',
'scripts',
'icon-fonts',
'views'
];
var watches = tasks.map(function(element) {
return element + ':watch';
});
gulp.task('compile', tasks);
gulp.task('watch', watches);