-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
469 lines (446 loc) · 15.4 KB
/
Gruntfile.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
/*
* note that some of the tasks defined here may not be used in EVERY project
* I build.
*
* @todo figure out how to call `parcel` (to complile the blocks JS) from grunt
* so that it doesn't have to be called from npm.
*/
/**
* Extract dependencies from package.json for use in a 'src:' property of a task
*
* @param {object} pkg The parsed package.json
* @returns array
*
* @link https://stackoverflow.com/a/34629499/7751811
*/
function getDependencies( pkg ) {
'use strict';
if ( ! pkg.hasOwnProperty( 'dependencies' ) ) {
return [];
}
return Object.keys( pkg.dependencies ).map( function( val ) {
return 'node_modules/' + val + '/**';
} );
}
module.exports = function( grunt ) {
'use strict';
var pkg = grunt.file.readJSON( 'package.json' );
// Project configuration.
grunt.initConfig( {
pkg: pkg,
// cleanup
clean: {
build: ['<%= pkg.name %>', '<%= pkg.name %>.zip', 'assets/**/*.min.*', 'assets/css/**/*-rtl.css'],
release: ['<%= pkg.name %>'],
},
// minify JS files
uglify: {
build: {
files: [
{
expand: true,
src: [
'assets/js/**/*.js', 'vendor/**/*.js',
'!assets/js/**/*.min.js', '!vendor/**/*.min.js'
],
dest: '.',
ext: '.min.js',
}
],
},
},
// create RTL CSS files
rtlcss: {
options: {
// borrowed from Core's Gruntfile.js, with a few mods
// 1. reformated (e.g., [\n\t{ -> [ {, etc)
// 2. dashicon content strings changed from '"\\f140"'
// to "'\\f140'", etc
opts: {
clean: false,
processUrls: {
atrule: true,
decl: false,
},
stringMap: [
{
name: 'import-rtl-stylesheet',
priority: 10,
exclusive: true,
search: ['.css'],
replace: ['-rtl.css'],
options: {
scope: 'url',
ignoreCase: false
},
},
],
},
// @todo grunt-rtlcss appears to require leading tabs in order for the
// "plugin" to find the appropriate lines for change. Look into
// whether there is a config option to change that, in case
// assets/css/wphelpkiticons.css gets committed with spaces.
plugins: [
{
name: 'swap-dashicons-left-right-arrows',
priority: 10,
directives: {
control: {},
value: []
},
processors: [
{
expr: /content/im,
action: function( prop, value ) {
if ( value === "'\\f141'" ) { // dashicons-arrow-left
value = "'\\f139'";
}
else if ( value === "'\\f340'" ) { // dashicons-arrow-left-alt
value = "'\\f344'";
}
else if ( value === "'\\f341'" ) { // dashicons-arrow-left-alt2
value = "'\\f345'";
}
else if ( value === "'\\f139'" ) { // dashicons-arrow-right
value = "'\\f141'";
}
else if ( value === "'\\f344'" ) { // dashicons-arrow-right-alt
value = "'\\f340'";
}
else if ( value === "'\\f345'" ) { // dashicons-arrow-right-alt2
value = "'\\f341'";
}
return {
prop: prop,
value: value
};
},
}
],
}
],
},
build: {
files: [
{
expand: true,
src: [
'assets/css/**/*.css', 'vendor/**/*.css',
'!assets/css/**/*-rtl.css', '!assets/css/**/*.min.css',
'!vendor/**/*-rtl.css', '!vendor/**/*.min.css'
],
dest: '.',
ext: '-rtl.css',
}
],
},
},
// SASS pre-process CSS files
sass: {
options: {
style: 'expanded',
},
build: {
files: [
{
expand: true,
src: ['assets/css/**/*.scss'],
dest: '.',
ext: '.css',
}
],
},
},
// minify CSS files
cssmin: {
build: {
files: [
{
expand: true,
src: [
'assets/css/**/*.css', 'vendor/**/*.css',
'!assets/css/**/*.min.css', '!vendor/**/*.min.css',
],
dest: '.',
ext: '.min.css',
}
],
},
},
// copy files from one place to another
copy: {
release: {
expand: true,
src: ['plugin.php', 'uninstall.php', 'readme.txt', 'assets/**', 'includes/**', 'vendor/**',
'!assets/css/**/*.scss'],
dest: '<%= pkg.name %>',
},
node_modules: {
expand: true,
src: getDependencies( pkg ),
dest: 'vendor',
rename: function( dest, src ) {
return dest + '/' + src.substring( src.indexOf( '/' ) + 1 );
},
},
},
// package into a zip
zip: {
build: {
expand: true,
cwd: '.',
src: '<%= pkg.name %>/**',
dest: '<%= pkg.name %>.<%= pkg.version %>.zip',
},
},
// do string search/replace on various files
replace: {
version_readme_txt: {
src: ['readme.txt'],
overwrite: true,
replacements: [
{
from: /^(Stable tag:) (.*)/m,
to: '$1 <%= pkg.version %>',
},
],
},
version_plugin: {
src: ['plugin.php'],
overwrite: true,
replacements: [
// this is for the plugin_data comment
{
from: /^( \* Version:) (.*)/mg,
to: '$1 <%= pkg.version %>',
},
// this is for plugins that use a static class var
// instead of the dynamic $this->version that SHC Framework allows
{
from: /^(.*static \$VERSION =) '(.*)'/m,
to: "$1 '<%= pkg.version %>'",
},
// this is for plugins that use a class const
// instead of the dynamic $this->version that SHC Framework allows
{
from: /^(.*const VERSION =) '(.*)'/m,
to: "$1 '<%= pkg.version %>'",
},
],
},
plugin_uri: {
src: ['plugin.php'],
overwrite: true,
replacements: [
// this is for the plugin_uri comment
{
from: /^( \* Plugin URI:) (.*)/m,
to: '$1 <%= pkg.repository_base %>/<%= pkg.name %>',
},
// this is for the github_plugin_uri comment
{
from: /^( \* GitHub Plugin URI:) (.*)/m,
to: '$1 <%= pkg.repository_base %>/<%= pkg.name %>',
},
],
},
description_readme_txt: {
src: ['readme.txt'],
overwrite: true,
replacements: [
{
// for this regex to work the readme.txt file MUST have
// unix line endings (Windows won't work).
// note the look ahead. Also, the repeat on the
// newline char class MUST be {2,2}, using just {2} always
// fails
from: /.*(?=[\n\r]{2,2}== Description ==)/m,
to: '<%= pkg.description %>',
},
],
},
description_plugin: {
src: ['plugin.php'],
overwrite: true,
replacements: [
{
from: /^( \* Description:) (.*)/m,
to: '$1 <%= pkg.description %>',
},
],
},
plugin_name_readme_txt: {
src: ['readme.txt'],
overwrite: true,
replacements: [
{
from: /^=== (.*) ===/m,
to: '=== <%= pkg.plugin_name %> ==='
},
],
},
plugin_name_plugin: {
src: ['plugin.php'],
overwrite: true,
replacements: [
{
from: /^( \* Plugin Name:) (.*)/m,
to: '$1 <%= pkg.plugin_name %>',
},
],
},
plugin_name_phpunit: {
src: ['phpunit.xml.dist'],
overwrite: true,
replacements: [
{
from: /^(\s*<const name='PLUGIN_TEST_NAME' value=')([^']+)(' \/>)/m,
to: '$1<%= pkg.name %>$3',
},
],
},
tested_up_to: {
src: ['readme.txt'],
overwrite: true,
replacements: [
{
from: /^(Tested up to:) (.*)/m,
to: '$1 <%= pkg.tested_up_to %>',
},
],
},
license_readme: {
src: ['readme.txt'],
overwrite: true,
replacements: [
{
from: /^(License:) (.*)/m,
to: '$1 <%= pkg.license %>',
},
],
},
license_uri_readme: {
src: ['readme.txt'],
overwrite: true,
replacements: [
{
from: /^(License URI:) (.*)/m,
to: '$1 <%= pkg.license_uri %>',
},
],
},
license_uri_plugin: {
src: ['plugin.php'],
overwrite: true,
replacements: [
{
from: /^( \* License URI:) (.*)/m,
to: '$1 <%= pkg.license_uri %>',
},
],
},
text_domain: {
src: ['plugin.php'],
overwrite: true,
replacements: [
// this is for the text domain comment
{
from: /^( \* Text Domain:) (.*)/m,
to: '$1 <%= pkg.name %>',
},
// this is for __() and cousins
{
from: /<%= TextDomain %>/g,
to: '<%= pkg.name %>',
},
],
},
},
// lint JS files
jshint: {
gruntfile: {
options: {
jshintrc: '.jshintrc'
},
src: 'Gruntfile.js'
},
assets: {
options: {
jshintrc: '.jshintrc'
},
// note: we do NOT jshint any of the blocks JS, src or dist.
src: ['assets/**/*.js', '!assets/**/*.min.js', '!assets/js/blocks/**/*.js']
},
tests: {
options: {
jshintrc: '.jshintrc'
},
src: ['tests/**/*.js', '!tests/**/*.min.js']
},
},
// watch for mods to certain files and fire appropriate tasks
// when they change
// note: I do NOT use this vary often
watch: {
css: {
files: ['assets/css/**/*.scss'],
tasks: ['sass'],
options: {
spawn: false,
},
},
js: {
files: ['assets/js/**/*.js', '!assets/js/**/*.min.js'],
tasks: ['jshint'],
options: {
spawn: false,
},
},
},
// Create README.md for GitHub.
wp_readme_to_markdown: {
options: {
screenshot_url: 'assets/images/{screenshot}.png?raw=true'
},
dest: {
files: {
'README.md': 'readme.txt'
}
},
// post_convert: function( content ) {
// content = content.replace( /^### [0-9]+..*$/g, '' );
//
// return content;
// }
},
} );
grunt.loadNpmTasks( 'grunt-contrib-clean' );
grunt.loadNpmTasks( 'grunt-composer' );
grunt.loadNpmTasks( 'grunt-contrib-uglify-es' );
grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
grunt.loadNpmTasks( 'grunt-contrib-copy' );
grunt.loadNpmTasks( 'grunt-contrib-sass' );
grunt.loadNpmTasks( 'grunt-contrib-watch' );
grunt.loadNpmTasks( 'grunt-text-replace' );
grunt.loadNpmTasks( 'grunt-rtlcss' );
grunt.loadNpmTasks( 'grunt-wp-readme-to-markdown' );
grunt.loadNpmTasks( 'grunt-zip' );
grunt.registerTask( 'default', ['build'] );
grunt.registerTask( 'build', [
'clean', 'composer:dump-autoload:optimize', //'replace',
'copy:node_modules', 'sass', 'rtlcss', 'cssmin', 'uglify'
] );
grunt.registerTask( 'autoload', ['composer:dump-autoload:optimize'] );
// @todo install/configure grunt-phpunit and add it to prerelease
// initial attempts to do so weren't successful.
grunt.registerTask( 'prerelease', ['jshint'] );
grunt.registerTask( 'readme', [
'replace:version_readme_txt', 'replace:plugin_name_readme_txt',
'replace:description_readme_txt',
'replace:license_readme', 'replace:license_uri_readme',
'replace:tested_up_to',
'wp_readme_to_markdown'
] );
grunt.registerTask( 'release', ['build', 'prerelease', 'replace', 'wp_readme_to_markdown', 'copy', 'zip:build', 'clean:release'] );
};