File "sass.js"

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

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

	var config = {};

	// Compile all .scss files.
	config.sass = {
		compile: {
			options: {
				style: 'compressed',
				sourcemap: true
			},
			files: [
				{
					expand: true,
					cwd: '<%= dirs.general.css %>/admin/',
					dest: '<%= dirs.general.css %>/admin/',
					src: ['*.scss', '!_*.scss'],
					ext: '.min.css'
				},
				{
					expand: true,
					cwd: '<%= dirs.gateway.css %>/admin/',
					dest: '<%= dirs.gateway.css %>/admin/',
					src: ['*.scss', '!_*.scss'],
					ext: '.min.css'
				},
				{
					expand: true,
					cwd: '<%= dirs.gateway.css %>/frontend/',
					dest: '<%= dirs.gateway.css %>/frontend/',
					src: ['*.scss', '!_*.scss'],
					ext: '.min.css'
				}
			]
		}
	};

	return config;
};