-
Notifications
You must be signed in to change notification settings - Fork 534
update makefile and node packages #1712
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
base: main
Are you sure you want to change the base?
Conversation
xc0derx
commented
Mar 29, 2025
- update Makefile (add help command and set help as default command)
- update hugo to 0.145
- update node packages
- Add VSCode workspace settings and recommended extensions
acd04bc
to
1d0234d
Compare
Signed-off-by: Anton Shilin <[email protected]> Signed-off-by: Anton Shilin <[email protected]>
Signed-off-by: Anton Shilin <[email protected]> Signed-off-by: Anton Shilin <[email protected]>
Signed-off-by: Anton Shilin <[email protected]> Signed-off-by: Anton Shilin <[email protected]>
Signed-off-by: Anton Shilin <[email protected]> Signed-off-by: Anton Shilin <[email protected]>
Signed-off-by: Anton Shilin <[email protected]>
719af9a
to
674939a
Compare
Signed-off-by: Anton Shilin <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As a reviewer, I'd sooner see multiple PRs for this. You have an upgrade, make help and vscode updates. That would be 3 PRs.
|
||
make check-links-ci | ||
# Uncomment the line below if you want to run link checking as part of preview | ||
# make check-links-ci |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe just delete all this as check-links-ci doesn't seem to work with these options.
ifeq ($(UNAME),Darwin) | ||
SHELL := /opt/local/bin/bash | ||
OS_X := true | ||
else ifneq (,$(wildcard /etc/redhat-release)) | ||
OS_RHEL := true | ||
else | ||
OS_DEB := true | ||
SHELL := /bin/bash | ||
endif |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This wasn't required under Darwin and other projects with make help I've worked on didn't bother with this or just set SHELL := /bin/bash
OS_DEB := true | ||
SHELL := /bin/bash | ||
endif | ||
.DEFAULT_GOAL := help |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.DEFAULT_GOAL := help |
First goal is the default goal, so this to me is redundant.
SHELL := /bin/bash | ||
endif | ||
.DEFAULT_GOAL := help | ||
MAKEFLAGS := --jobs=1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the reason for setting this flag?