From ea2a7d025d3fa91f6c4f599c00cfa03a30d16b5e Mon Sep 17 00:00:00 2001 From: Antoine Quatrelivre Date: Thu, 30 Nov 2023 11:54:23 +0100 Subject: [PATCH] Update the commands in the readme --- README.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3b98a5f..3622a88 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,18 @@ Have a look at the [small guide](https://tailwind-config.meta.fr) for informatio This project uses [Git Flow](https://github.com/petervanderdoes/gitflow-avh) as a branching model and a combination of [ESlint](https://eslint.org/) and [Prettier](https://prettier.io/) to lint the JS files. You can lint your modifications when contributing with the following commands: ```bash -# Lint all files in the src/ folder +# Lint all files in the packages/ folder $ npm run lint -# Lint files and test build files -$ npm run test +# Start the dev server for the test's assets +$ npm run test:dev + +# Build the test's assets +$ npm run test:build + +# Start the dev server for the documentation +$ npm run docs:dev + +# Build the documentation +$ npm run docs:build ```