From 1ce7fb13c4da53d6ee1d9e393e34478e33e6ee7b Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Fri, 1 Apr 2022 18:31:23 +0200 Subject: [PATCH] spec enabled --- src/babashka/impl/features.clj | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/babashka/impl/features.clj b/src/babashka/impl/features.clj index 00eaa26e..2a04db6f 100644 --- a/src/babashka/impl/features.clj +++ b/src/babashka/impl/features.clj @@ -17,7 +17,7 @@ (def selmer? (not= "false" (System/getenv "BABASHKA_FEATURE_SELMER"))) (def logging? (not= "false" (System/getenv "BABASHKA_FEATURE_LOGGING"))) (def priority-map? (not= "false" (System/getenv "BABASHKA_FEATURE_PRIORITY_MAP"))) - +(def spec-alpha? (not= "false" (System/getenv "BABASHKA_FEATURE_SPEC_ALPHA"))) ;; excluded by default (def jdbc? (= "true" (System/getenv "BABASHKA_FEATURE_JDBC"))) (def sqlite? (= "true" (System/getenv "BABASHKA_FEATURE_SQLITE"))) @@ -26,7 +26,6 @@ (def hsqldb? (= "true" (System/getenv "BABASHKA_FEATURE_HSQLDB"))) (def datascript? (= "true" (System/getenv "BABASHKA_FEATURE_DATASCRIPT"))) (def lanterna? (= "true" (System/getenv "BABASHKA_FEATURE_LANTERNA"))) -(def spec-alpha? (= "true" (System/getenv "BABASHKA_FEATURE_SPEC_ALPHA"))) (when xml? (require '[babashka.impl.xml]))