We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
make install
npx yarn husky install
make install fails with an error on an macOS Sequoia 15.3 M1 machine:
master
Error:
... # Install pre commit hook npx yarn husky install Usage Error: Couldn't find a script named "husky". $ yarn run [--inspect] [--inspect-brk] [-T,--top-level] [-B,--binaries-only] <scriptName> ... make: *** [install] Error 1
manual npx husky install works.
npx husky install
I changed the Makefile to:
YARN ?= npx yarn NPX ?= npx .PHONY: install stamp-yarn install: $(YARN) install # Install pre commit hook # $(NPX) husky install @# We have checked in the .husky files, so no need to add the commitlint hook again. @# $(NPX) husky add .husky/commit-msg "npx yarn commitlint --edit $1" touch stamp-yarn
Then the install runs through.
At first sight the prerequisite pre-commit was misiing and resulted in this Pull Request for the README.md : #1426
But it turns out as a different issue.
The first commit after the install fails and did not finish with this error:
git commit -m "experimental fix for husky install" Usage Error: Couldn't find a script named "commitlint". $ yarn run [--inspect] [--inspect-brk] [-T,--top-level] [-B,--binaries-only] <scriptName> ... husky - commit-msg hook exited with code 1 (error)
This arises in the context of trying to test the new storybook-demo branch by @ninanoleto during the Alpine City Sprint 2025 but not in this branch!
storybook-demo
Alpine City Sprint 2025
The text was updated successfully, but these errors were encountered:
husky was removed here Patternslib/dev#39 ... need to adopt the changes for mockup
Sorry, something went wrong.
done in @patternslib/dev==3.7.1 and @plone/mockup==5.3.0
@patternslib/dev==3.7.1
@plone/mockup==5.3.0
No branches or pull requests
make install
fails with an error on an macOS Sequoia 15.3 M1 machine:master
branchmake install
Error:
manual
npx husky install
works.I changed the Makefile to:
Then the install runs through.
At first sight the prerequisite pre-commit was misiing and resulted in this Pull Request for the README.md :
#1426
But it turns out as a different issue.
The first commit after the install fails and did not finish with this error:
Context
This arises in the context of trying to test the new
storybook-demo
branch by @ninanoleto during theAlpine City Sprint 2025
but not in this branch!The text was updated successfully, but these errors were encountered: