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.
- Host: GitHub
- URL: https://github.com/reisraff/phulp-angular-template-cache
- Owner: reisraff
- License: mit
- Created: 2016-11-21T19:06:30.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-01-27T19:09:42.000Z (over 4 years ago)
- Last Synced: 2025-02-18T07:56:10.511Z (8 months ago)
- Topics: angular-template-cache, php, phulp, phulpplugin
- Language: PHP
- Homepage: https://github.com/reisraff/phulp
- Size: 11.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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']))
});```