Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 932 Bytes

CONTRIBUTING.md

File metadata and controls

30 lines (25 loc) · 932 Bytes

Contributing

We love pull requests. Here's a quick guide.

  1. Fork, clone and branch off:
    git clone [email protected]:<your-username>/serverless-plugin-datadog.git
    git checkout -b <my-branch>
  2. Make your changes.
  3. Test your changes against your own testing application with the help of yarn link:
    # From the root of the serverless-plugin-datadog repo
    yarn build
    cd dist
    yarn link
    
    # From the root of your own serverless application
    yarn link "serverless-plugin-datadog"
    sls deploy
  4. Ensure the unit tests pass:
    yarn test
  5. Push to your fork and submit a pull request.

At this point you're waiting on us. We may suggest some changes or improvements or alternatives.