mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2025-04-26 07:55:21 -04:00
9 lines
158 B
JavaScript
Executable File
9 lines
158 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
import execa from "execa";
|
|
import hugo from "./index.js";
|
|
|
|
const args = process.argv.slice(2);
|
|
|
|
execa(hugo, args, { stdio: "inherit" });
|