stale/CONTRIBUTING.md
Geoffrey Testelin ec96ff65b0
feat(assignees): add 6 new options to avoid stale for assignees (#327)
* feat(assignees): add new option to avoid stale for assignees

closes #271

* test: add more coverage

* docs: fix readme format issue

* docs: reorder and enhance typo

* docs(contributing): add more information about the npm scripts
2021-02-28 06:15:08 -05:00

628 B

Building and testing

Install the dependencies.

$ npm install

Build the typescript and package it for distribution.

$ npm run build && npm run pack

Run the tests ✔️

$ npm test

Run the tests and display only the first failing tests ✔️

$ npm test:only-errors

Run the tests with the watch mode ✔️

$ npm test:watch

Run the linter and fix (almost) every issue for you ✔️

$ npm lint:all:fix

Before creating a PR

Build, lint, package and test everything.

$ npm all