2018-07-10 12:48:06 +00:00
|
|
|
/* eslint-disable */
|
2018-04-17 21:03:14 +00:00
|
|
|
module.exports = function( grunt ) {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
// Project configuration
|
|
|
|
grunt.initConfig( {
|
|
|
|
makepot: {
|
|
|
|
target: {
|
|
|
|
options: {
|
|
|
|
domainPath: '/languages',
|
2020-02-14 02:23:21 +00:00
|
|
|
exclude: [ '.git/*', 'bin/*', 'node_modules/*', 'tests/*' ],
|
2019-03-13 17:14:02 +00:00
|
|
|
mainFile: 'woocommerce-admin.php',
|
|
|
|
potFilename: 'woocommerce-admin.pot',
|
2018-04-17 21:03:14 +00:00
|
|
|
potHeaders: {
|
|
|
|
poedit: true,
|
2020-02-14 02:23:21 +00:00
|
|
|
'x-poedit-keywordslist': true,
|
2018-04-17 21:03:14 +00:00
|
|
|
},
|
|
|
|
type: 'wp-plugin',
|
2020-02-14 02:23:21 +00:00
|
|
|
updateTimestamp: true,
|
|
|
|
},
|
|
|
|
},
|
2018-04-17 21:03:14 +00:00
|
|
|
},
|
2018-09-21 17:13:28 +00:00
|
|
|
|
|
|
|
checktextdomain: {
|
2020-02-14 02:23:21 +00:00
|
|
|
options: {
|
2019-03-13 17:14:02 +00:00
|
|
|
text_domain: 'woocommerce-admin',
|
2018-09-21 17:13:28 +00:00
|
|
|
keywords: [
|
|
|
|
'__:1,2d',
|
|
|
|
'_e:1,2d',
|
|
|
|
'_x:1,2c,3d',
|
|
|
|
'esc_html__:1,2d',
|
|
|
|
'esc_html_e:1,2d',
|
|
|
|
'esc_html_x:1,2c,3d',
|
|
|
|
'esc_attr__:1,2d',
|
|
|
|
'esc_attr_e:1,2d',
|
|
|
|
'esc_attr_x:1,2c,3d',
|
|
|
|
'_ex:1,2c,3d',
|
|
|
|
'_n:1,2,4d',
|
|
|
|
'_nx:1,2,4c,5d',
|
|
|
|
'_n_noop:1,2,3d',
|
2020-02-14 02:23:21 +00:00
|
|
|
'_nx_noop:1,2,3c,4d',
|
|
|
|
],
|
2018-09-21 17:13:28 +00:00
|
|
|
},
|
|
|
|
files: {
|
2020-02-14 02:23:21 +00:00
|
|
|
src: [
|
|
|
|
'**/*.php', // Include all files/
|
|
|
|
'!node_modules/**', // Exclude node_modules/
|
|
|
|
'!tests/**', // Exclude tests/
|
|
|
|
'!vendor/**', // Exclude vendor/
|
|
|
|
'!tmp/**', // Exclude tmp/
|
2018-09-21 17:13:28 +00:00
|
|
|
],
|
2020-02-14 02:23:21 +00:00
|
|
|
expand: true,
|
|
|
|
},
|
|
|
|
},
|
2018-04-17 21:03:14 +00:00
|
|
|
} );
|
|
|
|
|
2018-09-26 14:23:55 +00:00
|
|
|
// Load NPM tasks to be used here.
|
2018-04-17 21:03:14 +00:00
|
|
|
grunt.loadNpmTasks( 'grunt-wp-i18n' );
|
2018-09-21 17:13:28 +00:00
|
|
|
grunt.loadNpmTasks( 'grunt-checktextdomain' );
|
2018-04-17 21:03:14 +00:00
|
|
|
|
|
|
|
grunt.util.linefeed = '\n';
|
|
|
|
};
|