-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathGruntfile.js
61 lines (58 loc) · 1.26 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
module.exports = function( grunt ) {
// Project configuration.
grunt.initConfig({
phpcs: {
'default': {
cmd: './vendor/bin/phpcs',
args: [ '--standard=./phpcs.ruleset.xml', '-p', '-s', '-v', '--extensions=php', '.' ]
}
},
uglify: {
all: {
files: {
'js/icon-picker.min.js': ['js/icon-picker.js']
}
}
},
cssmin: {
main: {
expand: true,
cwd: 'css/',
src: ['icon-picker.css'],
dest: 'css/',
ext: '.min.css'
},
types: {
expand: true,
cwd: 'css/types/',
src: [ '*.css', '!*.min.css' ],
dest: 'css/types/',
ext: '.min.css'
}
},
makepot: {
target: {
options: {
mainFile: 'icon-picker.php',
type: 'wp-plugin',
exclude: ['tests']
}
}
}
});
// Load tasks.
grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
grunt.loadNpmTasks( 'grunt-contrib-uglify' );
grunt.loadNpmTasks( 'grunt-wp-i18n' );
// Register tasks.
grunt.registerMultiTask( 'phpcs', 'Runs PHP code sniffs.', function() {
grunt.util.spawn({
cmd: this.data.cmd,
args: this.data.args,
opts: { stdio: 'inherit' }
}, this.async() );
});
grunt.registerTask( 'i18n', ['makepot']);
grunt.registerTask( 'compress', [ 'cssmin', 'uglify' ]);
grunt.registerTask( 'default', [ 'i18n', 'compress' ]);
};