forked from pulse-mind/django-suit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
71 lines (61 loc) · 1.69 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
'use strict';
var gulp = require('gulp');
var sass = require('gulp-sass');
var browsersync = require('browser-sync').create();
var reload = browsersync.reload;
var autoprefixer = require('gulp-autoprefixer');
var plumber = require('gulp-plumber');
var config = {
djangoHost: 'localhost',
djangoPort: 8004,
jsPort: 8005,
watchSassFiles: 'suit/sass/**/*.scss',
cssOutputDir: 'suit/static/suit/css/',
watchHtmlFiles: [
'suit/templates/**/*.html',
'demo/demo/templates/**/*.html'
]
};
function styles() {
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}))
;
}
// live browser loading
function initBrowserSync(done) {
browsersync.init({
port: config.jsPort,
ui: false,
notify: false,
ghostMode: false,
https: false,
startPath: '/admin/',
proxy: {
target: config.djangoHost + ':' + config.djangoPort
}
});
done();
}
function reloadBrowserSync(done) {
browsersync.reload();
// browsersync.stream({once: true})
done();
}
function watchFiles() {
gulp.watch(config.watchSassFiles, gulp.series(generateStyles, reloadBrowserSync));
gulp.watch(config.watchHtmlFiles, gulp.series(reloadBrowserSync));
}
var generateStyles = gulp.parallel(
gulp.series(styles),
);
var dev = gulp.parallel(
initBrowserSync,
watchFiles
);
exports.default = gulp.series(generateStyles, dev)
exports["build"] = generateStyles
exports["dev"] = dev