1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-10-16 09:54:28 -04:00

feat(hugo): upgrade Hugo to v0.17 (#9)

This commit is contained in:
Shun Sato
2016-10-19 23:36:34 +09:00
committed by GitHub
parent 730f7309e6
commit 2babfd561c
10 changed files with 64 additions and 330 deletions

8
cli.js Normal file
View File

@@ -0,0 +1,8 @@
#!/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);