UNPKG

nyg-opensource-jam3

Version:

Jam3 Open Source Library Generator with no build configuration and no prompts

14 lines (12 loc) 293 B
var rf = require('rimraf'); var fs = require('fs'); process.chdir('test'); rf('output/*', function() { rf('output/.*', function() { fs.mkdir('output', function() { process.chdir('output'); var fn = require('../'); if (typeof fn === 'function') fn(); }); }); });