-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathGruntfile.js
More file actions
49 lines (49 loc) · 784 Bytes
/
Gruntfile.js
File metadata and controls
49 lines (49 loc) · 784 Bytes
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
/**
* Grunt File
*
* @package tweet-old-post
*/
module.exports = function (grunt) {
grunt.initConfig(
{
wp_readme_to_markdown: {
files: {
'readme.md': 'readme.txt'
},
},
version: {
project: {
src: [
'package.json'
]
},
style: {
options: {
prefix: 'Version\\:\.*\\s'
},
src: [
'tweet-old-post.php',
]
},
class: {
options: {
prefix: '\\$this->version\.*\\s=\.*\\s\''
},
src: [
'includes/class-rop.php',
]
},
constants: {
options: {
prefix: 'ROP_LITE_VERSION\'\,\\s+\''
},
src: [
'tweet-old-post.php',
]
}
}
}
);
grunt.loadNpmTasks( 'grunt-version' );
grunt.loadNpmTasks( 'grunt-wp-readme-to-markdown' );
};