a planned pooling crochet and knitting tool with support for displaying multiple types of crochet stitches
yarn lint
There are some tests using vitest. All helper methods should be unit tested, but I haven't backfilled the component tests:
yarn test
A ton of the logic is in CSS, but needs to be tested still:
I'd love to automate this one day, it's in an issue.
Make sure this passes tests, typecheck and lint:
yarn lint
runs linter and typescript checkyarn test
fires up a test runneryarn install
yarn build
yarn dev
I deploy this on digital ocean, and I have an app set up to track changes to the release
branch. Here's what I do to deploy:
git co release
git fetch
git merge origin/main
git push origin release
git co -
the last command switches you back to the branch you were on. There should be no commits on release that aren't already on main. I might try implementing tagging and scripting that later