Skip to content

Latest commit

History

History
51 lines (32 loc) 路 882 Bytes

CONTRIBUTING.md

File metadata and controls

51 lines (32 loc) 路 882 Bytes

Contribution Guide

Setup

Node.js

Stackflow only works in Node.js version 16.x.

Install dependencies

Install the dependencies by entering the following command in the project root

$ yarn

Stackflow uses Yarn 3 and Yarn workspace

Build

Build all packages

$ yarn build

...or you can build each packages by yarn workspace command

# Build @stackflow/core
$ yarn workspace @stackflow/core build

# Build @stackflow/react
$ yarn workspace @stackflow/react build

Getting started with demo

You can start your project in the /demo folder with the following command

$ yarn workspace @stackflow/demo dev:app

Development mode

View the changes in the demo project for testing while editing other packages as follows:

$ yarn dev