Gruntfile.js 401 B

123456789101112131415161718
  1. module.exports = function(grunt) {
  2. // Project configuration.
  3. grunt.initConfig({
  4. pkg: grunt.file.readJSON('package.json'),
  5. makepot: {
  6. target: {
  7. options: {
  8. domainPath: '/languages/',
  9. mainFile: 'vamtam-importers.php',
  10. potFilename: 'vamtam-importers.pot',
  11. type: 'wp-plugin',
  12. }
  13. }
  14. },
  15. });
  16. require('matchdep').filterDev('grunt-*').forEach( grunt.loadNpmTasks );
  17. };