module Sass::Plugin

def force_update_stylesheets(individual_files = [])

Other tags:
    See: #update_stylesheets -

Parameters:
  • individual_files (Array<(String, String)>) --
def force_update_stylesheets(individual_files = [])
  old_options = options
  self.options = options.dup
  options[:never_update] = false
  options[:always_update] = true
  options[:cache] = false
  update_stylesheets(individual_files)
ensure
  self.options = old_options
end