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

https://github.com/creativelive/rind-modules-gulp

gulp tasks for rind modules symlink tree builder
https://github.com/creativelive/rind-modules-gulp

Last synced: 2 months ago
JSON representation

gulp tasks for rind modules symlink tree builder

Awesome Lists containing this project

README

          

# rind-modules-gulp [![](https://travis-ci.org/creativelive/rind-modules-gulp.svg)](https://travis-ci.org/creativelive/rind-modules-gulp)

Gulp task to create [rind modules](https://github.com/creativelive/rind-modules) symlink tree

## usage

```
'use strict';

var gulp = require('gulp');
var modules = require('rind-modules-gulp');

var opts = {
anatomy: {
// rind modules anatomy object
lib: true,
styles: true
},
input: 'path/to/input/dir',
output: 'path/to/output/dir',
verbose: true
};

gulp.task('modules', modules(gulp, opts));

```