grunt-node-sass
v3.0.0
Published
grunt task for compile sass styles by node-sass
Downloads
508
Readme
grunt-node-sass
Getting Started
npm install grunt-node-sass --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-node-sass');
Example:
sass: {
dist: {
src: 'source.scss',
dest: 'build.css'
}
},