Add frontend component generator to claude.md (#40844)

May help Claude write frontend component boilerplate more consistently
This commit is contained in:
jacobshandling 2026-03-04 15:58:20 -08:00 committed by GitHub
parent e9bebfdf96
commit ebe49ca7b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,4 +9,7 @@ MYSQL_TEST=1 go test ./server/datastore/mysql/...
MYSQL_TEST=1 REDIS_TEST=1 go test ./server/service/...
# Run a specific test
MYSQL_TEST=1 go test -run TestFunctionName ./server/datastore/mysql/...
MYSQL_TEST=1 go test -run TestFunctionName ./server/datastore/mysql/...
# Generate boilerplate for a new frontend component, including associated stylesheet, tests, and storybook
./frontend/components/generate -n RequiredPascalCaseNameOfTheComponent -p optional/path/to/desired/parent/directory