Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 929 Bytes

CONTRIBUTING.md

File metadata and controls

54 lines (34 loc) · 929 Bytes

Contributing

Git Branch Workflow

This project adheres to GitHub Flow.

Development (Not for customers)

Requirements

  • Node.js 18.0 or newer
  • NPM 10.0 or newer

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/storage

Release Process

  1. Checkout master

    git checkout master
    
  2. Get the latest code

    git pull
    
  3. Start the release process

    npm run release