2

is there an easy way to build only css files from sass files in extjs project without running the whole build process? I know I could create a config file for compass and use compass watch but isn't there a simpler way?

szym
  • 3,028
  • 2
  • 20
  • 32

1 Answers1

6

It is possible to use the command "sencha ant sass" to recompile the CSS using Sass. With Sencha Cmd 4 the command "sencha app watch" will also recompile CSS when needed.

Note that simply running "compass watch" no longer works with Ext JS 4.2 since the theme structure changed.

Source: http://www.sencha.com/blog/using-the-new-app-watch-command-in-sencha-cmd-4/

Ricardo Machado
  • 327
  • 3
  • 4
  • `sencha ant sass` still works with cmd 6.5. Add `development` as `sencha ant development sass` to generate a readable .css – bennos Oct 13 '17 at 06:59