blogware
Version:
A static site generator for hosting full-featured Ghost blog on GitHub Pages.
26 lines (18 loc) • 460 B
JavaScript
var table = require('../table');
function pass(file) {
if (!file) return null;
if (file.meta('type') !== 'document') {
return file;
}
var collection = file.meta('collection');
if (!collection) {
return file;
}
if (file.meta('event') !== 'unlink') {
table.collection.add(collection, file.relative, file.meta('matter'));
} else {
table.collection.del(collection, file.relative);
}
return file;
}
module.exports = pass;