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
- Host: GitHub
- URL: https://github.com/creativelive/rind-modules-gulp
- Owner: creativelive
- License: mit
- Created: 2014-05-25T20:34:49.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2015-07-24T16:38:35.000Z (almost 11 years ago)
- Last Synced: 2025-02-26T21:47:54.238Z (over 1 year ago)
- Language: JavaScript
- Size: 225 KB
- Stars: 1
- Watchers: 12
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rind-modules-gulp [](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));
```