-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
275 lines (259 loc) · 10.2 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
/**
* Gulpfile.
*
* Gulp with WordPress.
*
* Implements:
* 1. Live reloads browser with BrowserSync.
* 2. CSS: Sass to CSS conversion, error catching, Autoprefixing, Sourcemaps,
* CSS minification, and Merge Media Queries.
* 3. JS: Concatenates & uglifies Vendor and Custom JS files.
* 4. Images: Minifies PNG, JPEG, GIF and SVG images.
* 5. Watches files for changes in CSS or JS.
* 6. Watches files for changes in PHP.
* 7. Corrects the line endings.
*
* @author Ahmad Awais (https://github.com/ahmadawais)
* Contributors: https://AhmdA.ws/WPGContributors
* @version 1.9.3
*/
/**
* Load Config.
*
* Customize your project in the config.js file
*/
const config = require( './gulp-config.js' );
/**
* Load Plugins.
*
* Load gulp plugins and passing them semantic names.
*/
var gulp = require( 'gulp' ); // Gulp of-course
// CSS related plugins.
var sass = require('gulp-dart-sass'); // Gulp pluign for Sass compilation.
var minifycss = require( 'gulp-uglifycss' ); // Minifies CSS files.
var autoprefixer = require( 'gulp-autoprefixer' ); // Autoprefixing magic.
var mmq = require( 'gulp-merge-media-queries' ); // Combine matching media queries into one media query definition.
var rtlcss = require( 'gulp-rtlcss' ); // Generates RTL stylesheet.
// JS related plugins.
var concat = require( 'gulp-concat' ); // Concatenates JS files
var uglify = require( 'gulp-uglify' ); // Minifies JS files
var babel = require( 'gulp-babel' ); // Compiles ESNext to browser compatible JS.
var esbuild = require( 'gulp-esbuild' ); // Modern bundling
// Utility related plugins.
var rename = require( 'gulp-rename' ); // Renames files E.g. style.css -> style.min.css
var lineec = require( 'gulp-line-ending-corrector' ); // Consistent Line Endings for non UNIX systems. Gulp Plugin for Line Ending Corrector (A utility that makes sure your files have consistent line endings)
var filter = require( 'gulp-filter' ); // Enables you to work on a subset of the original files by filtering them using globbing.
var sourcemaps = require( 'gulp-sourcemaps' ); // Maps code in a compressed file (E.g. style.css) back to it’s original position in a source file (E.g. structure.scss, which was later combined with other css files to generate style.css)
var notify = require( 'gulp-notify' ); // Sends message notification to you
var sort = require( 'gulp-sort' ); // Recommended to prevent unnecessary changes in pot-file.
var cache = require( 'gulp-cache' ); // Cache files in stream for later use
var remember = require( 'gulp-remember' ); // Adds all the files it has ever seen back into the stream
var plumber = require( 'gulp-plumber' ); // Prevent pipe breaking caused by errors from gulp plugins
/**
* Task: `styles`.
*
* Compiles Sass, Autoprefixes it and Minifies CSS.
*
* This task does the following:
* 1. Gets the source scss file
* 2. Compiles Sass to CSS
* 3. Writes Sourcemaps for it
* 4. Autoprefixes it and generates style.css
* 5. Renames the CSS file with suffix .min.css
* 6. Minifies the CSS file and generates style.min.css
*/
gulp.task( 'styles', function() {
return gulp
.src( config.styleSRC )
.pipe( sourcemaps.init() )
.pipe(
sass({
errLogToConsole: config.errLogToConsole,
outputStyle: config.outputStyle,
precision: config.precision
})
)
.on( 'error', sass.logError )
.pipe( autoprefixer( config.BROWSERS_LIST ) )
.pipe( filter( '**/*.css' ) ) // Filtering stream to only css files
.pipe( mmq({ log: true }) ) // Merge Media Queries only for .min.css version.
.pipe( rename({ suffix: '.min' }) )
.pipe( minifycss() )
.pipe( sourcemaps.write( './' ) )
.pipe( lineec() ) // Consistent Line Endings for non UNIX systems.
.pipe( gulp.dest( config.styleDestination ) )
.pipe( notify({ message: 'TASK: "styles" Completed! 💯', onLast: true }) );
});
/**
* Task: `stylesRTL`.
*
* Compiles Sass, Autoprefixes it, Generates RTL stylesheet, and Minifies CSS.
*
* This task does the following:
* 1. Gets the source scss file
* 2. Compiles Sass to CSS
* 4. Autoprefixes it and generates style.css
* 5. Renames the CSS file with suffix -rtl and generates style-rtl.css
* 6. Writes Sourcemaps for style-rtl.css
* 7. Renames the CSS files with suffix .min.css
* 8. Minifies the CSS file and generates style-rtl.min.css
* 9. Injects CSS or reloads the browser via browserSync
*/
gulp.task( 'stylesRTL', function() {
return gulp
.src( config.styleSRC )
.pipe( sourcemaps.init() )
.pipe(
sass({
errLogToConsole: config.errLogToConsole,
outputStyle: config.outputStyle,
precision: config.precision
})
)
.on( 'error', sass.logError )
.pipe( sourcemaps.write({ includeContent: false }) )
.pipe( sourcemaps.init({ loadMaps: true }) )
.pipe( autoprefixer( config.BROWSERS_LIST ) )
.pipe( lineec() ) // Consistent Line Endings for non UNIX systems.
.pipe( rename({ suffix: '-rtl' }) ) // Append "-rtl" to the filename.
.pipe( rtlcss() ) // Convert to RTL.
.pipe( sourcemaps.write( './' ) ) // Output sourcemap for style-rtl.css
.pipe( gulp.dest( config.styleDestination ) )
.pipe( filter( '**/*.css' ) ) // Filtering stream to only css files.
.pipe( mmq({ log: true }) ) // Merge Media Queries only for .min.css version.
.pipe( rename({ suffix: '.min' }) )
.pipe( minifycss({ maxLineLen: 10 }) )
.pipe( lineec() ) // Consistent Line Endings for non UNIX systems.
.pipe( gulp.dest( config.styleDestination ) )
.pipe( filter( '**/*.css' ) ) // Filtering stream to only css files.
.pipe( notify({ message: 'TASK: "stylesRTL" Completed! 💯', onLast: true }) );
});
/**
* Task: `customJS`.
*
* Concatenate and uglify custom JS scripts.
*
* This task does the following:
* 1. Gets the source folder for JS custom files
* 2. Concatenates all the files and generates custom.js
* 3. Renames the JS file with suffix .min.js
* 4. Uglifes/Minifies the JS file and generates custom.min.js
*/
gulp.task( 'customJS', function() {
return gulp
.src( config.jsCustomSRC, { since: gulp.lastRun( 'customJS' ) }) // Only run on changed files.
.pipe(
plumber({
errorHandler: function( err ) {
notify.onError( 'Error: <%= error.message %>' )( err );
this.emit( 'end' ); // End stream if error is found
}
})
)
.pipe(
esbuild({
// outfile: 'bundle.js',
bundle: true,
loader: { '.js': 'js' }
})
)
.pipe(
babel({
presets: [
[
'@babel/preset-env', // Preset to compile your modern JS to ES5.
{
targets: {browsers: config.BROWSERS_LIST} // Target browser list to support.
}
]
]
})
)
.pipe( remember( 'customJS' ) ) // Bring all files back to stream
.pipe(
rename( function( path ) {
path.basename = path.basename.replace( '.src', '' );
return path;
})
)
.pipe( uglify() )
.pipe( lineec() ) // Consistent Line Endings for non UNIX systems.
.pipe( gulp.dest( config.jsCustomDestination ) )
.pipe( notify({ message: 'TASK: "customJS" Completed! 💯', onLast: true }) );
});
/**
* Task: `images`.
*
* Minifies PNG, JPEG, GIF and SVG images.
*
* This task does the following:
* 1. Gets the source of images raw folder
* 2. Minifies PNG, JPEG, GIF and SVG images
* 3. Generates and saves the optimized images
*
* This task will run only once, if you want to run it
* again, do it with the command `gulp images`.
*
* Read the following to change these options.
* @link https://github.com/sindresorhus/gulp-imagemin
*/
gulp.task( 'images', function() {
return gulp
.src( config.imgSRC )
.pipe(
cache(
imagemin([
imagemin.gifsicle({ interlaced: true }),
imagemin.jpegtran({ progressive: true }),
imagemin.optipng({ optimizationLevel: 3 }), // 0-7 low-high.
imagemin.svgo({
plugins: [ { removeViewBox: true }, { cleanupIDs: false } ]
})
])
)
)
.pipe( gulp.dest( config.imgDST ) )
.pipe( notify({ message: 'TASK: "images" Completed! 💯', onLast: true }) );
});
gulp.task( 'setup', function() {
config.filesToMove.forEach( function( file ) {
if ( ! file.rename ) {
file.rename = {};
}
gulp
.src( file.src )
.pipe(
rename( file.rename )
)
.pipe( gulp.dest( file.dest ) );
});
return gulp
.src( '.' )
.pipe( notify({ message: 'TASK: "setup" Completed! 💯', onLast: true }) );
});
/**
* Task: `clear-images-cache`.
*
* Deletes the images cache. By running the next "images" task,
* each image will be regenerated.
*/
gulp.task( 'clearCache', function( done ) {
return cache.clearAll( done );
});
/**
* Watch Tasks.
*
* Watches for file changes and runs specific tasks.
*/
gulp.task(
'default',
gulp.parallel(
'styles',
'customJS',
function watchFiles() {
gulp.watch( config.styleWatchFiles, gulp.parallel( 'styles' ) ); // Reload on SCSS file changes.
gulp.watch( config.customJSWatchFiles, gulp.series( 'customJS' ) ); // Reload on customJS file changes.
}
)
);