-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
68 lines (60 loc) · 1.3 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
less: {
wp_css: {
files: {
'assets/css/admin.css': 'assets/less/admin.less'
}
}
},
cssmin: {
wp_css: {
files: {
'assets/css/admin.min.css': 'assets/css/admin.css'
}
}
},
watch: {
wp_css: {
files: ['assets/less/*.less'],
tasks: ['build_wp_css']
},
wp_readme: {
files: ['readme.txt'],
tasks: ['build_wp_md']
}
},
wp_readme_to_markdown: {
build_wp_md: {
files: {
'readme.md': 'readme.txt'
},
options: {
screenshot_url: 'https://ps.w.org/auction-nudge/assets/{screenshot}.png',
post_convert: function(content) {
//Remove unsupported Vimeo tags
return content.replace(/\[vimeo(.*)\]\n*/g, '');
}
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-wp-readme-to-markdown');
grunt.registerTask('default', [
'less',
'cssmin',
'wp_readme_to_markdown',
'watch'
]);
grunt.registerTask('build_wp_css', [
'less:wp_css',
'cssmin:wp_css'
]);
grunt.registerTask('build_wp_md', [
'wp_readme_to_markdown:build_wp_md'
]);
};