Skip to content

Instantly share code, notes, and snippets.

@theonicolaou
Last active August 29, 2015 14:11
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 theonicolaou/4794545c701f86fdaf87 to your computer and use it in GitHub Desktop.
Save theonicolaou/4794545c701f86fdaf87 to your computer and use it in GitHub Desktop.
Initial Gruntfile for my website, www.theo-nicolaou.co.uk
module.exports = function (grunt) {
grunt.initConfig({
sass: {
dist: {
files: {
'css/tn.css': 'scss/tn.scss',
'css/tn-mediaqueries.css': 'scss/tn-mediaqueries.scss'
},
options: {
sourcemap: 'none'
},
}
}
});
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.registerTask('default', ['sass']);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment