grunt-contrib-sass
grunt-contrib-sass copied to clipboard
Need to excute sass with extra cli option
I recently run into a problem where encoding gets trouble. looks like current the only solution is adding -E UTF-8
to cli option. Is there a option for extra cli option? Thanks.
related symptom : https://groups.google.com/forum/?fromgroups=#!msg/sass-lang/lHpKGGi9eWY/qnfKlw3Jx2wJ
I realize this is super old, but for anyone coming across this in the future, grunt-contrib-sass
passes options directly through so you can just specify "default-encoding": "UTF-8"
in your grunt options.
options: {
cacheLocation: '.sass-cache',
lineNumbers: true,
style: 'expanded',
"default-encoding": "UTF-8"
}