-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace deprecated --verbose flag with --logLevel info
The --verbose flag has been deprecated in Hugo v0.114.0 and will be removed in future releases. Update the npm script for 'server' to use --logLevel info instead, as per Hugo's recommendation.
- Loading branch information
1 parent
1b9806a
commit 317ea5a
Showing
2 changed files
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
"author": "Serghei Iakovlev <[email protected]>", | ||
"main": "index.js", | ||
"scripts": { | ||
"server": "HUGO_RESOURCEDIR='../resources' HUGO_ENV=development hugo server --verbose --source=exampleSite --buildDrafts --buildFuture --ignoreCache --disableFastRender", | ||
"server": "HUGO_RESOURCEDIR='../resources' HUGO_ENV=development hugo server --logLevel info --source=exampleSite --buildDrafts --buildFuture --ignoreCache --disableFastRender", | ||
"test": "playwright test", | ||
"lint": "npm run lint:js && npm run lint:editorconfig", | ||
"lint:editorconfig": "editorconfig-checker", | ||
|