Skip to content

Latest commit

 

History

History
66 lines (40 loc) · 3.01 KB

CONTRIBUTING.md

File metadata and controls

66 lines (40 loc) · 3.01 KB

Contributing

We welcome and truly appreciate contribution in all forms - issues, pull requests, questions, or fancy examples of apps/elements build on to of your elements.

Filing bugs

Our team heavily uses Github for all of our software management. We use Github issues to track all bugs and features.

If you find an issue, please do file it on the repository.

We love examples for addressing issues - issues with a Plunkr, jsFiddle, or jsBin will be much easier for us to work on quickly. You can start with this jsbin which sets up the basics to demonstrate a Juicy element.

Occasionally we'll close issues if they appear stale or are too vague - please don't take this personally! Please feel free to re-open issues we've closed if there's something we've missed and they still need to be addressed.

Developing the element

If you would like to start to fiddle with element's code, here is the flow we use.

  • Make a local clone of this repo: git clone git@github.com:tomalec/declarative-shadow-dom.git

In order to develop it locally we suggest to use polyserve tool to handle bower paths gently.

  1. Go to the repo's directory: cd declarative-shadow-dom
  2. Install bower & polyserve: $ npm install -g bower polyserve
  3. Install local dependencies: $ bower install
  4. Start development server $ polyserve -p 8000
  5. Open the demo/preview: http://localhost:8000/components/declarative-shadow-dom/
  6. Open the test suite: http://localhost:8000/components/declarative-shadow-dom/test/

Contributing Pull Requests

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -m 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Open corresponding issue if needed
  6. Submit a pull request :D

Styleguide

.jscs.json/.jscsrc/package.json to be linked

Unit tests

All custom elements projects use web-component-tester for unit tests. The polyserve utility is helpful for running tests in the browser.

Running element unit tests from CLI

To run the element unit tests from CLI, you need to:

  1. Install web-component-tester globally: npm install -g web-component-tester
  2. Clone the element repo.
  3. Install the dependencies. bower install
  4. Run the tests: wct

Configuring web-component-tester

By default, web-component-tester runs tests on all installed browsers. You can configure it to run tests on a subset of available browsers, or to run tests remotely using Sauce Labs.

See the web-component-tester README for information on configuring the tool.