Last active
August 29, 2015 14:04
-
-
Save princed/25e9dee001d5364b471a to your computer and use it in GitHub Desktop.
grunt-sass clean test case
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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']); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "sass-test-case", | |
"version": "0.0.0", | |
"license": "MIT", | |
"devDependencies": { | |
"grunt": "0.4.5", | |
"grunt-sass": "0.14.0" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.tst { | |
display: block; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment