Skip to content

Latest commit

 

History

History
59 lines (43 loc) · 684 Bytes

CONTRIBUTING.md

File metadata and controls

59 lines (43 loc) · 684 Bytes

Contribution Guide

Build

git clone https://github.com/holodata/masterchat
cd masterchat
git switch dev
yarn install
yarn build

Development Flow

yarn dev
yarn build
yarn link

cd ..

git clone https://github.com/holodata/masterchat-cli
cd masterchat-cli
yarn install
yarn build
yarn link
yarn link masterchat
DEBUG=masterchat mc live <videoId>
DEBUG=masterchat mc events

Testing

Test while recording response (run only once):

NOCK_BACK_MODE=record jest

Test using recorded response:

jest

Disable fixtures completely:

NOCK_BACK_MODE=wild jest

Release Flow (Maintainers only)

np