Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 300 Bytes

.verb.md

File metadata and controls

17 lines (13 loc) · 300 Bytes

Usage

var fs = require('{%= name %}');
var base = require('base-methods');
var app = base();

// create your application and add the plugin
app.use(fs());

// now you can use `app.src` and `app.dest`
app.src(['foo/*.hbs'])
  .pipe(app.dest('site/'));

API

{%= apidocs("index.js") %}