jekyll-watch
jekyll-watch copied to clipboard
:eyes: Rebuild your Jekyll site when a file changes with the `--watch` switch.
Hello, maintainers! :wave: By my calculations, it's time for a new release of jekyll-watch. It's been over 2 months since the last release, [v2.2.1](https://github.com/jekyll/jekyll-watch/releases/tag/v2.2.1). What else is left to be...
If I run jekyll serve --watch the site does not seem to rebuild when a configuration file (_config.yml) changes. Ideally --watch could watch config files too.
Prevent `SystemExit` (which is caused by `exit 0`) from raising exception.
If users list a glob pattern in the `exclude` config, expand the pattern and exclude the resulting set of paths. **Currently limited to glob patterns involving just `*`** Resolves #90...
by double-tapping (sly zombieland reference :laughing:) paths which don't match to exact (existing) files. this patch stores any of these non-absolute paths as wildcard paths; which it then rechecks &...
This is in part related to issue [7888](https://github.com/jekyll/jekyll/issues/7888) on the official jekyll repo. Right now I've got an exclude section in my yaml like the following: ```yaml exclude: - node_modules/...
This change implements the functionality for the `--livereload-sleep` option proposed in Jekyll PR #[7064](https://github.com/jekyll/jekyll/pull/7064). More details can be found there. Relevant to this part of the change: With the option...
Current Jekyll `master` has a new caching system that stores files in a `.jekyll-cache` folder ```gherkin Given I run `bundle exec jekyll serve --incremental` When I modify a single file...
Before this change, excluding a directory (`bin`) would also exclude posts that include that name (`scrubbing`), which is very unexpected. While this may start listening to files that were previously...