From 4d1526836c6c654bc5767cb3ef94b093fd860ce7 Mon Sep 17 00:00:00 2001 From: Guillaume Chau Date: Mon, 21 Oct 2019 13:15:59 +0200 Subject: [PATCH] Create CONTRIBUTING.md --- CONTRIBUTING.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..9b5a3ce --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,29 @@ +# Contributing + +## Development setup + +Install dependencies: + +``` +yarn install +cd tests/demo && yarn install +cd ../ssr && yarn install +``` + +Link the library to test it in your project: + +``` +yarn link +``` + +Build the library with watching: + +``` +yarn dev +``` + +Run tests: + +``` +yarn test +```