Skip to content

Latest commit

 

History

History
76 lines (50 loc) · 1.01 KB

README.md

File metadata and controls

76 lines (50 loc) · 1.01 KB

platform

Setup

  • require: nodejs + npm
# get the code
git clone [email protected]:nan-ci/platform.git
#  or use https://github.com/nan-ci/platform.git

# open the directory
cd platform

# run dev server
npm start

Contribute

Find or Create an issue

Create your branch

git checkout -b feature-name

Rebase before mergeing

# make sure you are on your branche
git checkout feature-name

# make sure we are up to date
git fetch

# rebase from master
git rebase origin/master

# force update your branch
git push orgin HEAD --force-with-lease

Pull updates on your current branch

git pull -r --autostash

Linter

Dependencies

Usage

# run prettier
prettier -w **.jsx **.js **.md

Test

Dependencies

  • fd (find files)
  • entr (watch files)

Usage

# run test in watch mode
npm run dev