-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathgulpfile.js
More file actions
executable file
·67 lines (60 loc) · 1.5 KB
/
gulpfile.js
File metadata and controls
executable file
·67 lines (60 loc) · 1.5 KB
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
const gulp = require('gulp');
const browserSync = require('browser-sync');
const reload = browserSync.reload;
var exec = require('child_process').exec;
gulp.task('default', ['browser-sync'], () => {
// gulp.watch('./assets/scss/**/*', ['webpack']);
// gulp.watch('./assets/**/*', ['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', 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('npm run dev', 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'
// ]))