indigophp/robo-iless

This package is abandoned and no longer maintained. No replacement package was suggested.

Robo Task to compile LESS projects using the ILess library

dev-master / 0.1.x-dev 2015-03-03 16:20 UTC

This package is not auto-updated.

Last update: 2021-11-27 01:25:37 UTC


README

Latest Version Software License Build Status Code Coverage Quality Score HHVM Status Total Downloads

ILess Robo Task is a Robo task that enables Robo to perform LESS compilation through the ILess library.

Install

Via Composer

$ composer require indigophp/robo-iless

Usage

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

$ vendor/bin/phpunit

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.