chirpy-starter/_plugins/watcher-patch.rb
Taszid Chowdhury a56aef7812 added plug in
2025-03-24 17:52:17 -04:00

15 lines
290 B
Ruby

# frozen_string_literal: true
require 'jekyll-watch'
module Jekyll
module Watcher
extend self
alias_method :original_listen_ignore_paths, :listen_ignore_paths
def listen_ignore_paths(options)
original_listen_ignore_paths(options) + [%r!.*\.TMP!i]
end
end
end