Skip to content

Latest commit

 

History

History
69 lines (44 loc) · 825 Bytes

CONTRIBUTING.md

File metadata and controls

69 lines (44 loc) · 825 Bytes

How to contribute

Prerequisites

Setup

  1. Fork the Storybook builder vite repository.

  2. Clone forked repository:

    git clone https://github.com/YOUR_USERNAME/builder-vite
    cd builder-vite
    
  3. Install dependencies:

    yarn
    

Development

Creating a branch

git checkout -b name-of-your-contribution

Start

Watch for changes in TypeScript files:

yarn start

Run Storybook example

In another Terminal run:

yarn example:NAME

Where NAME is based on examples/* directories.

For Vue:

yarn example:vue

Lint

Run before committing changes:

yarn lint