1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2026-06-13 01:45:29 -04:00

Hugo v0.81.0

added Apple Silicon binary (not detected by bin-wrapper yet, though)
This commit is contained in:
2021-02-20 22:45:54 -05:00
parent 55e4269f5e
commit 664f725d71
3 changed files with 12830 additions and 1135 deletions
+1
View File
@@ -10,6 +10,7 @@ const baseUrl = `https://github.com/gohugoio/hugo/releases/download/v${version}/
module.exports = new BinWrapper()
.src(`${baseUrl}hugo_extended_${version}_Linux-64bit.tar.gz`, 'linux', 'x64')
.src(`${baseUrl}hugo_extended_${version}_macOS-64bit.tar.gz`, 'darwin', 'x64')
.src(`${baseUrl}hugo_extended_${version}_macOS-ARM64.tar.gz`, 'darwin', 'arm64')
.src(`${baseUrl}hugo_extended_${version}_Windows-64bit.zip`, 'win32', 'x64')
.src(`${baseUrl}hugo_${version}_Linux-32bit.tar.gz`, 'linux', 'x86')
.src(`${baseUrl}hugo_${version}_Linux-ARM.tar.gz`, 'linux', 'arm')
+12826 -1132
View File
File diff suppressed because it is too large Load Diff
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "hugo-extended",
"version": "0.80.0",
"version": "0.81.0",
"description": "Plug-and-play binary wrapper for Hugo Extended, the awesomest static-site generator.",
"license": "MIT",
"author": {
@@ -37,8 +37,8 @@
},
"devDependencies": {
"bin-check": "^4.1.0",
"mocha": "^8.2.1",
"xo": "^0.37.1"
"mocha": "^8.3.0",
"xo": "^0.38.1"
},
"scripts": {
"postinstall": "node lib/install.js",