Skip to content

Commit

Permalink
docs(contributing): update dev script descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Apr 9, 2024
1 parent 00931d3 commit 10bc6d4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ Make a copy of `.env.template` in the root directory and rename it to `.env`, co
After cloning the repository and installing all the dependencies, there are several commands available for local development:

- `npm run build` - Runs esbuild to compile code into dist directory
- `npm run lint` - Lints everything in src directory
- `npm run jest` - Runs Jest over all tests in src directory
- `npm test` - Runs `npm run lint` and `npm run jest` together
- `npm run lint` - Runs [ESLint](https://eslint.org) over all support file types
- `npm run lint:prettier` - Runs [Prettier](https://prettier.io) over all supported file types
- `npm run jest` - Runs [Jest](https://jestjs.io) tests in src directory
- `npm test` - Runs all of the above linting and testing scripts together
- `npm run start:dev` - Starts a development server with live reload

### Production workflow
Expand Down

0 comments on commit 10bc6d4

Please sign in to comment.