You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This may be related to "Failure with Sass @import#6". It looks like the same is happening w/ LESS. @imports are failing unless executing from a base directory.
My current converted (which is working):
class LessConverter < JekyllAssetPipeline::Converter
require 'less'
def self.filetype
'.less'
end
def convert
Dir.chdir "../_assets/stylesheets" do
return Less::Parser.new(:paths => ['.', '_assets']).parse(@content).to_css
end
end
end
May be worth adding a LESS sample to the README as well.
The text was updated successfully, but these errors were encountered:
This may be related to "Failure with Sass @import #6". It looks like the same is happening w/ LESS. @imports are failing unless executing from a base directory.
My current converted (which is working):
May be worth adding a LESS sample to the README as well.
The text was updated successfully, but these errors were encountered: