Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 686 Bytes

CONTRIBUTING.md

File metadata and controls

31 lines (23 loc) · 686 Bytes

Contributing

Inspired by Babel's CONTRIBUTING.md

Developing

Setup

$ git clone https://github.com/dustinspecker/generator-ng-poly.git
$ cd generator-ng-poly
$ npm install
$ npm link

Running tests

Run tests via

$ npm test

Workflow

  • Fork the repository
  • Clone your fork and change directory to it (git clone https://github.com/yourUserName/generator-ng-poly.git && cd generator-ng-poly)
  • Install project dependencies (npm install)
  • Link your fork (npm link)
  • Develop
  • Verify tests pass (npm test)
  • Push changes and make a pull request into the master branch