ILess Robo Task
, (*1)
ILess Robo Task is a Robo task that enables Robo to perform LESS compilation through the ILess library., (*2)
Install
Via Composer, (*3)
``` bash
$ composer require indigophp/robo-iless, (*4)
## Usage
```php
class RoboFile extends \Robo\Tasks
{
use \Robo\Task\ILess\loadTasks;
public function less()
{
$this->taskCompileLess()
->paths([
'some/path/to/css.css' => 'some/path/to/less.less',
'some/path/to/css2.css' => 'some/path/to/less2.less',
])
->run();
}
}
Testing
bash
$ vendor/bin/phpunit, (*5)
Contributing
Please see CONTRIBUTING for details., (*6)
Credits
License
The MIT License (MIT). Please see License File for more information., (*7)