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

build: pin versions of NPM global deps in Makefile #11425

Merged
merged 1 commit into from
Jul 24, 2023
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
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ docs/cli/argo.md: $(CLI_PKGS) go.sum server/static/files.go hack/cli/main.go
# docs

/usr/local/bin/mdspell:
npm i -g markdown-spellcheck # update this in Nix when upgrading it here
npm i -g markdown-spellcheck@1.3.1 # update this in Nix when upgrading it here


.PHONY: docs-spellcheck
Expand All @@ -635,7 +635,7 @@ docs-spellcheck: /usr/local/bin/mdspell
mdspell --ignore-numbers --ignore-acronyms --en-us --no-suggestions --report $(shell find docs -name '*.md' -not -name upgrading.md -not -name README.md -not -name fields.md -not -name upgrading.md -not -name swagger.md -not -name executor_swagger.md -not -path '*/cli/*')

/usr/local/bin/markdown-link-check:
npm i -g markdown-link-check # update this in Nix when upgrading it here
npm i -g markdown-link-check@3.11.1 # update this in Nix when upgrading it here


.PHONY: docs-linkcheck
Expand All @@ -644,7 +644,7 @@ docs-linkcheck: /usr/local/bin/markdown-link-check
markdown-link-check -q -c .mlc_config.json $(shell find docs -name '*.md' -not -name fields.md -not -name swagger.md -not -name executor_swagger.md)

/usr/local/bin/markdownlint:
npm i -g markdownlint-cli # update this in Nix when upgrading it here
npm i -g markdownlint-cli@0.33.0 # update this in Nix when upgrading it here
agilgur5 marked this conversation as resolved.
Show resolved Hide resolved


.PHONY: docs-lint
Expand Down