Closed agarzola closed 10 years ago
As this is not an issue with Breakpoint itself, but rather using Compass extensions with serve
, I feel as if it's inappropriate for this to be in the issue queue as per our Getting Help with Breakpoint guidelines. I encourage you to re-post this issue over on Stack Overflow and tag it with breakpoint-sass
and maybe ruby
as well.
Will do, @Snugug. Thanks!
Hi. I’m using breakpoint within a serve project. After adding
require 'breakpoint'
to my './config.ru' and@import 'breakpoint'
to my stylesheets, breakpoint works well while running serve (which I actually run via Pow).However, when using
serve export
to export the site to static HTML/CSS/JS files within a predetermined folder, I get the following error in my stylesheets:I’ve been poking around the serve gem itself and found that export simply runs
compass compile -c '#{@input}/compass.config' '#{@input}'
to compile stylesheets before copying them to the destination folder. I had also learned some time ago that the export feature does not yet useconfig.ru
(as it should), and I haven’t been able to figure out where exactly I need to tell compass to use the installed breakpoint gem.I created an issue on the serve project, but I’m hoping someone here can share some much needed insight. Thanks!