/*!
* Gruntfile
* @author Jess Hardy
*/
module.exports = function(grunt) {
pkg: grunt.file.readJSON('package.json'),
tag: {
banner: '/*!\n' +
' * <%= pkg.name %>\n' +
' * <%= pkg.title %>\n' +
' * <%= pkg.homepage %>\n' +
' * @author <%= pkg.author.name %>\n' +
' * @author <%= pkg.author.email %>\n' +
' * Copyright <%= pkg.copyright %>.\n' +
' */\n'
},
sass: {
options: {
sourceMap: true,
outputStyle: 'expanded'
},
dev: {
files: {
'../dev/assets/main.css': '../dev/assets/styles/main.scss'
}
}
},
};
grunt.loadNpmTasks('grunt-sass');
grunt.registerTask('dev', ['sass:dev']);
grunt.registerTask('build', ['']);