Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 846 Bytes

CONTRIBUTING.md

File metadata and controls

34 lines (22 loc) · 846 Bytes

How To Contribute

Installation

  • git clone <repository-url>
  • cd my-addon
  • yarn install

Linting

  • yarn lint:hbs
  • yarn lint:js
  • yarn lint:js --fix

Running tests

  • ember test – Runs the test suite on the current Ember version
  • ember test --server – Runs the test suite in "watch mode"
  • ember try:each – Runs the test suite against multiple Ember versions

Running the dummy application

Running the documentation application

The docs are in a standalone app in the /docs subdirectory.

  • cd docs
  • yarn install (this is needed separately from the yarn install in the addon itself)
  • ember s

For more information on using ember-cli, visit https://ember-cli.com/.