Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.06 KB

File metadata and controls

28 lines (20 loc) · 1.06 KB

Contributing

We'd love for you to contribute and to make this project even better than it is today! If this interests you, please make sure to follow the steps below before creating a Pull Request.

Before accepting any Pull Request, we would like to remind you to follow the following steps:

  1. Install all dependencies
npm install
  1. Run a full build
npm run build:prod
  1. Fix any Linting or TypeScript issues (if any) returned by the build process

  2. Run all Cypress E2E tests

npm run dev         # run a local development server on port 8080 in watch mode (or `npm run serve` without watch)
npm run cypress     # open Cypress UI tool
  1. If you completed step 2 and 3, then the final step would be to proceed with your Pull Request

Note

Please make sure to avoid including the dist/ folder in your Git commit in your Pull Request (PR). It would also work with these files, but it's just adding noise PR review and these files are only being used by all the Examples. So it is why it's better to please exclude these files. Thank you!