https://git.io/vVofO
http://codepen.io
http://prepros.io
http://gruntjs.com
$ npm install --save-dev grunt-such-task grunt-very-supported grunt-wow// Gruntfile.js
module.exports = function(grunt) {
grunt.initConfig({
// COMPILE SCSS FILES INTO CSS
sass: {
options: {
sourceMap: true
},
dist: {
files: {
'styles/css/styles.css': 'styles/scss/styles.scss'
}
}
},
});
grunt.loadNpmTasks('grunt-sass');
grunt.registerTask('default', ['sass']);
};