Skip to content

Instantly share code, notes, and snippets.

@szmeku
Created September 4, 2014 10:07
Show Gist options
  • Save szmeku/61d93fdf9d8e0406f4f7 to your computer and use it in GitHub Desktop.
Save szmeku/61d93fdf9d8e0406f4f7 to your computer and use it in GitHub Desktop.
Turn off / turn on source maps
# 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