datamad2017/_sass/remove-all-comments-monkey-patch.rb

8 lines
152 B
Ruby
Raw Normal View History

2014-08-14 23:27:17 +02:00
class Sass::Tree::Visitors::Perform < Sass::Tree::Visitors::Base
# Removes all comments completely
def visit_comment(node)
return []
end
end