-
29 May 2012 4:53 AM #1
Answered: Sencha SDK Tools handles sass compile?
Answered: Sencha SDK Tools handles sass compile?
I am interested if sencha sdk tools, under windows os, with compass installed,
it's also taking care about compiling the
/resources/sass/app.scss to /resources/css/app.css during the build process?
(Eg. sencha app build testing)
or I have to do some extra things, because it doesn't seams to work as I was expecting...
Thanks!
-
Best Answer Posted by centenic
In my experience it does not. You will need to compile the SASS to CSS separately. With compass you can set it to "watch" the sass folder for changes and constantly recompile -or- you can run the compile command manually. To run it manually, start a ruby command line, then
Or to start the watch commandCode:compass compile [path/to/project]
I used watch for a while but found it took quite a while (20-30 seconds) to recompile each time, so I just started doing it manually when finished.Code:compass watch [path/to/project]
-
29 May 2012 6:18 AM #2
In my experience it does not. You will need to compile the SASS to CSS separately. With compass you can set it to "watch" the sass folder for changes and constantly recompile -or- you can run the compile command manually. To run it manually, start a ruby command line, then
Or to start the watch commandCode:compass compile [path/to/project]
I used watch for a while but found it took quite a while (20-30 seconds) to recompile each time, so I just started doing it manually when finished.Code:compass watch [path/to/project]
-
29 May 2012 10:58 AM #3


Reply With Quote