Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 995 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 995 Bytes

Grunt Task

Latest Stable Version Total Downloads Latest Unstable Version License

Introduction

This is a grunt task for Soy

Usage

Include soy-php/grunt-task in your project with composer:

$ composer require soy-php/grunt-task

Then in your recipe you can use the task as follows:

<?php

$recipe = new \Soy\Recipe();

$recipe->component('default', function (\Soy\Grunt\RunTask $gruntTask) {
    $gruntTask
        ->setTask('scss')
        ->run();
});

return $recipe;