From b2e24bc576026526f6b2bdc65736406a028b62b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sadjow=20Le=C3=A3o?= Date: Wed, 1 May 2024 22:28:52 -0300 Subject: [PATCH] fix(doc): use yarn in Development section --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 3731e75..67d0e90 100644 --- a/README.md +++ b/README.md @@ -91,29 +91,29 @@ In the `$utm` array, each entry provides a `timestamp` indicating when the UTM p ```bash # Install dependencies -npm install +yarn install # Generate type stubs -npm run dev:prepare +yarn dev:prepare # Develop with the playground -npm run dev +yarn dev # Build the playground -npm run dev:build +yarn dev:build # Run ESLint -npm run lint +yarn lint # Install Playwright Browsers npx playwright install --with-deps # Run Vitest -npm run test -npm run test:watch +yarn test +yarn test:watch # Release new version -npm run release +yarn release ``` ## License