Commit bb29a0f 1 parent f12fb90 commit bb29a0f Copy full SHA for bb29a0f
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 59
59
(when (some #(match-file % out-file)
60
60
copy-resources)
61
61
(when-not (fs/existsSync out-path)
62
- (println " [squint ] Creating directory:" out-path)
62
+ (println " [cherry ] Creating directory:" out-path)
63
63
(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)
65
65
(fs/copyFileSync path out-file)))))
66
66
67
67
(defn compile-files
92
92
(.then
93
93
#(do
94
94
(if (contains? #{" .cljc" " .cljs" } (path/extname f ))
95
- (do (println " [squint ] Compiling CLJS file:" f)
95
+ (do (println " [cherry ] Compiling CLJS file:" f)
96
96
(compiler/compile-file (assoc opts
97
97
:in-file f
98
98
:resolve-ns (fn [x]
99
99
(resolve-ns opts f x)))))
100
100
(copy-file copy-resources f output-dir paths))))
101
101
(.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))
103
103
out-file))))
104
104
nil
105
105
files))))
You can’t perform that action at this time.
0 commit comments