npm.io
0.164.0 • Published 3 weeks agoCLI

hugo-bin-extended

Licence
MIT
Version
0.164.0
Deps
5
Size
13 kB
Vulns
0
Weekly
0
Stars
6
Install scriptsThis package runs scripts during installation (preinstall/install/postinstall)

hugo-bin-extended npm version Build Status

Binary wrapper for Hugo

See Installation options for more details.

Install

npm install hugo-bin-extended --save-dev

Usage

API
import { execFile } from 'node:child_process';
import hugoPath from 'hugo-bin-extended';

execFile(hugoPath, ['version'], (error, stdout) => {
  if (error) {
    throw error;
  }

  console.log(stdout);
});
CLI
Unix
npm exec hugo help
npm run create -- post/my-new-post.md # see below 'npm run-script'
Windows
npm exec hugo help
rem see below 'npm run-script'
npm run create -- post/my-new-post.md
npm run-script
{
  "scripts": {
    "build": "hugo",
    "create": "hugo new",
    "serve": "hugo server"
  }
}

See the Hugo Documentation for more information.

Installation options

You have to run npm install hugo-bin-extended to reinstall hugo-bin-extended itself if you change any of these options.

hugo-bin-extended supports options to change the variation of Hugo binaries, to overwrite the download repository and the Hugo version.

Each option can be configured in one of the following ways:

The hugo-bin-extended section of your package.json
{
  "name": "your-package",
  "version": "0.0.1",
  "hugo-bin-extended": {
    "downloadRepo": "https://some.example.com/artifactory/github-releases",
    "version": "0.124.1"
  }
}
As local or global .npmrc configuration file
hugo_bin_download_repo = "https://some.example.com/artifactory/github-releases"
hugo_bin_hugo_version = "0.124.1"
As environment variables

On Linux/macOS:

export HUGO_BIN_DOWNLOAD_REPO="https://some.example.com/artifactory/github-releases"
export HUGO_BIN_HUGO_VERSION="0.124.1"

On Windows:

set HUGO_BIN_DOWNLOAD_REPO=https://some.example.com/artifactory/github-releases
set HUGO_BIN_HUGO_VERSION=0.124.1
Options
buildTags
  • Type: string
  • Default: ""

Set buildTags to extended to download the extended version binary. Set buildTags to extended,withdeploy to download the withdeploy version binary.

If this is set to extended but it's not available for the user's platform, then the normal version will be downloaded instead.

downloadRepo
  • Type: string
  • Default: "https://github.com"

Set it to your proxy URL to download the hugo binary from a different download repository.

hugoVersion
  • Type: string
  • Default: the version specified in package.json

You can override the Hugo version here. Please note that if any of the URLs have changed upstream, you might not be able to use any version and you will probably need to update to a newer hugo-bin-extended version which takes into consideration the new URLs.

Super Inspired By

License

MIT Marlon Luan

Keywords