Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
:
gruntfile.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
module.exports = function(grunt) { grunt.loadNpmTasks('grunt-wp-i18n'); grunt.loadNpmTasks('grunt-contrib-cssmin'); grunt.initConfig({ makepot: { target: { options: { domainPath: '/languages', mainFile: 'klarna-payments-for-woocommerce', potFilename: 'klarna-payments-for-woocommerce.pot', processPot(pot, options) { // add header options return pot; }, type: 'wp-plugin', }, }, }, // minify css cssmin: { target: { files: [{ expand: true, cwd: './assets/css', src: ['*.css', '!*.min.css'], dest: './assets/css', ext: '.min.css', }], }, } }); };