Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 873 Bytes

CONTRIBUTING.md

File metadata and controls

39 lines (26 loc) · 873 Bytes

Contributing to @jscutlery/devkit

Thank you for your contribution 🤗!

Guidelines

  • Commits follow the Angular commit convention
  • Features and bug fixes should be covered by test cases
  • Features should be documented in the README

Building and testing the library

# install dependencies
yarn install

# run the tests
yarn test

# build the library
yarn build

Using npm link or yarn link

In order to use the library locally on another project, you can use the npm|yarn link feature.

  1. Head to the built package and inform npm|yarn about it:
cd dist/packages/{package-name}
yarn link # or npm link
  1. Go to your project and link the package:
yarn link @jscutlery/{package-name} # or npm link @jscutlery/{package-name}