dckesler
6/11/2015 - 2:43 AM

For you Ty

For you Ty

module.exports = function(grunt) {
	grunt.initConfig({
		pkg: grunt.file.readJSON('package.json'),
		less: {
			dist: {
				files: {
				  'public/css/styles.css' : 'src/less/master.less'
				}
			}
		},
		watch: {
			less: {
				files: '**/*.less',
				tasks: ['less']
			}
		}
	});
	grunt.loadNpmTasks('grunt-contrib-less');
	grunt.loadNpmTasks('grunt-contrib-watch');
	grunt.registerTask('dev',['watch']);
};