Skip to content

Commit

Permalink
automation: add support for devtools :async feature
Browse files Browse the repository at this point in the history
  • Loading branch information
darwin committed Jun 28, 2016
1 parent 262a975 commit f9cf24f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/automation/dirac/automation/devtools.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
(if-not (:do-not-install-devtools config) ; override devtools features/installation
(let [features-to-enable (cond-> []
(not (:do-not-enable-custom-formatters config)) (conj :custom-formatters)
(not (:do-not-enable-sanity-hints config)) (conj :sanity-hints))]
(not (:do-not-enable-sanity-hints config)) (conj :sanity-hints)
(not (:do-not-enable-async config)) (conj :async))]
(devtools/install! features-to-enable))
(log "devtools override: do not install")))

0 comments on commit f9cf24f

Please sign in to comment.