Make sure all dependencies have been installed before moving on:
npm run lint
- Lint all style and script files;npm run format
- Format all style and script files;npm run link:packages
- Create a local link of every package for local developing;npm run test
- Run all tests once;npm run test:watch
- Run all tests and keep watching for changes;npm run release
- Release a new version of the SDK;lerna run x
- Execute thex
script in all packages;lerna run start --scope=@mamba/component --stream
- Run the dev server for a specific component;
Our commits follow the Conventional Commits standard:
<type>[optional scope]: <description>
By installing git-cz
globally (npm i -g git-cz
) it's possible to use git cz
instead of git commit
for a interactive commit helper.