I'm working with ExtJs 5.1.
I've added some external libraries to the app through app.json, simply using "path": "libPath"
All works fine but when I run
sencha app build production
The cmd try to minify also the external libraries. If minified by Sencha some of my external libraries going to Js Exception.
How can I say to sencha cmd to build and minify only extjs code and copy external libraries without editing?
If i run
sencha app build testing
all works fine.
Thanks a lot
Look at the
app.json
comments around thejs
array:I think
"includeInBundle" : false,
might do the trick for you.