UNPKG

gh-pages

Version:

Publish to a gh-pages branch on GitHub (or any other branch on any other remote)

14 lines (9 loc) 173 B
#!/usr/bin/env node const ghpages = require('../lib/index.js'); function main() { ghpages.clean(); } if (require.main === module) { main(); } module.exports = main;