mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-24 17:25:16 -06:00
25ba04c980
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.
22 lines
294 B
JavaScript
Executable File
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);
|