UNPKG

mop-nm

Version:

MOP Project Scaffolder for node module

13 lines (10 loc) 247 B
#!/usr/bin/env node --harmony var metalsmith = require('metalsmith'); var path = require('path'); metalsmith(__dirname) .destination(path.join(process.cwd(), process.argv[2])) .build(function onBuild(err) { if (err) { throw err; } });