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