From 3fea30c86261bd1ff22f222c7254ea8a14e485de Mon Sep 17 00:00:00 2001 From: Vinhas Kevin Date: Fri, 14 May 2021 21:16:57 +0200 Subject: [PATCH] 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 --- docs/_data/config_options/build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/_data/config_options/build.yml b/docs/_data/config_options/build.yml index bdef3409..8d9babc5 100644 --- a/docs/_data/config_options/build.yml +++ b/docs/_data/config_options/build.yml @@ -77,6 +77,11 @@ 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 description: >- Enable the experimental incremental build feature. Incremental build only @@ -87,6 +92,11 @@ 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 description: Generate a Liquid rendering profile to help you identify performance bottlenecks. option: "profile: BOOL"