Skip to content

Instantly share code, notes, and snippets.

@corvine74
Created September 1, 2015 22:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corvine74/829c8681517b657f58eb to your computer and use it in GitHub Desktop.
Save corvine74/829c8681517b657f58eb to your computer and use it in GitHub Desktop.
/*!
* 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', ['']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment