Skip to content

Instantly share code, notes, and snippets.

@princed
Last active August 29, 2015 14:04
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 princed/25e9dee001d5364b471a to your computer and use it in GitHub Desktop.
Save princed/25e9dee001d5364b471a to your computer and use it in GitHub Desktop.
grunt-sass clean test case
module.exports = function(grunt) {
grunt.initConfig({
sass: {
options: {
// Comment this option to avoid bug
sourceComments: 'map'
},
'tst.css': 'tst.scss'
}
});
grunt.loadNpmTasks('grunt-sass');
grunt.registerTask('default', ['sass']);
};
{
"name": "sass-test-case",
"version": "0.0.0",
"license": "MIT",
"devDependencies": {
"grunt": "0.4.5",
"grunt-sass": "0.14.0"
}
}
.tst {
display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment