Skip to content

Commit bb29a0f

Browse files
committed
Fix labels
1 parent f12fb90 commit bb29a0f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/cherry/internal/cli.cljs

+4-4
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
(when (some #(match-file % out-file)
6060
copy-resources)
6161
(when-not (fs/existsSync out-path)
62-
(println "[squint] Creating directory:" out-path)
62+
(println "[cherry] Creating directory:" out-path)
6363
(fs/mkdirSync out-path #js {:recursive true}))
64-
(println "[squint] zCopying resource" path "to" out-path)
64+
(println "[cherry] Copying resource" path "to" out-path)
6565
(fs/copyFileSync path out-file)))))
6666

6767
(defn compile-files
@@ -92,14 +92,14 @@
9292
(.then
9393
#(do
9494
(if (contains? #{".cljc" ".cljs"} (path/extname f ))
95-
(do (println "[squint] Compiling CLJS file:" f)
95+
(do (println "[cherry] Compiling CLJS file:" f)
9696
(compiler/compile-file (assoc opts
9797
:in-file f
9898
:resolve-ns (fn [x]
9999
(resolve-ns opts f x)))))
100100
(copy-file copy-resources f output-dir paths))))
101101
(.then (fn [{:keys [out-file]}]
102-
(when out-file (println "[squint] Wrote file:" out-file))
102+
(when out-file (println "[cherry] Wrote file:" out-file))
103103
out-file))))
104104
nil
105105
files))))

0 commit comments

Comments
 (0)