Re: Closure minimize parse error

2018-03-13 Thread Bob Harner
Nathan, To disable minification I you'll just have to set the "tapestry.enable-minification" symbol to false in your app module class. http://tapestry.apache.org/configuration.html On Tue, Mar 13, 2018, 10:10 AM Nathan Quirynen wrote: > I have found why it worked before and not in our new vers

Re: Closure minimize parse error

2018-03-13 Thread Nathan Quirynen
I have found why it worked before and not in our new version. In our earlier versions minification was not enabled apparently as it is disabled by default. Later we added a dependency to tapestry-webresources. This library enables minification in its module class. This explains why it didn't ca

Re: Closure minimize parse error

2018-03-12 Thread Cezary Biernacki
As far as I can tell, it is not directly supported, but you can override existing minimizer and just disable minimisation for particular files, like that: In your *Module class add necessary contribution @Contribute(ResourceMinimizer.class) @Primary public static void overrideJavaScriptMinimizer