UNPKG

blogware

Version:

A static site generator for hosting full-featured Ghost blog on GitHub Pages.

11 lines (8 loc) 227 B
var path = require('path'); function render(location, file) { var clone = file.clone(); clone.path = path.resolve(clone.base, location); file.contents = null; return Promise.resolve(clone); } module.exports = render;