add development notes to readme

This commit is contained in:
Philipp Kühn 2018-09-01 09:35:39 +02:00 committed by GitHub
parent 8dd561e327
commit 64843dd5a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -354,6 +354,24 @@ export default {
</script>
```
## Development Setup
Currently only Yarn is supported for development because of a feature called workspaces we are using here.
``` bash
# install deps
yarn install
# serve examples at localhost:3000
yarn start
# build dist files for packages
yarn build:packages
# build dist files for examples
yarn build:examples
```
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.