Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vladfilipro/rig-angular
A rig containing angular utilities
https://github.com/vladfilipro/rig-angular
depricated
Last synced: 10 days ago
JSON representation
A rig containing angular utilities
- Host: GitHub
- URL: https://github.com/vladfilipro/rig-angular
- Owner: vladfilipro
- Created: 2016-04-25T17:19:17.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-07-06T20:31:32.000Z (over 8 years ago)
- Last Synced: 2024-11-06T23:25:32.942Z (about 2 months ago)
- Topics: depricated
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# rig-angular
[![Dependency Status](https://david-dm.org/vladfilipro/rig-angular.svg)](https://david-dm.org/vladfilipro/rig-angular)A rig containing angular utilities
## How to use
1. Install rigs package: `npm install rigs`
2. Install rig-angular: `npm install rig-angular`## Available tasks in rig-angular
- `rig-angular__templatecache`: A task which generates adds source files into angular template cache. The task outputs a javascript file with pre-generated angular code.
- properties:
- `src`: String or Array, represents the files to be injected into template cache
- `dest`: String or Array, represents the output directory
- `filename`: String representing the output filename
- `options`: Object, representing the [gulp-angular-templatecache](https://www.npmjs.com/package/gulp-angular-templatecache) configuration```
{
taskname: 'rig-angular__templatecache',
dependency: [],
src: './src/**/*',
dest: './tmp',
filename: 'templates.js',
options: {
module: require( path.resolve( './package' ) ).name + '-templates',
standalone: true,
moduleSystem: 'Browserify'
}
}
```### Generated using [webcase-rig](https://www.npmjs.com/package/webcase-rig) version 1.0.1