Hi,
I'm trying to compile all javascript code from my app in multiple files :
1. One file for all extjs framework
2. One file for the base of the application
3. (later) one file for each module, to be able to fetch them dynamically.
To realize the first two steps, I've updated my build.xml file with this content :
Code:
<target name="-before-init-local">
<property name="build.operations">
include
-a
and
save
all
and
exclude
-namespace=MyApp
and
concat
-st
-y
test/ext-all.js
and
restore
all
and
exclude
-namespace=Ext
and
concat
-st
test/MyApp.js
</property>
</target>
Unfortunatly, when launching "sencha app build", I got this error :
Code:
[LOG] Building ..\..\..\..\build\temp\production\MyApp\sass\MyApp-all.scss
[ERR] unknown definition for mixin named extjs-tab-panel-ui : http://localhost:1841/applications/frontend/classic/sass/src/view/main/Main.scss:4
[ERR] unknown definition for mixin named extjs-panel-ui : http://localhost:1841/applications/frontend/classic/sass/src/view/main/Main.scss:43
[LOG] Build error for ..\..\..\..\build\temp\production\MyApp\sass\MyApp-all.scss
I tried to add "and include -class=Ext.tab.Panel", but it doesn't seems to change a thing, I still have the same errors.
I'm not sure why it complains about SASS when the thing I change are related to JS and not SASS.'
Any ideas ?
Best regards.