Thank you for your contribution 🤗!
- Commits follow the Angular commit convention
- Features and bug fixes should be covered by test cases
- Features should be documented in the README
# install dependencies
yarn install
# run the tests
yarn test
# build the library
yarn build
In order to use the library locally on another project, you can use the npm
|yarn
link feature.
- Head to the built package and inform npm|yarn about it:
cd dist/packages/{package-name}
yarn link # or npm link
- Go to your project and link the package:
yarn link @jscutlery/{package-name} # or npm link @jscutlery/{package-name}