-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
62 lines (55 loc) · 1.92 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
var gulp = require('gulp'),
gutil = require('gulp-util' ),
sass = require('gulp-sass'),
browserSync = require('browser-sync'),
concat = require('gulp-concat'),
uglify = require('gulp-uglify'),
cleancss = require('gulp-clean-css'),
rename = require('gulp-rename'),
autoprefixer = require('gulp-autoprefixer'),
notify = require('gulp-notify');
gulp.task('browser-sync', function() {
browserSync({
server: {
baseDir: 'app'
},
notify: false,
open: false,
// online: false, // Work Offline Without Internet Connection
// tunnel: true, tunnel: "projectname", // Demonstration page: http://projectname.localtunnel.me
})
});
gulp.task('my', function() {
return gulp.src('app/styles/blocks/**/*.scss')
.pipe(rename({ suffix: '', prefix : '_' }))
.pipe(gulp.dest('app/styles/blocks'))
});
gulp.task('styles', function() {
return gulp.src('app/styles/**/*.scss')
.pipe(sass({ outputStyle: 'expanded' }).on("error", notify.onError()))
// .pipe(rename({ suffix: '.min', prefix : '' }))
.pipe(autoprefixer({
grid: true,
overrideBrowserslist: ['last 10 versions']
}))
// .pipe(cleancss( {level: { 1: { specialComments: 0 } } })) // Opt., comment out when debugging
.pipe(gulp.dest('app/styles'))
.pipe(browserSync.stream())
});
gulp.task('scripts', function() {
return gulp.src('app/scripts/blocks/*.js')
.pipe(concat('scripts.js'))
// .pipe(uglify()) // Mifify js (opt.)
.pipe(gulp.dest('app/scripts'))
.pipe(browserSync.reload({ stream: true }))
});
gulp.task('code', function() {
return gulp.src('app/*.html')
.pipe(browserSync.reload({ stream: true }))
});
gulp.task('watch', function() {
gulp.watch('app/styles/**/*.scss', gulp.parallel('styles'));
gulp.watch('app/scripts/blocks/*.js', gulp.parallel('scripts'));
gulp.watch('app/*.html', gulp.parallel('code'));
});
gulp.task('default', gulp.parallel('styles', 'scripts', 'browser-sync', 'watch'));