Skip to content

Commit

Permalink
Upgrade to Hugo 0.110.0 and normalize script names (#1402)
Browse files Browse the repository at this point in the history
  • Loading branch information
chalin committed Feb 11, 2023
1 parent a497c22 commit 6d872fd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"build:production": "npm run cd:docs build:production",
"build": "npm run cd:docs build",
"cd:docs": "npm run _cd:docs -- npm run",
"check-links:all": "npm run cd:docs check-links:all",
"check-links": "npm run cd:docs check-links",
"check:links:all": "npm run cd:docs check:links:all",
"check:links": "npm run cd:docs check:links",
"docs-install": "npm run _cd:docs -- npm install",
"get:submodule": "set -x && git submodule update --init ${DEPTH:- --depth 1}",
"serve": "npm run cd:docs serve",
Expand All @@ -25,6 +25,6 @@
"bootstrap": "5.2.3"
},
"devDependencies": {
"hugo-extended": "0.107.0"
"hugo-extended": "0.110.0"
}
}
14 changes: 7 additions & 7 deletions userguide/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
"name": "docsy-user-guide",
"scripts": {
"_build": "npm run _hugo-dev",
"_check-links": "make check-links",
"_check:links": "make check-links",
"_hugo": "hugo --cleanDestinationDir --themesDir ../..",
"_hugo-dev": "npm run _hugo -- -e dev -DFE",
"_serve": "npm run _hugo-dev -- serve",
"build:preview": "npm run _hugo-dev -- --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"",
"build:production": "npm run _hugo -- --minify",
"build": "npm run _build",
"check-links:all": "HTMLTEST_ARGS= npm run _check-links",
"check-links": "npm run _check-links",
"check:links:all": "HTMLTEST_ARGS= npm run _check:links",
"check:links": "npm run _check:links",
"clean": "rm -Rf public",
"make:public": "git init -b main public",
"precheck-links:all": "npm run build",
"precheck-links": "npm run build",
"postbuild:preview": "npm run _check-links",
"postbuild:production": "npm run _check-links",
"precheck:links:all": "npm run build",
"precheck:links": "npm run build",
"postbuild:preview": "npm run _check:links",
"postbuild:production": "npm run _check:links",
"prepare": "cd .. && npm install",
"serve": "npm run _serve"
},
Expand Down

0 comments on commit 6d872fd

Please sign in to comment.