-
20 Apr 2010 3:23 PM #1
license ends up in non-js/css files
license ends up in non-js/css files
There's a bug in JSBuilder2.writeHeadersToTargets() which causes the license header to be written to files other than js/css if they happen to be in the deployDir.
private Pattern pattern = Pattern.compile(".*[\\.js|\\.css]");
should be
private Pattern pattern = Pattern.compile(".*(\\.js|\\.css)");
-
1 Jul 2010 6:13 PM #2
Can I change this in the jar file somehow?
Sencha doesn't seem to do anything about this problem
-
2 Jul 2010 12:30 AM #3Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- The Netherlands
- Posts
- 24,251
- Vote Rating
- 40
-
3 Jul 2010 6:56 AM #4
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote