mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-23 08:44:48 -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.
27 lines
592 B
JavaScript
Executable File
27 lines
592 B
JavaScript
Executable File
/**
|
|
* Compiles SCSS to CSS
|
|
**/
|
|
|
|
'use strict';
|
|
|
|
var paths = require('./config.js').paths;
|
|
var gulp = require('gulp');
|
|
var autoprefixer = require('gulp-autoprefixer');
|
|
var runSequence = require('run-sequence');
|
|
var plumber = require('gulp-plumber');
|
|
var onError = require('./on-error.js');
|
|
|
|
// Paths
|
|
var watchPath = 'index.html';
|
|
var destPath = 'index.html';
|
|
|
|
gulp.task('views', function() {
|
|
return gulp.src([watchPath]);
|
|
});
|
|
|
|
gulp.task('views:watch', ['views'], function() {
|
|
return gulp.watch(watchPath).on('change', function() {
|
|
runSequence('views', 'browser-sync-reload');
|
|
});
|
|
});
|