soy-php / gulp-task

为Soy的Gulp任务

0.2.0 2015-11-20 16:28 UTC

This package is not auto-updated.

Last update: 2024-09-14 17:37:24 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

简介

这是一个为 gulpSoy 任务

用法

使用composer将 soy-php/gulp-task 包含到您的项目中

$ composer require soy-php/gulp-task

然后在您的recipe中,您可以使用任务如下

<?php

$recipe = new \Soy\Recipe();

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

return $recipe;