Last active
August 29, 2015 13:57
-
-
Save jonschlinkert/9579914 to your computer and use it in GitHub Desktop.
Everything you need to build a complete project with Assemble v0.6.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var assemble = require('assemble'); | |
assemble.partials('templates/partials/*.hbs'); | |
assemble.layouts('templates/layouts/*.hbs'); | |
assemble.task('default', function() { | |
assemble.src('templates/*.hbs') | |
.pipe(assemble.dest('_gh_pages')) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment