Trying to make one big js file from my app
PHP Code:
sencha compile -classpath=extjs/src,app concat app-all.js
but getting lots of "YUI Compressor Error" - like
PHP Code:
[ [2000] : YUI Compressor Error <> missing name after . operator => this.goto = function (params) {
- looks like problem is in my custion function called goto
PHP Code:
[ [2000] : YUI Compressor Error <> invalid property id => float: 'right', ]
- problem is in attribute called "float"
I do not want fix this errors, and I do not need compress js file at all - I just need concat all my js files into one working file, like ext-all.js , how can I do it?
Didnt found option how to disable YUI, tried use
PHP Code:
sencha compile -classpath=extjs/src,app concat -closure app-all.js
- but still getting YUI errors