Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Use localhost URL prefix for DEPLOY_PRIME_URL & some pkg & script updates #4491

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
],
"scripts": {
"__check:links": "make --keep-going check-links",
"_build": "hugo --cleanDestinationDir -e dev -DFE --baseURL \"${DEPLOY_PRIME_URL:-/}\"",
"_build": "hugo --cleanDestinationDir -e dev -DFE --baseURL \"${DEPLOY_PRIME_URL:-http://localhost}\"",
"_check:format:any": "npx prettier --check --ignore-path ''",
"_check:format": "npx prettier --check .",
"_check:links--md": "npx markdown-link-check --config .markdown-link-check.json *.md",
Expand Down Expand Up @@ -83,19 +83,19 @@
"sync": "./scripts/sync-submodules.pl",
"test-and-fix": "npm run seq -- check fix:dict fix:filenames",
"test": "npm run check",
"update:pkg:docsy-dep": "npm install --save-dev autoprefixer@latest postcss-cli@latest",
"update:pkg:hugo": "npm install --save-dev --save-exact hugo-extended@latest",
"update:pkg:hugo+": "npm run update:pkg:hugo && npm run update:pkg:docsy-dep",
"update:pkg:netlify": "npm install --save-optional netlify-cli@latest",
"update:pkg:other": "npm install --save-dev gulp@latest",
"update:docsy-dep": "npm install --save-dev autoprefixer@latest postcss-cli@latest",
"update:hugo": "npm install --save-dev --save-exact hugo-extended@latest",
"update:hugo+": "npm run update:hugo && npm run update:docsy-dep",
"update:netlify": "npm install --save-optional netlify-cli@latest",
"update:other-pkg": "npm install --save-dev gulp@latest",
"update:submodule:lang": "npm run seq -- update:submodule _get:submodule:non-lang",
"update:submodule": "set -x && git submodule update --remote ${DEPTH:- --depth 1}"
},
"devDependencies": {
"autoprefixer": "^10.4.19",
"cspell": "^8.0.0",
"gulp": "^4.0.2",
"hugo-extended": "github:chalin/hugo-extended#v0.125.7",
"hugo-extended": "0.125.7",
"markdown-link-check": "^3.12.1",
"markdownlint": "^0.34.0",
"postcss-cli": "^11.0.0",
Expand All @@ -122,7 +122,7 @@
"path": "^0.12.7"
},
"optionalDependencies": {
"netlify-cli": "^17.16.1"
"netlify-cli": "^17.23.5"
},
"enginesComment": "Ensure that engines.node value stays consistent with the project's .nvmrc",
"engines": {
Expand Down