Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 844 Bytes

CONTRIBUTING.md

File metadata and controls

49 lines (31 loc) · 844 Bytes

Contributing

Git Branch Workflow

This project adheres to GitHub Flow.

Development (Not for customers)

Running Locally

This code base is written in TypeScript so it cannot be included locally in an application without a build step. Luckily, we have provided one :)

  1. Allow NPM package to be linked

    npm link
  2. Start the watch process for building the code when changes occur

    npm start
  3. In your application, link to this package instead of a version on NPM

    npm link @oneblink/sdk-core

Release Process

  1. Checkout master

    git checkout master
    
  2. Get the latest code

    git pull
    
  3. Start the release process

    npm run release