-
Notifications
You must be signed in to change notification settings - Fork 97
/
gulpfile.js
executable file
·62 lines (55 loc) · 1.71 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
const gulp = require('gulp')
const sass = require('gulp-sass')
const autoprefixer = require('gulp-autoprefixer')
// const concat = require('gulp-concat')
// const babel = require('gulp-babel')
// const watch = require('gulp-watch')
const browserSync = require('browser-sync')
const reload = browserSync.reload
var exec = require('child_process').exec;
gulp.task('default', ['styles', 'webpack', 'browser-sync'], () => {
gulp.watch('./assets/sass/**/*', ['styles'])
gulp.watch('./assets/js/**/*', ['webpack'])
gulp.watch(['./public/**/*', './public/*', '!public/js/**/.#*js', '!public/css/**/.#*css']).on('change', reload)
})
gulp.task('styles', () => {
gulp.src('assets/sass/**/*.scss')
.pipe(
sass({
outputStyle: 'compressed'
})
.on('error', sass.logError))
.pipe(autoprefixer({
browsers: ['last 2 versions']
}))
.pipe(gulp.dest('./public/css'))
.pipe(browserSync.stream())
})
gulp.task('browser-sync', ['styles'], function () {
// THIS IS FOR SITUATIONS WHEN YOU HAVE ANOTHER SERVER RUNNING
// browserSync.init({
// proxy: {
// target: 'localhost:3000', // can be [virtual host, sub-directory, localhost with port]
// ws: true // enables websockets
// },
// serveStatic: ['.', './public']
// })
browserSync.init({
server: './public',
notify: false,
open: false //change this to true if you want the broser to open automatically
});
})
gulp.task('webpack', (cb) => {
exec('webpack', function (err, stdout, stderr) {
console.log(stdout);
console.log(stderr);
cb(err);
});
})
// gulp.task('webpack', shell.task([
// 'webpack'
// ]))
// gulp.task('server', shell.task([
// 'yarn run server'
// ]))