Document JEKYLL_LOG_LEVEL and JEKYLL_NO_BUNDLER_REQUIRE (#8553)

While adding `JEKYLL_LOG_LEVEL`, I also found out that `JEKYLL_NO_BUNDLER_REQUIRE` wasn't mentioned in the docs.

I am not sure it belong to this exact place in the doc, so I followed the only env variables example I could find in the doc (`JEKYLL_ENV`)
This diff closes #8480
This commit is contained in:
Vinhas Kevin 2021-05-14 21:16:57 +02:00 committed by GitHub
parent da68570406
commit 3fea30c862
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -77,6 +77,11 @@
flag: -q, --quiet flag: -q, --quiet
- name: Log Level
description: Specify a log level among debug, info, warn, or error.
flag: JEKYLL_LOG_LEVEL=info
- name: Incremental build - name: Incremental build
description: >- description: >-
Enable the experimental incremental build feature. Incremental build only Enable the experimental incremental build feature. Incremental build only
@ -87,6 +92,11 @@
flag: -I, --incremental flag: -I, --incremental
- name: Disable Bundle Require
description: Disables the need to require gems in `:jekyll_plugins` Gemfile
flag: JEKYLL_NO_BUNDLER_REQUIRE=true
- name: Liquid profiler - name: Liquid profiler
description: Generate a Liquid rendering profile to help you identify performance bottlenecks. description: Generate a Liquid rendering profile to help you identify performance bottlenecks.
option: "profile: BOOL" option: "profile: BOOL"