-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
82 lines (75 loc) · 2.04 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
71
72
73
74
75
76
77
78
79
80
81
82
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;
const browserSyncConfig = {
port: process.env.PORT || 8066,
server: {
baseDir: "./public", //base
index: "index.html" //fichier a chargé
}
};
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", function() {
browserSync(browserSyncConfig);
});
// 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'
// ]))