Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 934 Bytes

CONTRIBUTING.md

File metadata and controls

34 lines (21 loc) · 934 Bytes

How To Contribute

Installation

  • git clone git@github.com:voltidev/ember-svg-jar.git
  • cd ember-svg-jar
  • yarn install

Running tests

yarn test - Runs all tests including linters.

Run node tests to test any module in lib directory:

  • yarn test:node - Runs node tests.
  • yarn test:node --watch - Runs node tests in "watch mode"

Run ember tests to test anything related to svg-jar helper & symbols injection:

  • 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

Linting

  • yarn run lint:js
  • yarn run lint:js:fix

Running the dummy application

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