mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2025-04-26 09:05:20 -04:00
10 lines
199 B
JavaScript
Executable File
10 lines
199 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
import { spawn } from "child_process";
|
|
import hugo from "../index.js";
|
|
|
|
const args = process.argv.slice(2);
|
|
|
|
spawn(hugo, args, { stdio: "inherit" })
|
|
.on("exit", process.exit);
|