From d321f6f38d9f6f96a5cb596d556cd1463ecddbb5 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Sat, 17 Feb 2024 05:02:26 +0100 Subject: [PATCH] docs(readme): update readme, replace npm with yarn --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 27c5745..7a23532 100644 --- a/README.md +++ b/README.md @@ -28,29 +28,30 @@ configuration](https://config.phundrak.com/emacs/packages/programming#web-progra ## Project Setup ```sh -npm install +yarn set version stable +yarn ``` ### Compile and Hot-Reload for Development ```sh -npm run dev +yarn dev ``` ### Type-Check, Compile and Minify for Production ```sh -npm run build +yarn build ``` ### Run Unit Tests with [Vitest](https://vitest.dev/) ```sh -npm run test:unit +yarn test:unit ``` ### Lint with [ESLint](https://eslint.org/) ```sh -npm run lint +yarn lint ```