Closure Compiler {{--generate_exports}} flag not supported
Description
We are including a third-party, Closure-compiler compatible JS library in our ClojureScript project, which is using the @export JSDoc-style tags in the source to export names, and another third party JS library (not Closure Compiler compatible) is expecting those names to be exported.
However, the names are not being exported because, we believe, the --generate_exports flag needs to be passed to the Closure Compiler to get it to parse the JSDoc comments and generate goog.export() calls, and there is no interface to enable that flag from the ClojureScript compiler.
We are including a third-party, Closure-compiler compatible JS library in our ClojureScript project, which is using the
@export
JSDoc-style tags in the source to export names, and another third party JS library (not Closure Compiler compatible) is expecting those names to be exported.However, the names are not being exported because, we believe, the
--generate_exports
flag needs to be passed to the Closure Compiler to get it to parse the JSDoc comments and generategoog.export()
calls, and there is no interface to enable that flag from the ClojureScript compiler.