Skip to content

Commit

Permalink
rename doc
Browse files Browse the repository at this point in the history
  • Loading branch information
jonschlinkert committed Jun 15, 2016
1 parent 8803d14 commit 7048cc2
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 20 deletions.
20 changes: 0 additions & 20 deletions docs/src/content/recipes/to-stream.md

This file was deleted.

21 changes: 21 additions & 0 deletions docs/src/content/recipes/write-views-to-the-file-system.md
@@ -0,0 +1,21 @@
---
title:
category: recipes
---

The [loading-views](loading-views.md) recipe shows you how to add views to a collection. This recipe shows you how to write views to the file system after they're loaded onto a collection.


Push views onto a vinyl stream


```js
app.task('default', function() {
app.pages('foo/*.hbs');

return app.toStream('pages')
.pipe(foo())
.pipe(bar())
.pipe(app.dest('.'));
});
```

0 comments on commit 7048cc2

Please sign in to comment.