File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change 352
352
; ; name is not actually used by Closure in :modules case,
353
353
; ; but we need to provide _something_ for Closure to not
354
354
; ; complain
355
- (set! (.sourceMapOutputPath compiler-options)
356
- (str (io/file (util/output-directory opts)
357
- " cljs_modules.map" )))
358
- (set! (.sourceMapOutputPath compiler-options)
359
- (:source-map opts)))
360
- (set! (.sourceMapDetailLevel compiler-options)
361
- SourceMap$DetailLevel/ALL)
362
- (set! (.sourceMapFormat compiler-options)
363
- SourceMap$Format/V3))
355
+ (.setSourceMapOutputPath compiler-options
356
+ (str (io/file (util/output-directory opts)
357
+ " cljs_modules.map" )))
358
+ (.setSourceMapOutputPath compiler-options
359
+ (:source-map opts)))
360
+ (.setSourceMapDetailLevel compiler-options SourceMap$DetailLevel/ALL)
361
+ (.setSourceMapFormat compiler-options SourceMap$Format/V3))
364
362
(do
365
363
(.setOptionsForCompilationLevel level compiler-options)
366
364
(set-options opts compiler-options)
You can’t perform that action at this time.
0 commit comments