This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
Hi there, I was just wondering if there was some way for your plugin to support the fireSass (https://addons.mozilla.org/en-US/firefox/addon/firesass-for-firebug/) extension in Firefox. As far as I can see all you need is to set the Sass config property Sass::Plugin.options[:debug_info] = true. Would this be possible to include in the config of the Workbench extension? I have no idea if this would even work with your implementation of Sass, but it would make debugging css a lot more enjoyable if you got this working. Thanks for a great extension! |
|
|
You can do this by adding the following line at the top of your .scss file:
Note this must be the very first line and it is sensitive to spacing (i.e. no spaces between the Let us know if you run into any problems! |
|
|
Hi, I want the same as Ivan, but your solution does not work since you've changed the underlying engine for Sass-compilation (as you've already explained in this post: http://www.mindscapehq.com/forums/thread/342079) However, i cannot get debug_info to work even with the new syntax. This is what I write:
And this is the error I get:
Any suggestions? -b |
|
|
The option you want is named --debug-info rather than --debug_info
|
|
|
I had already attempted "--debug-info true", but that only generated an empty file. Simply specifying "--debug-info" and nothing more achieved the desired result. Thanx :) |
|