Skip to content

Commit

Permalink
Adds make test-nowatch as an alternate way to test doc
Browse files Browse the repository at this point in the history
--watch becomes lagging if too many files exist under examples/
  • Loading branch information
netj committed Feb 14, 2016
1 parent 4bdc90b commit 1b39dbd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/_site
/.gems
/.jekyll-metadata
.DS_Store
5 changes: 4 additions & 1 deletion doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,11 @@ define JEKYLL_SERVE
endef
endif
test: jekyll
# Launching a server for testing...
# Launching a server with watch for testing and authoring...
$(JEKYLL_SERVE) --watch
test-nowatch: jekyll
# Launching a server for testing...
$(JEKYLL_SERVE) --no-watch --incremental

.PHONY: linkcheck linkcheck-deployed
linkcheck: jekyll linkchecker
Expand Down

0 comments on commit 1b39dbd

Please sign in to comment.