UI components for repo-lister. In principle these are standalone, project-agnostic React components.
npm test
for tests and coveragenpm run dev
will run a local Styleguidist server (and automatically rebuild when src changes)
Run this command to automatically increment version, build, commit, tag, and push a new release:
npm run clean && npm test && npm version patch && npm run clean && (export VERSION=`node -p "require('./package.json').version"`; npm run build && git add ./build/ ./docs/ && git commit --amend --no-edit && git tag -fam $VERSION v$VERSION && git push && git push origin v$VERSION)