Development
INFO
Want to contribute? Please read the CONTRIBUTING.md and CODE_OF_CONDUCT.md.
Install
To develop Möbius, fork it, and then in the project root:
shell-session
npm iBuild
shell-session
npm run buildIf you want to watch:
shell-session
npm run watchTest the code
shell-session
npm testCommit
To commit, we use semantic git commits with Commitizen. So please run this when you are ready to commit your staged files:
shell-session
npm run commitWhen you are done with your development, create a PR with the original repository 😃
Clean code
ESLint, Prettier and Putout is used:
shell-session
// to check for code issues
npm run style:code
// to format code with ESLint and Prettier
npm run style:format
// to lint code with ESLint and Prettier
npm run style:lint