forked from writethedocs/www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
executable file
·48 lines (41 loc) · 1.31 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
// Load plugins
var gulp = require('gulp'),
sass = require('gulp-sass'),
autoprefixer = require('gulp-autoprefixer'),
cssnano = require('gulp-cssnano'),
rename = require('gulp-rename'),
notify = require('gulp-notify'),
del = require('del'),
plumber = require('gulp-plumber'),
browserSync = require('browser-sync'),
changed = require('gulp-changed');
// Styles
gulp.task('styles', function() {
return gulp.src('docs/_static/2018/scss/main.scss', { style: 'expanded' })
.pipe(sass().on('error', sass.logError))
.pipe(plumber())
.pipe(autoprefixer({browsers: ['last 2 version']}))
.pipe(gulp.dest('docs/_static/2018/css/'))
.pipe(rename({ suffix: '.min' }))
.pipe(cssnano())
.pipe(gulp.dest('docs/_static/2018/css/'))
.pipe(notify({ message: 'Styles task complete' }));
});
// Static server
gulp.task('browser-sync', function() {
browserSync.init([
"docs/_static/2018/css/*.css",
"docs/_static/2018/js/*.js",
'docs/_templates/2018/*.html'], {
proxy: "http://localhost:8888"
});
});
// Watch
gulp.task('watch', ['browser-sync'], function() {
gulp.watch('docs/_static/2018/scss/main.scss', ['styles']);
});
// Default task
gulp.task('default', ['browser-sync'], function() {
gulp.start('styles');
gulp.start('watch');
});