-
Notifications
You must be signed in to change notification settings - Fork 44
/
gulpfile.js
76 lines (65 loc) · 2.11 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
var gulp = require('gulp'),
sass = require('gulp-sass'),
notify = require('gulp-notify'),
browserSync = require('browser-sync'),
postcss = require('gulp-postcss'),
rename = require('gulp-rename'),
rtlcss = require('rtlcss'),
cssnano = require('cssnano'),
notify = require("gulp-notify")
var bootstrapPath = './node_modules/bootstrap/scss/bootstrap';
var fontawesomePath = './node_modules/font-awesome/scss';
var config = {
sassPath: './resources/sass',
npmDir: './node_modules'
}
// Copy js files to public folder
gulp.task('js', function () {
return gulp.src([
config.npmDir + '/bootstrap/dist/js/bootstrap.min.js',
config.npmDir + '/jquery/dist/jquery.min.js',
config.npmDir + '/popper.js/dist/popper.js'
])
.pipe(gulp.dest('./public/js'));
});
// Copy fontawesome icons to public/fonts folder
gulp.task('icons', function () {
return gulp.src(config.npmDir + '/font-awesome/fonts/**.*')
.pipe(gulp.dest('./public/fonts'));
});
gulp.task('css', function () {
var processors = [
cssnano,
rtlcss
];
// [].concat( bootstrapPath , fontawesomePath )
return gulp.src(config.sassPath + '/style.scss')
.pipe(sass({
includePaths: [bootstrapPath, fontawesomePath]
}).on('error', notify.onError(function (error) {
return error.message;
})))
.pipe(postcss(processors))
.pipe(rename({
suffix: '-rtl.beta.min'
}))
.pipe(gulp.dest('./public/css'))
.pipe(notify("Sass files compiles successfuly!"));
});
// Add browserSync task
gulp.task('browserSync', function () {
browserSync({
server: {
baseDir: './'
}
});
});
// Rerun the task when a file changes
// Run this task : gulp watch
gulp.task('watch', ['css', 'browserSync'], function () {
gulp.watch(config.sassPath + '/**/*.scss', ['css']);
browserSync.watch("./*.html").on("change", browserSync.reload); // browserSync watch task
});
// Run this task : gulp
// OR gulp default
gulp.task('default', ['icons', 'css', 'js', 'watch']);