Merge pull request #27 from steveoh/026

update for hugo 0.26
This commit is contained in:
Jessica Parsons 2017-08-29 15:34:06 -07:00 committed by GitHub
commit 4ed4b7f384
4 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -9,7 +9,7 @@ import webpack from "webpack";
import webpackConfig from "./webpack.conf";
const browserSync = BrowserSync.create();
const hugoBin = `./bin/hugo_0.24.1_${process.platform}_amd64${process.platform === "windows" ? ".exe" : ""}`;
const hugoBin = `./bin/hugo_0.26_${process.platform}_amd64${process.platform === "windows" ? ".exe" : ""}`;
const defaultArgs = ["-d", "../dist", "-s", "site", "-v"];
gulp.task("hugo", (cb) => buildSite(cb));