reisraff/phulp-angular-template-cache

PHULP 的 angular-template-cache 扩展插件

1.0.0 2016-11-21 19:06 UTC

This package is auto-updated.

Last update: 2024-08-28 04:13:40 UTC


README

这是 PHULP 的 PHULP 的 angular-template-cache 扩展插件。

类似于 gulp-angular-templatecache,但进行了某些修改。

安装

$ composer require reisraff/phulp-angular-template-cache

用法

<?php

use Phulp\AngularTemplateCache\AngularTemplateCache;

$phulp->task('angular-template-cache', function ($phulp) {
    $phulp->src(['src/'], '/html$/')
        ->pipe(new AngularTemplateCache('templateCacheHtml.js', ['module' => 'app', 'root' => 'app']))
});