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 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # How to Contribute
  2. ## Pull Requests
  3. We also accept [pull requests][pull-request]!
  4. Generally we like to see pull requests that
  5. - Maintain the existing code style
  6. - Are focused on a single change (i.e. avoid large refactoring or style adjustments in untouched code if not the primary goal of the pull request)
  7. - Have [good commit messages](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)
  8. - Have tests
  9. - Don't decrease the current code coverage (see coverage/lcov-report/index.html)
  10. ## Building
  11. ```
  12. npm install
  13. npm test
  14. ```
  15. The `npm test -- dev` implements watching for tests within Node and `karma start` may be used for manual testing in browsers.
  16. If you notice any problems, please report them to the GitHub issue tracker at
  17. [http://github.com/kpdecker/jsdiff/issues](http://github.com/kpdecker/jsdiff/issues).
  18. ## Releasing
  19. JsDiff utilizes the [release yeoman generator][generator-release] to perform most release tasks.
  20. A full release may be completed with the following:
  21. ```
  22. yo release
  23. npm publish
  24. ```
  25. [generator-release]: https://github.com/walmartlabs/generator-release
  26. [pull-request]: https://github.com/kpdecker/jsdiff/pull/new/master