File tree Expand file tree Collapse file tree 1 file changed +18
-17
lines changed Expand file tree Collapse file tree 1 file changed +18
-17
lines changed Original file line number Diff line number Diff line change 345
345
getAbsoluteFile getPath))]
346
346
(case optimizations
347
347
:none
348
- (into {}
349
- (map
350
- (fn [[module-name {:keys [entries] :as module}]]
351
- [module-name
352
- (into []
353
- (comp
354
- (mapcat #(find-sources-for-module-entry % inputs))
355
- (map
356
- (comp get-uri get-rel-path
357
- (fn [{:keys [out-file] :as ijs}]
358
- (if-not out-file
359
- (throw (util/compilation-error (Exception. (str " No :out-file for IJavaScript " (pr-str ijs)))))
360
- out-file))
361
- #(maybe-add-out-file % opts)))
362
- (distinct ))
363
- entries)]))
348
+ (do
364
349
(util/debug-prn " MODULES:" modules " INPUTS:" inputs)
365
- (expand-modules modules inputs))
350
+ (into {}
351
+ (map
352
+ (fn [[module-name {:keys [entries] :as module}]]
353
+ [module-name
354
+ (into []
355
+ (comp
356
+ (mapcat #(find-sources-for-module-entry % inputs))
357
+ (map
358
+ (comp get-uri get-rel-path
359
+ (fn [{:keys [out-file] :as ijs}]
360
+ (if-not out-file
361
+ (throw (util/compilation-error (Exception. (str " No :out-file for IJavaScript " (pr-str ijs)))))
362
+ out-file))
363
+ #(maybe-add-out-file % opts)))
364
+ (distinct ))
365
+ entries)]))
366
+ (expand-modules modules inputs)))
366
367
(:advanced :simple :whitespace )
367
368
(reduce-kv
368
369
(fn [ret k {:keys [output-to]}]
You can’t perform that action at this time.
0 commit comments