Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 1.14 KB

CONTRIBUTING.md

File metadata and controls

34 lines (22 loc) · 1.14 KB

How To Contribute

This repo is divided into multiple packages using Yarn workspaces:

  • addon is the actual tinymce-ember addon
  • test-app is its test suite and examples

Installation

  • git clone https://github.com/concordnow/tinymce-ember.git
  • cd tinymce-ember
  • npm install

Linting

  • cd addon && yarn lint
  • cd addon && yarn lint:fix

Running tests

  • cd addon && yarn start – Builds the addon in "watch mode" so changes picked up by test app.
  • cd test-app && ember test – Runs the test suite on the current Ember version
  • cd test-app && ember test --server – Runs the test suite in "watch mode"
  • cd test-app && ember try:each – Runs the test suite against multiple Ember versions

During development, if you'd like test app to pick up changes in the addon, make sure to run both cd addon && yarn start and cd test-app && ember test --server in different terminals.

Running the test application

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