This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
91 lines (80 loc) · 2.37 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
/*
* Remove Medium cross links
*
* Remove Medium cross links footer from WordPress posts.
*
* @package RMCL
*
* @author Typist Tech <[email protected]>
* @copyright 2017-2018 Typist Tech
* @license GPL-2.0-or-later
*
* @see https://typist.tech/projects/remove-medium-cross-links
* @see https://wordpress.org/plugins/remove-medium-cross-links/
*/
module.exports = function (grunt) {
'use strict';
// Project configuration
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
addtextdomain: {
options: {
textdomain: '<%= pkg.name %>',
updateDomains: true
},
target: {
files: {
src: [
'*.php',
'src/**/*.php',
'vendor/**/*.php'
]
}
}
},
makepot: {
target: {
options: {
include: [
'.*.php',
'src/.*',
'vendor/.*'
],
mainFile: '<%= pkg.name %>.php',
potHeaders: {
poedit: true,
'Project-Id-Version': '<%= pkg.name %> <%= pkg.version %>',
'language-team': '<%= pkg.pot.languageteam %>',
'last-translator': '<%= pkg.pot.lasttranslator %>',
'report-msgid-bugs-to': '<%= pkg.pot.reportmsgidbugsto %>'
},
type: 'wp-plugin',
updateTimestamp: true
}
}
},
// Bump version numbers
version: {
changelog: {
options: {
prefix: 'future-release='
},
src: ['.github_changelog_generator']
},
php: {
options: {
prefix: '\\* Version:\\s+'
},
src: ['<%= pkg.name %>.php']
},
readme: {
options: {
prefix: 'Stable tag:\\s+'
},
src: ['readme.txt']
}
}
});
require('load-grunt-tasks')(grunt);
grunt.util.linefeed = '\n';
};