reisraff / phulp-filter
过滤你的文件
2.0.0
2018-03-15 15:51 UTC
Requires
- reisraff/phulp: ~1.7
This package is auto-updated.
Last update: 2024-08-28 03:48:58 UTC
README
PHULP的过滤插件。PHULP.
安装
$ composer require reisraff/phulp-filter
用法
<?php use Phulp\Filter\Filter; use Phulp\DistFile; $phulp->task('filter', function ($phulp) { $phulp->src(['src/'], '/html$/') ->pipe(new Filter(function (DistFile $distFile) { // and then foo.html will be removed return $distFile->getName() !== 'foo.html' ? true : false; })); });