2017 © Pedro Peláez
 

robo-tasks robo-sass

Robo task to perform SASS files compilation to CSS files.

image

elephfront/robo-sass

Robo task to perform SASS files compilation to CSS files.

  • Tuesday, August 8, 2017
  • by HavokInspiration
  • Repository
  • 1 Watchers
  • 0 Stars
  • 10 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

Robo Sass

Software License Build Status Codecov, (*1)

This Robo task performs a compilation of your SASS files., (*2)

This task performs the compilation using the absalomedia/sassphp PHP extension., (*3)

Requirements

Installation

You can install this Robo task using composer., (*4)

The recommended way to install composer packages is:, (*5)

composer require elephfront/robo-sass

Installing the extension

To install the extension, you need to follow the steps below :, (*6)

git clone git://github.com/absalomedia/sassphp`
cd sassphp
git submodule init
git submodule update
php install.php
make test
make install

Once the extension has been installed, you need to update your php.ini (or add a new configuration file your php.ini goes looking in to load extra configuration setup) file to install the extension on your PHP setup by adding the following line :, (*7)

extension=sass.so

Using the task

You can load the task in your RoboFile using the LoadSassTaskTrait trait:, (*8)

use Elephfront\RoboSass\Task\Loader\LoadSassTaskTrait;

class RoboFile extends Tasks
{

    use LoadSassTaskTrait;

    public function compileSass()
    {
        $this
            ->taskSass([
                'assets/scss/main.scss' => 'assets/min/css/main.min.css',
                'assets/scss/home.scss' => 'assets/min/css/home.min.css',
            ])
            ->run();
    }
}

The only argument the taskSass() takes is an array ($destinationsMap) which maps the source files to the destination files : it will load the assets/scss/main.scss, do its magic and put the final content in assets/min/css/main.min.css and do the same for all of the other files., (*9)

Chained State support

Robo includes a concept called the Chained State that allows tasks that need to work together to be executed in a sequence and pass the state of the execution of a task to the next one. For instance, if you are managing assets files, you will have a task that compile SCSS to CSS then another one that minify the results. The first task can pass the state of its work to the next one, without having to call both methods in a separate sequence., (*10)

The robo-sass task is compatible with this feature., (*11)

All you need to do is make the previous task return the content the robo-sass task should operate on using the data argument of a Robo\Result::success() or Robo\Result::error() call. The passed data should have the following format:, (*12)

$data = [
    'path/to/source/file' => [
        'css' => '// Some (S)CSS code',
        'destination' => 'path/to/destination/file
    ]
];

In turn, when the robo-sass task is done, it will pass the results of its work to the next task following the same format., (*13)

Preventing the results from being written

By default, the robo-sass task writes the result of its work into the destination file(s) passed in the $destinationsMap argument. If the robo-sass task is not the last one in the sequence, you can disable the file writing using the disableWriteFile() method. The files will be processed but the results will not be persisted and only passed to the response :, (*14)

$this
    ->taskCssMinify([
        'assets/scss/main.css' => 'assets/min/css/main.min.css',
        'assets/scss/home.css' => 'assets/min/css/home.min.css',
    ])
        ->disableWriteFile()
    ->someOtherTask()
    ->run();

Contributing

If you find a bug or would like to ask for a feature, please use the GitHub issue tracker. If you would like to submit a fix or a feature, please fork the repository and submit a pull request., (*15)

Coding standards

This repository follows the PSR-2 standard., (*16)

License

Copyright (c) 2017, Yves Piquel and licensed under The MIT License. Please refer to the LICENSE.txt file., (*17)

The Versions

08/08 2017

dev-master

9999999-dev

Robo task to perform SASS files compilation to CSS files.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Yves P.

08/08 2017

1.0.2

1.0.2.0

Robo task to perform SASS files compilation to CSS files.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Yves P.

03/08 2017

1.0.1

1.0.1.0

Robo task to perform SASS files compilation to CSS files.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Yves P.

03/08 2017

1.0.0

1.0.0.0

Robo task to perform SASS files compilation to CSS files.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Yves P.