File "coffee.js"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/facebook-for-woocommerce/vendor/skyverge/wc-plugin-framework/grunt/configs/coffee.js
File size: 397 bytes
MIME-type: text/plain
Charset: utf-8

/* jshint node:true */
module.exports = function( grunt ) {
	'use strict';

	var config = {};

	// Compile CoffeeScript
	config.coffee = {
		compile: {
			options: {
				sourceMap: true
			},
			files: [
				{
					expand: true,
					cwd: '<%= dirs.general.js %>/admin/',
					dest: '<%= dirs.general.js %>/admin/',
					src: '*.coffee',
					ext: '.min.js'
				}
			]
		}
	};

	return config;
};