-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.babel.js
505 lines (460 loc) · 16 KB
/
gulpfile.babel.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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
/**
* 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.
* 8. InjectCSS instead of browser page reload.
* 9. Generates .pot file for i18n and l10n.
*
* @tutorial https://github.com/ahmadawais/WPGulp
* @author Ahmad Awais <https://twitter.com/MrAhmadAwais/>
*/
/**
* Load WPGulp Configuration.
*
* TODO: Customize your project in the wpgulp.js file.
*/
const config = require( './wpgulp.config.js' );
/**
* Load Plugins.
*
* Load gulp plugins and passing them semantic names.
*/
const gulp = require( 'gulp' ); // Gulp of-course.
// CSS related plugins.
const sass = require( 'gulp-sass' ); // Gulp plugin for Sass compilation.
const minifycss = require( 'gulp-uglifycss' ); // Minifies CSS files.
const autoprefixer = require( 'gulp-autoprefixer' ); // Autoprefixing magic.
const mmq = require( 'gulp-merge-media-queries' ); // Combine matching media queries into one.
const rtlcss = require( 'gulp-rtlcss' ); // Generates RTL stylesheet.
// JS related plugins.
const concat = require( 'gulp-concat' ); // Concatenates JS files.
const uglify = require( 'gulp-uglify' ); // Minifies JS files.
const babel = require( 'gulp-babel' ); // Compiles ESNext to browser compatible JS.
// Image related plugins.
const imagemin = require( 'gulp-imagemin' ); // Minify PNG, JPEG, GIF and SVG images with imagemin.
// Utility related plugins.
const rename = require( 'gulp-rename' ); // Renames files E.g. style.css -> style.min.css.
const 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).
const filter = require( 'gulp-filter' ); // Enables you to work on a subset of the original files by filtering them using a glob.
const 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).
const notify = require( 'gulp-notify' ); // Sends message notification to you.
const browserSync = require( 'browser-sync' ).create(); // Reloads browser and injects CSS. Time-saving synchronized browser testing.
const wpPot = require( 'gulp-wp-pot' ); // For generating the .pot file.
const sort = require( 'gulp-sort' ); // Recommended to prevent unnecessary changes in pot-file.
const cache = require( 'gulp-cache' ); // Cache files in stream for later use.
const remember = require( 'gulp-remember' ); // Adds all the files it has ever seen back into the stream.
const plumber = require( 'gulp-plumber' ); // Prevent pipe breaking caused by errors from gulp plugins.
const beep = require( 'beepbeep' );
const merge = require( 'merge-stream' );
const defaults = require( 'lodash.defaults' );
/**
* Custom Error Handler.
*
* @param Mixed err
*/
const errorHandler = r => {
notify.onError( '\n\n❌ ===> ERROR: <%= error.message %>\n' )( r );
beep();
// this.emit('end');
};
/**
* Task: `browser-sync`.
*
* Live Reloads, CSS injections, Localhost tunneling.
* @link http://www.browsersync.io/docs/options/
*
* @param {Mixed} done Done.
*/
const browsersync = done => {
browserSync.init({
proxy: config.projectURL,
open: config.browserAutoOpen,
injectChanges: config.injectChanges,
watchEvents: [ 'change', 'add', 'unlink', 'addDir', 'unlinkDir' ]
});
done();
};
// Helper function to allow browser reload with Gulp 4.
const reload = done => {
browserSync.reload();
done();
};
/**
* This function 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
* 7. Injects CSS or reloads the browser via browserSync
*/
function processStyle( gulpStream, processOptions = {}) {
processOptions = defaults( processOptions, {
styleDestination: config.styleDestination
});
return gulpStream
.pipe( plumber( errorHandler ) )
.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( sourcemaps.write( './maps' ) )
.pipe( lineec() ) // Consistent Line Endings for non UNIX systems.
.pipe( gulp.dest( processOptions.styleDestination ) )
.pipe( filter( '**/*.css' ) ) // Filtering stream to only css files.
.pipe( mmq({ log: true }) ) // Merge Media Queries only for .min.css version.
.pipe( browserSync.stream() ) // Reloads .css if that is enqueued.
.pipe( rename({ suffix: '.min' }) )
.pipe( minifycss({ maxLineLen: 10 }) )
.pipe( lineec() ) // Consistent Line Endings for non UNIX systems.
.pipe( gulp.dest( processOptions.styleDestination ) )
.pipe( filter( '**/*.css' ) ) // Filtering stream to only css files.
.pipe( browserSync.stream() ); // Reloads .min.css if that is enqueued.
}
/**
* This function 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
*/
function processStyleRTL( gulpStream, processOptions = {}) {
processOptions = defaults( processOptions, {
styleDestination: config.styleDestination
});
return gulpStream
.pipe( plumber( errorHandler ) )
.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 -rtl.css.
.pipe( gulp.dest( processOptions.styleDestination ) )
.pipe( filter( '**/*.css' ) ) // Filtering stream to only css files.
.pipe( browserSync.stream() ) // Reloads .css or -rtl.css, if that is enqueued.
.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( processOptions.styleDestination ) )
.pipe( filter( '**/*.css' ) ) // Filtering stream to only css files.
.pipe( browserSync.stream() ); // Reloads .css or -rtl.css, if that is enqueued.
}
/**
* 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 CSS file
* 5. Renames the CSS file with suffix .min.css
* 6. Minifies the CSS file and generates .min.css
* 7. Injects CSS or reloads the browser via browserSync
*/
gulp.task( 'styles', ( done ) => {
if ( 0 === config.styles.length ) {
return done(); // Exit task when no styles
}
// Process each addon style
let tasks = config.styles.map( function( style ) {
return processStyle(
gulp.src( style.styleSRC, { allowEmpty: true }),
{ styleDestination: config.styleDestination }
).pipe( notify({ message: '\n\n✅ ===> STYLES — completed!\n', onLast: true }) );
});
return merge( tasks );
});
/**
* 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 -rtl.css
* 6. Writes Sourcemaps for -rtl.css
* 7. Renames the CSS files with suffix .min.css
* 8. Minifies the CSS file and generates -rtl.min.css
* 9. Injects CSS or reloads the browser via browserSync
*/
gulp.task( 'stylesRTL', ( done ) => {
if ( 0 === config.styles.length ) {
return done(); // Exit task when no styles
}
// Process each addon style
let tasks = config.styles.map( function( style ) {
return processStyleRTL(
gulp.src( style.styleSRC, { allowEmpty: true }),
{ styleDestination: config.styleDestination }
).pipe( notify({ message: '\n\n✅ ===> STYLES RTL — completed!\n', onLast: true }) );
});
return merge( tasks );
});
/**
* Task: `scripts`.
*
* 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 CSS file
* 5. Renames the CSS file with suffix .min.css
* 6. Minifies the CSS file and generates .min.css
* 7. Injects CSS or reloads the browser via browserSync
*/
gulp.task( 'scripts', ( done ) => {
if ( 0 === config.scripts.length ) {
return done(); // Exit task when no scripts
}
// Process each addon style
let tasks = config.scripts.map( function( script ) {
return processScript(
gulp.src( script.scriptSRC, { allowEmpty: true }),
{ scriptSRC: script.scriptSRC, scriptDestination: config.scriptDestination, scriptFile: script.scriptFile }
).pipe( notify({ message: '\n\n✅ ===> SCRIPTS — completed!\n', onLast: true }) );
});
return merge( tasks );
});
function processScript( gulpStream, processOptions = {}) {
processOptions = defaults( processOptions, {
scriptDestination: config.scriptDestination
});
return gulpStream
.pipe( plumber( errorHandler ) )
.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( processOptions.scriptSRC ) ) // Bring all files back to stream.
.pipe( concat( processOptions.scriptFile + '.js' ) )
.pipe( lineec() ) // Consistent Line Endings for non UNIX systems.
.pipe( gulp.dest( processOptions.scriptDestination ) )
.pipe(
rename({
basename: processOptions.scriptFile,
suffix: '.min'
})
)
.pipe( uglify() )
.pipe( lineec() ) // Consistent Line Endings for non UNIX systems.
.pipe( gulp.dest( processOptions.scriptDestination ) );
}
/**
* 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', () => {
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: '\n\n✅ ===> IMAGES — completed!\n', 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 );
});
/**
* WP POT Translation File Generator.
*
* This task does the following:
* 1. Gets the source of all the PHP files
* 2. Sort files in stream by path or any custom sort comparator
* 3. Applies wpPot with the variable set at the top of this file
* 4. Generate a .pot file of i18n that can be used for l10n to build .mo file
*/
gulp.task( 'translate', () => {
return gulp
.src( config.watchPhp )
.pipe( sort() )
.pipe(
wpPot({
domain: config.textDomain,
package: config.packageName,
bugReport: config.bugReport,
lastTranslator: config.lastTranslator,
team: config.team
})
)
.pipe( gulp.dest( config.translationDestination + '/' + config.translationFile ) )
.pipe( notify({ message: '\n\n✅ ===> TRANSLATE — completed!\n', onLast: true }) );
});
gulp.task( 'copy-vendor-scripts', function() {
return gulp.src( './assets/scripts/vendor/*.js' )
.pipe( gulp.dest( './assets/js' ) );
});
/**
* Watch Tasks.
*
* Watches for file changes and runs specific tasks.
*/
gulp.task(
'default',
gulp.parallel( 'styles', 'scripts', 'copy-vendor-scripts', 'images', browsersync, () => {
gulp.watch( config.watchPhp, reload ); // Reload on PHP file changes.
gulp.watch( config.watchStyles, gulp.parallel( 'styles' ) ); // Reload on SCSS file changes.
gulp.watch( config.watchScripts, gulp.series( 'scripts', reload ) ); // Reload on themeJS file changes.
gulp.watch( config.imgSRC, gulp.series( 'images', reload ) ); // Reload on adminJS file changes.
})
);
const zip = require( 'gulp-zip' ),
buildInclude = [
'**/*',
'!package*.json',
'!./{node_modules,node_modules/**/*}',
'!./{dist,dist/**/*}',
'!./{src,src/**/*}',
'!fs-config.json',
'!composer.*',
'!wpgulp.config.js',
'!gulpfile.babel.js',
'!webpack.config.js',
'!./{svn-assets,svn-assets/**/*}',
'!readme.md'
],
packageJSON = require( './package.json' ),
fileName = packageJSON.name,
fileVersion = packageJSON.version;
/**
* Used to generate the plugin zip file that will be uploaded the Freemius.
* Generates a zip file based on the name and version found within the package.json
*
* usage : gulp zip
*
*/
gulp.task(
'zip', function() {
return gulp.src( buildInclude, {base: './'})
.pipe( zip( fileName + '.v' + fileVersion + '.zip' ) )
.pipe( gulp.dest( 'dist/' ) )
.pipe( notify({message: 'Zip task complete', onLast: true}) );
}
);
const fsConfig = require( './fs-config.json' );
/**
* Used to deploy a version to your Freemius dashboard.
* Gets info from fs-config.json file.
* IMPORTANT : make sure fs-config.json is added to .gitignore, as it contains sensitive info about your Freemius account
* Posts the latest zip in /dist to the Freemius deployment API
*
* usage : gulp freemius-deploy
*/
require( 'gulp-freemius-deploy' )( gulp, {
developer_id: fsConfig.developer_id,
plugin_id: fsConfig.plugin_id,
public_key: fsConfig.public_key,
secret_key: fsConfig.secret_key,
zip_name: fileName + '.v' + fileVersion + '.zip',
zip_path: 'dist/',
add_contributor: true
});
const shell = require( 'gulp-shell' );
//runs composer install for deployment
gulp.task( 'composer-install-deploy', shell.task([
'composer install --prefer-dist --optimize-autoloader --no-dev'
]) );
/**
* Get the plugin ready for deployment
*
* This runs the following tasks in sequence :
* composer-install-deploy
* translate
* zip
*
* usage : gulp pre-deploy
*
*/
gulp.task( 'pre-deploy', gulp.series( 'composer-install-deploy', 'translate', 'zip' ) );
/**
* Deploy the plugin
*
* This runs the following tasks in sequence :
*
* styles
* scripts
* copy-vendor-scripts
* images
* pre-deploy
* freemius-deploy
*
* usage : gulp deploy
*
*/
gulp.task( 'deploy', gulp.series( 'styles', 'scripts', 'copy-vendor-scripts', 'images', 'pre-deploy', 'freemius-deploy' ) );