Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 901 Bytes

CONTRIBUTING.md

File metadata and controls

33 lines (21 loc) · 901 Bytes

How To Contribute

This repo is divided into multiple packages using Yarn workspaces:

  • addon is the actual ember-page-title addon
  • test-app is its test suite
  • docs is the documentation/marketing site

Installation

  • git clone <repository-url>
  • cd ember-page-title
  • pnpm install

Linting

Inside any of the packages you can run:

  • pnpm lint
  • pnpm lint:fix

Running tests

  • 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

Running the test application

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