Fork me on GitHub
#cljs-dev
<
2016-03-21
>
zilvinasu20:03:10

Is there some way to disable these recently introduced warnings in ClojureScript compiler ?

zilvinasu20:03:25

the ones with “Warning: unknown option XYZ"

juhoteperi20:03:08

@zilvinasu: Most of bad warnings have been fixed in master

zilvinasu20:03:46

I get like 6 of them when using lein-figwheel, neither of which are included under known compiler options

WARNING: Unknown option ':compiler-env'.
WARNING: Unknown option ':init'. Did you mean ':main'?
WARNING: Unknown option ':special-fns'.
WARNING: Unknown option ':bind-err'.
WARNING: Unknown option ':warn-on-undeclared'.
WARNING: Unknown option ':quit-prompt’.

juhoteperi20:03:04

Those are from repl options and it has been fixed in master

juhoteperi20:03:18

It is mentioned few lines up that a new release should be coming on Friday

zilvinasu20:03:01

Is there some comfy way to make use of whatever is in master? or if there is a known version where these Unknown option warnings did not exist

dnolen20:03:36

@zilvinasu: I would just use 228, or wait for the next release on Friday

zilvinasu20:03:05

by 228 you mean “1.7.228” ?

dnolen20:03:14

you can build from master and install into local Maven with script/build assuming you have your environment setup correctly

zilvinasu20:03:06

@dnolen: works fine, thanks a lot simple_smile