-
Notifications
You must be signed in to change notification settings - Fork 705
/
gulpfile.js
49 lines (43 loc) · 1.29 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
'use strict';
var gulp = require('gulp');
var sass = require('gulp-sass');
var browserSync = require('browser-sync');
var reload = browserSync.reload;
var autoprefixer = require('gulp-autoprefixer');
var plumber = require('gulp-plumber');
var config = {
djangoHost: 'localhost',
djangoPort: 8000,
jsPort: 8001,
watchSassFiles: 'suit/sass/**/*.scss',
cssOutputDir: 'suit/static/suit/css/',
watchHtmlFiles: [
'suit/templates/**/*.html',
'demo/demo/templates/**/*.html'
]
};
gulp.task('styles', function () {
return gulp.src(config.watchSassFiles)
.pipe(plumber())
.pipe(sass({outputStyle: 'compact'})).on('error', sass.logError)
.pipe(autoprefixer({browsers: ['last 2 version', '> 5%']}))
.pipe(gulp.dest(config.cssOutputDir))
.pipe(reload({stream: true}))
;
});
gulp.task('watch', function () {
browserSync({
port: config.jsPort,
ui: false,
notify: false,
ghostMode: false,
https: false,
startPath: '/admin/',
proxy: {
target: config.djangoHost + ':' + config.djangoPort
}
});
gulp.watch(config.watchSassFiles, ['styles']);
gulp.watch(config.watchHtmlFiles).on('change', reload);
});
gulp.task('default', ['styles', 'watch']);