Thank you for taking the time to contribute to this project. Here's what you need to do to successfully submit your changes to the repository.
- Create your local development environment by executing the
npm install
command in the repo's root folder. - Change the files under the
src
folder. - Apply the changes by running the
npm run build
command (ornpm run build:watch
which will do the same but every time it detects files have changed). - Watch your changes locally by running
python -m http.server <port-number>
(orpython -m SimpleHTTPServer <port-number>
if using old Python2), and then browsing tohttp://localhost:<port-number>
.
We can always review and improve the changes in the push request, so go for it. Happy coding!