# File lib/compass/commands/watch_project.rb, line 35
      def perform
        compiler = new_compiler_instance
        compiler.logger.time = true if options[:time]
        prepare_project!(compiler)
        compiler.logger.log ">>> #{compiler.logger.color(:green)}Compass is watching for changes.#{compiler.logger.color(:clear)} #{compiler.logger.color(:red)}Press Ctrl-C to Stop.#{compiler.logger.color(:clear)}"
        begin
          compiler.watch!(:additional_watch_paths => additional_watch_paths, &method(:notify_watches))
          happy_styling!(compiler.logger)
        rescue Interrupt
          happy_styling!(compiler.logger)
        end
      end