soy-php / gulp-task
Gulp task for Soy
0.2.0
2015-11-20 16:28 UTC
Requires
- soy-php/soy: >=0.1.0
This package is not auto-updated.
Last update: 2024-10-26 18:17:27 UTC
README
Introduction
Usage
Include soy-php/gulp-task
in your project with composer:
$ composer require soy-php/gulp-task
Then in your recipe you can use the task as follows:
<?php $recipe = new \Soy\Recipe(); $recipe->component('default', function (\Soy\Gulp\RunTask $gulpTask) { $gulpTask ->setTask('scss') ->run(); }); return $recipe;