Hello.
9.x didn't minify class names, but 10.x does so we ran into an issue, where we have class, let's say SuperbClass and in another JS file we had new SuperbClass().
Worked perfectly with 9.x, but in 10.x that SuperbClass became a and so reference from another file would fail.
I think there should be some option to explicitly enable class name minification
Hello. 9.x didn't minify class names, but 10.x does so we ran into an issue, where we have class, let's say
SuperbClass
and in another JS file we hadnew SuperbClass()
. Worked perfectly with 9.x, but in 10.x thatSuperbClass
becamea
and so reference from another file would fail. I think there should be some option to explicitly enable class name minification