Skip to content

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

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

xc0derx
Copy link

@xc0derx 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

@xc0derx xc0derx force-pushed the feat-update_makefile_and_node_packages branch 2 times, most recently from acd04bc to 1d0234d Compare March 29, 2025 15:41
@xc0derx xc0derx force-pushed the feat-update_makefile_and_node_packages branch from 719af9a to 674939a Compare March 29, 2025 15:47
Signed-off-by: Anton Shilin <[email protected]>
Copy link
Contributor

@TerryHowe TerryHowe left a 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.

Comment on lines 31 to +33

make check-links-ci
# Uncomment the line below if you want to run link checking as part of preview
# make check-links-ci
Copy link
Contributor

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.

Comment on lines +1 to +9
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
Copy link
Contributor

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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
.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
Copy link
Contributor

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants