-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
137 lines (112 loc) · 3.73 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
// Defining requirements
var gulp = require( 'gulp' );
var plumber = require( 'gulp-plumber' );
var sass = require( 'gulp-sass' );
var cssnano = require( 'gulp-cssnano' );
var rename = require( 'gulp-rename' );
var concat = require( 'gulp-concat' );
var uglify = require( 'gulp-uglify' );
var imagemin = require( 'gulp-imagemin' );
var ignore = require( 'gulp-ignore' );
var rimraf = require( 'gulp-rimraf' );
var sourcemaps= require( 'gulp-sourcemaps' );
var browserSync = require( 'browser-sync' ).create();
var del = require( 'del' );
var cleanCSS = require( 'gulp-clean-css' );
var replace = require( 'gulp-replace' );
var autoprefixer = require( 'gulp-autoprefixer' );
// Configuration file to keep your code DRY
var cfg = require( './gulpconfig.json' );
var paths = cfg.paths;
// Run:
// gulp watch
// Starts watcher. Watcher runs gulp sass task on changes
gulp.task( 'watch', function() {
gulp.watch( [
`${paths.sass}/*.scss`,
`${paths.sass}/**/*.scss`,
], gulp.series('styles') );
gulp.watch( [
`${paths.src}/*.js`,
`${paths.src}/**/*.js`,
], gulp.series('scripts') );
// //Inside the watch task.
// gulp.watch(
// `${paths.imgsrc} /**`,
// gulp.series('imagemin-watch') );
});
// Run:
// gulp scripts.
// Uglifies and concat all JS files into one
gulp.task( 'scripts', function() {
var scripts = [
`${paths.src}/*.js`,
`${paths.src}/**/*.js`,
];
gulp.src( scripts, { allowEmpty: true } )
.pipe( concat( 'index.min.js' ) )
.pipe( uglify() )
.pipe( gulp.dest( paths.js ) );
return gulp.src( scripts, { allowEmpty: true } )
.pipe( concat( 'index.js' ) )
.pipe( gulp.dest( paths.js ) );
});
// Run:
// gulp sass
// Compiles SCSS files in CSS
gulp.task( 'sass', function() {
return gulp.src( `${paths.sass}/*.scss` )
.pipe( sourcemaps.init( { loadMaps: true } ) )
.pipe( plumber( {
errorHandler: function( err ) {
console.log( err );
this.emit( 'end' );
}
} ) )
.pipe( sass( { errLogToConsole: true } ) )
.pipe( autoprefixer( 'last 2 versions' ) )
.pipe( sourcemaps.write( `./` ) )
.pipe( gulp.dest( paths.css ) );
});
gulp.task( 'minifycss', function() {
return gulp.src( `${paths.css}/theme.css` )
.pipe( sourcemaps.init( { loadMaps: true } ) )
.pipe( cleanCSS( { compatibility: '*' } ) )
.pipe( plumber( {
errorHandler: function( err ) {
console.log( err ) ;
this.emit( 'end' );
}
} ) )
.pipe( rename( { suffix: '.min' } ) )
.pipe( sourcemaps.write( `./` ) )
.pipe( gulp.dest( paths.css ) );
});
gulp.task( 'styles', gulp.series( 'sass', 'minifycss' ));
// Run:
// gulp browser-sync
// Starts browser-sync task for starting the server.
gulp.task( 'browser-sync', function() {
browserSync.init( cfg.browserSyncWatchFiles, cfg.browserSyncOptions );
} );
// Run:
// gulp imagemin
// Running image optimizing task
gulp.task( 'imagemin', function() {
gulp.src( `${paths.imgsrc}/**` )
.pipe( imagemin() )
.pipe( gulp.dest( paths.img ) );
});
/**
* Ensures the 'imagemin' task is complete before reloading browsers
* @verbose
*/
gulp.task( 'imagemin-watch', gulp.series('imagemin', function reloadBrowserSync( ) {
browserSync.reload();
}));
// Run:
// gulp
// Starts watcher with browser-sync. Browser-sync reloads page automatically on your browser
gulp.task( 'default', gulp.parallel( 'browser-sync', 'watch', 'styles', 'minifycss', 'scripts' ));
// Deleting any file inside the /dist-product folder
gulp.task( 'compile', gulp.series( 'styles', 'minifycss', 'scripts' ));