build/example/sass/jamroot.jam
Dmitry 2bb392f60c Support for SASS transpilers. (#258)
Adds sass tool that can be used to convert *.sass and *.scss files
into *.css files.
2017-11-05 10:46:18 -06:00

16 lines
433 B
Plaintext

#|
Copyright 2017 Dmitry Arkhipov
Distributed under the Boost Software License, Version 1.0. (See
accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
|#
css stylesheet1 : singleton.scss : <flags>"--precision 1" ;
css stylesheet2 : singleton.sass ;
css stylesheet3 : importing.scss : <include>include ;
css stylesheet4
: singleton.scss
: <sass-style>expanded
<sass-line-numbers>off
;