Created
September 4, 2014 10:07
-
-
Save szmeku/61d93fdf9d8e0406f4f7 to your computer and use it in GitHub Desktop.
Turn off / turn on source maps
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
# Turn on script | |
#!/bin/bash | |
sudo gem uninstall compass sass -aIx | |
sudo gem install sass compass --pre --verbose | |
sed -i "s/outputStyle: 'compressed'/outputStyle: 'compressed',sourcemap: true/g" Gruntfile.js | |
# Turn off script | |
#!/bin/bash | |
sudo gem uninstall compass -aIx sass -aIx | |
sudo gem install sass:3.2.19 compass:0.12.6 --verbose | |
sed -i "s/outputStyle: 'compressed',sourcemap: true/outputStyle: 'compressed'/g" Gruntfile.js | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment