Skip to content

Commit 88a0857

Browse files
authored
Use incremental building when running the local server (#84)
Shaves rebuild time by 4-5x.
1 parent b1993c5 commit 88a0857

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ vendor
66
.sass_cache
77
_site
88

9-
.idea/
9+
.idea/
10+
11+
.jekyll-metadata

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ build: install include-yarn-deps
3737
$(JEKYLL) build --config _config.yml
3838

3939
serve: install include-yarn-deps
40-
JEKYLL_ENV=development $(JEKYLL) serve --config _config.yml
40+
JEKYLL_ENV=development $(JEKYLL) serve --incremental --config _config.yml
4141

4242
build_deploy: include-yarn-deps
4343
JEKYLL_ENV=production $(JEKYLL) build

0 commit comments

Comments
 (0)