UNPKG

@zkochan/pnpm

Version:

A fast implementation of npm install

12 lines (9 loc) 225 B
var Metalsmith = require('metalsmith') var app = Metalsmith(__dirname) .source('./src') .destination('./public') if (module.parent) { module.exports = app } else { app.build(function (err) { if (err) throw err }) }