Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 1.17 KB

CONTRIBUTING.md

File metadata and controls

33 lines (28 loc) · 1.17 KB

Contributing

Testing Locally

./setup.sh
node test/server
java -jar vendor/selenium-server-standalone-2.37.0.jar
BROWSER_NAME='chrome' node test/runner.js

Releasing

TODO: Add a script to do this for you

  • Run plumber build
  • Checkout the dist branch
  • Bump version number in Bower manifest
  • Copy the distribution files from Plumber into the index
  • Commit using version number as the message – also add [ci skip] (temporary Travis workaround: travis-ci/travis-ci#1468)
  • git tag v<version number>
  • git push origin dist <tag name>
  • Update change log in master branch

Conventions

  • In documentation and code, refer to nodes by their canonical node name in uppercase. E.g. P.
  • When creating variables that refer to nodes or elements, suffix them with node or element respectively. E.g. pElement or textNode.