mirror of
https://gh.wpcy.net/https://github.com/presscustomizr/hueman.git
synced 2026-04-25 01:15:06 +08:00
18 lines
No EOL
532 B
JavaScript
18 lines
No EOL
532 B
JavaScript
module.exports = {
|
|
//for some reason we cannot create a parent property like we do in makepot with 'plugin' (and invoke addtextdomain:plugin)
|
|
options: {
|
|
textdomain: '<%= vars.textdomain %>', // Project text domain.
|
|
updateDomains: true // List of text domains to replace.
|
|
},
|
|
target: {
|
|
files: {
|
|
src: [
|
|
'*/*.php',
|
|
'**/*.php',
|
|
'!build/**',
|
|
'!node_modules/**',
|
|
'!tests/**'
|
|
]
|
|
}
|
|
}
|
|
} |