desrosj/respect-art-direction

View on GitHub
Gruntfile.js

Summary

Maintainability
A
1 hr
Test Coverage
Function `exports` has 39 lines of code (exceeds 25 allowed). Consider refactoring.
'module' is not defined.
module.exports = function( grunt ) {
 
'use strict';
'banner' is assigned a value but never used.
var banner = '/**\n * <%= pkg.homepage %>\n * Copyright (c) <%= grunt.template.today("yyyy") %>\n * This file is generated automatically. Do not edit.\n */\n';
 
// Project configuration
grunt.initConfig( {
 
pkg: grunt.file.readJSON( 'package.json' ),
 
addtextdomain: {
options: {
textdomain: 'respect-art-direction'
},
target: {
files: {
src: [ '*.php', '**/*.php', '!node_modules/**', '!php-tests/**', '!bin/**' ]
}
}
},
 
wp_readme_to_markdown: {
your_target: {
files: {
'README.md': 'readme.txt'
}
}
},
 
makepot: {
target: {
options: {
domainPath: '/languages',
mainFile: 'respect-art-direction.php',
potFilename: 'respect-art-direction.pot',
potHeaders: {
poedit: true,
'x-poedit-keywordslist': true
},
type: 'wp-plugin',
updateTimestamp: true
}
}
}
} );
 
grunt.loadNpmTasks( 'grunt-wp-i18n' );
grunt.loadNpmTasks( 'grunt-wp-readme-to-markdown' );
grunt.registerTask( 'i18n', [ 'addtextdomain', 'makepot' ] );
grunt.registerTask( 'readme', [ 'wp_readme_to_markdown' ] );
 
grunt.util.linefeed = '\n';
 
};