6 lines
166 B
Batchfile
6 lines
166 B
Batchfile
|
@echo off
|
||
|
where /q lessc || (
|
||
|
echo You must install lessc: npm install -g less
|
||
|
goto :eof
|
||
|
)
|
||
|
lessc --yui-compress timely-bootstrap.less ..\css\bootstrap.min.css
|