Skip to content

Latest commit

 

History

History
73 lines (48 loc) · 776 Bytes

CONTRIBUTING.md

File metadata and controls

73 lines (48 loc) · 776 Bytes

Contributing

VSCode is natively supported and configured with recommended extensions and settings 🎉

Before Pull Request

Before creating a pull request execute the following commands:

npm run fix && npm run check && npm run test

Setup

Install dependencies

npm ci

Build

Simple

npm run build

Watch

npm run build:watch

Clean

npm run build:clean

Test

Simple

npm run test

Watch

npm run test:watch

Coverage

npm run test:coverage

Check

npm run check

Fix

npm run fix