Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 647 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 647 Bytes

User Guide

yarn # to install dependencies
yarn start

This builds to /dist and runs the project in watch mode so any edits you save inside src causes a rebuild to /dist.

Then run the example inside another:

cd example
yarn # to install dependencies
yarn start

The default example imports and live reloads whatever is in /dist, so if you are seeing an out of date component, make sure TSDX is running in watch mode like we recommend above. No symlinking required, we use Parcel's aliasing.

To do a one-off build, use yarn build.

To run tests, use yarn test.