File "Gruntfile.js"

Full Path: /home/attunedd/public_html/byp/izo/vendor/kirki-framework/control-sortable/Gruntfile.js
File size: 513 bytes
MIME-type: text/plain
Charset: utf-8

/* global module */
module.exports = function( grunt ) {

	grunt.initConfig( {

		// Compile CSS
		sass: {
			dist: {
				files: {
					'src/assets/styles/style.css': 'src/assets/styles/style.scss'
				}
			}
		},

		// Watch task (run with "grunt watch")
		watch: {
			css: {
				files: [
					'src/assets/styles/*.scss'
				],
				tasks: [ 'sass' ]
			}
		}
	} );

	grunt.loadNpmTasks( 'grunt-contrib-sass' );
	grunt.loadNpmTasks( 'grunt-contrib-watch' );

	grunt.registerTask( 'default', [ 'sass:dist' ] );
};