Advertisement
asanchez75

chrome/linux/sass

Sep 22nd, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. 1. Uninstall compass and sass
  2.  
  3. 2. Run
  4.  
  5. sudo gem install sass -v 3.3.0.alpha.141 --pre
  6.  
  7. 3. Use in your config.rb
  8.  
  9. http_path = "/"
  10. css_dir = "css"
  11. sass_dir = "scss"
  12. images_dir = "images"
  13. javascripts_dir = "js"
  14. sass_options = {:sourcemap => true}
  15.  
  16. 4. Run
  17.  
  18. sass --watch --scss --sourcemap scss:css
  19.  
  20.  
  21. Links
  22.  
  23. http://devtoolsecrets.com/secret/editing-use-sass-source-maps.html
  24. http://stackoverflow.com/questions/16040944/debugging-sass-in-chrome-on-osx
  25. http://bricss.net/post/33788072565/using-sass-source-maps-in-webkit-inspector
  26. https://coderwall.com/p/tjbktw
  27. http://net.tutsplus.com/tutorials/html-css-techniques/developing-with-sass-and-chrome-devtools/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement