An open API service indexing awesome lists of open source software.

https://github.com/reisraff/phulp-angular-template-cache

The angular-template-cache addon for PHULP.
https://github.com/reisraff/phulp-angular-template-cache

angular-template-cache php phulp phulpplugin

Last synced: 3 days ago
JSON representation

The angular-template-cache addon for PHULP.

Awesome Lists containing this project

README

          

# phulp-angular-template-cache

The angular-template-cache addon for [PHULP](https://github.com/reisraff/phulp).

It's like [gulp-angular-templatecache](https://github.com/miickel/gulp-angular-templatecache) with some modifications.

## Install

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

## Usage

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

```