- Getting Set up
- Building Samples and Packages
- Running a Sample or Storybook
- Testing your changes
- Writing unit tests
- Submitting a PR
- Having your changes published
To build and sample or package, and all of its dependencies, run:
rush build -t "package-name" # run this from anywhere
You can find Package names at the top of the package.json.
If you have built the package and all its dependencies and subsequently only want to rebuild the package you have made changes to, run:
rushx build # run this from the package/sample directory you're looking to build
To build the whole repo you can run:
rush build # run this from any directory inside the repo
note: this will take a long time the first time it is run
- Next: Running a Sample or Storybook
- Previous: Getting Set up