soy-php / grunt-task
Grunt task for Soy
0.2.0
2015-11-20 15:29 UTC
Requires
- soy-php/soy: >=0.1.0
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is not auto-updated.
Last update: 2026-09-13 04:58:34 UTC
README
Introduction
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;