-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathGruntfile.js
126 lines (114 loc) · 2.42 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
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
clean: {
//Clean up build folder
main: ['build/**']
},
copy: {
// Copy the plugin to a versioned release directory
main: {
src: [
'**',
'!*~',
'!node_modules/**',
'!build/**',
'!.git/**','!.gitignore','!.gitmodules',
'!tests/**',
'!vendor/**',
'!src/**',
'!Gruntfile.js','!package.json','!package-lock.json',
'!composer.lock','!composer.phar','!composer.json',
'!CONTRIBUTING.md',
'!gitcreds.json',
'!.gitignore',
'!.gitmodules',
'!*~',
'!*.sublime-workspace',
'!*.sublime-project',
'!*.transifexrc',
'!deploy.sh',
'!languages/.tx',
'!languages/tx.exe',
'!README.md',
'!readme.md',
'!.wordpress-org/**',
'!.github/**',
'!demo-content/**',
],
dest: 'build/'
},
},
// Make a zipfile.
compress: {
main: {
options: {
mode: 'zip',
archive: 'deploy/<%= pkg.name %>-<%= pkg.version %>.zip',
},
expand: true,
cwd: 'build/',
dest: '<%= pkg.name %>',
src: [ '**/*' ]
},
},
// bump version numbers
replace: {
Version: {
src: [
'readme.txt',
'readme.md',
'<%= pkg.name %>.php'
],
overwrite: true,
replacements: [
{
from: /\*\*Stable tag:\*\* .*/,
to: "**Stable tag:** <%= pkg.version %> "
},
{
from: /Stable tag: .*/,
to: "Stable tag: <%= pkg.version %>"
},
{
from: /Version:.\d+(\.\d+)+/,
to: "Version: <%= pkg.version %>"
},
{
from: /public \$version = \'.*/,
to: "public $version = '<%= pkg.version %>';"
},
{
from: /CONST VERSION = \'.*/,
to: "CONST VERSION = '<%= pkg.version %>';"
}
]
}
},
// Documentation
wp_readme_to_markdown: {
convert:{
files: {
'readme.md': 'readme.txt'
},
},
},
// # Internationalization
// Add text domain
addtextdomain: {
textdomain: '<%= pkg.name %>',
target: {
files: {
src: ['*.php', '**/*.php', '!node_modules/**', '!build/**']
}
}
},
});
grunt.registerTask( 'docs', [ 'wp_readme_to_markdown'] );
grunt.registerTask( 'build', [ 'replace', 'clean', 'copy' ] );
grunt.registerTask( 'deploy', [ 'build', 'compress' ] );
grunt.registerTask( 'release', [ 'deploy', 'clean' ] );
grunt.registerTask( 'zip', [ 'clean', 'copy', 'compress' ] );
};