├── .github └── workflows │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierignore ├── README.md ├── commitlint.config.js ├── lib ├── __tests__ │ └── index.tsx └── index.tsx ├── package.json └── release.config.js /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truework/mounty/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truework/mounty/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truework/mounty/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truework/mounty/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run format 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truework/mounty/HEAD/.prettierignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truework/mounty/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ["@commitlint/config-conventional"] }; 2 | -------------------------------------------------------------------------------- /lib/__tests__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truework/mounty/HEAD/lib/__tests__/index.tsx -------------------------------------------------------------------------------- /lib/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truework/mounty/HEAD/lib/index.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truework/mounty/HEAD/package.json -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truework/mounty/HEAD/release.config.js --------------------------------------------------------------------------------