You've already forked hugo-extended
mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2025-07-03 19:16:37 -04:00
9 lines
199 B
JavaScript
9 lines
199 B
JavaScript
#!/usr/bin/env node
|
|
|
|
const spawn = require('child_process').spawn;
|
|
const input = process.argv.slice(2);
|
|
const bin = require('./');
|
|
|
|
spawn(bin, input, {stdio: 'inherit'})
|
|
.on('exit', process.exit);
|