mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2025-04-26 09:05:20 -04:00

* wip: Support Hugo extended * fallback support, update readme.md * fixup! wip: Support Hugo extended
9 lines
201 B
JavaScript
Executable File
9 lines
201 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const spawn = require('child_process').spawn;
|
|
const input = process.argv.slice(2);
|
|
const hugo = require('./');
|
|
|
|
spawn(hugo, input, {stdio: 'inherit'})
|
|
.on('exit', process.exit);
|