Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CONTRIBUTING.md 995B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Contributing
  2. Thanks for contributing!
  3. ## Installation
  4. ```sh
  5. git clone https://github.com/prettier/prettier-linter-helpers.git
  6. cd prettier-linter-helpers
  7. yarn install
  8. ```
  9. ## Running the tests
  10. ```sh
  11. yarn run test
  12. ```
  13. Linting is ran as part of `yarn run test`. The build will fail if there are any linting errors. You can run `yarn run lint --fix` to fix some linting errors (including formatting to match prettier's expectations). To run the tests without linting run `yarn run test`.
  14. ## Publishing
  15. - Ensure you are on the master branch locally.
  16. - Update `CHANGELOG.md` and commit.
  17. - Run the following:
  18. ```sh
  19. yarn publish
  20. git push --follow-tags
  21. ```
  22. Running `yarn publish` shall:
  23. - Bump the version in package.json (asking you for the new version number)
  24. - Create a new commit containing that version bump in package.json
  25. - Create a tag for that commit
  26. - Publish to the npm repository
  27. Running `git push --follow-tags` shall:
  28. - Push the commit and tag to GitHub