@mfikes can you kick off another closure-library release? the latest closure-compiler isn't compatible with the older versions anymore since they changed goog.define
and the older use is now an error.
That may require @dnolen (I don’t have permissions)
oh ok. thought you did the other intermediate release last time
I can look at that today
@dnolen this is the change I was refering to https://github.com/google/closure-compiler/commit/447052cfe2803cb4c1a67a36b622dc1d670642e8
basically it is an error now to use goog.define("goog.DEBUG", true)
and must now be used as goog.DEBUG = goog.define("goog.DEBUG", true)
(needs the assignment)
was going to put together a patch for goog-define
as well