File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 50
50
(if error
51
51
opts
52
52
(if-not (sequential? paths)
53
- {:error ( str " `:paths-fn` must compute to a sequential value." )
53
+ {:error " `:paths-fn` must compute to a sequential value."
54
54
:paths-fn paths-fn :resolved-paths paths}
55
55
{:resolved-paths paths})))
56
56
{:error ex-msg :paths-fn paths-fn})))
99
99
(let [deps-edn (edn/read-string (slurp " deps.edn" ))]
100
100
(if-some [clerk-alias (get-in deps-edn [:aliases :nextjournal/clerk ])]
101
101
(get clerk-alias :exec-args
102
- {:error ( str " No `:exec-args` found in `:nextjournal/clerk` alias." ) })
103
- {:error ( str " No `:nextjournal/clerk` alias found in `deps.edn`." ) }))
104
- {:error ( str " No `deps.edn` found in project." ) }))
102
+ {:error " No `:exec-args` found in `:nextjournal/clerk` alias." })
103
+ {:error " No `:nextjournal/clerk` alias found in `deps.edn`." }))
104
+ {:error " No `deps.edn` found in project." }))
105
105
106
106
(def ^:dynamic *build-opts* nil )
107
107
Original file line number Diff line number Diff line change 1431
1431
(:wrapped pred))]
1432
1432
(wrapped-pred x)
1433
1433
(pred (->value x))))))
1434
- (throw (ex-info ( str " cannot find matching viewer for value" )
1434
+ (throw (ex-info " cannot find matching viewer for value"
1435
1435
{:value (->value x) :viewers viewers :x x}))))
1436
1436
1437
1437
#_(viewer-for default-viewers [1 2 3 ])
You can’t perform that action at this time.
0 commit comments