Stylus
will raise an exception if the compilation fails. You can turn this off withStylus.silent = true
. (by sebastiandeutsch)- Added
Stylus.logger
to handle the output from stylus. On Rails applications this will be the current Rails logger.
- Bug fixes on
Stylus::Railtie
.
- Isolating the
mattr_accessor
core ext to a module, avoiding conflicts with AS code.
- Sinatra plugin added. Check the docs for usage and configuration;
- The rake task can be used standalone using
load 'stylus_rails/tasks/compile.rake'
; - Compress flag changed from
-C
to-c
(see it here). Be sure to have stylus 0.9.0 or higher installed.
- Added 'compile_directory' option, so you can output the generated .css files on any other folder. (by sebastiandeutsch)
- Support to the
-C
flag. Turned on by default; - Grouping paths by their output dir, so all the files inside the same folder will be compiled using one single command;
- The output dir will be created if it doesn't exists.
- Initial Release.