Skip to content

Commit b2e24bc

Browse files
committed
fix(doc): use yarn in Development section
1 parent 7b5aed2 commit b2e24bc

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -91,29 +91,29 @@ In the `$utm` array, each entry provides a `timestamp` indicating when the UTM p
9191

9292
```bash
9393
# Install dependencies
94-
npm install
94+
yarn install
9595

9696
# Generate type stubs
97-
npm run dev:prepare
97+
yarn dev:prepare
9898

9999
# Develop with the playground
100-
npm run dev
100+
yarn dev
101101

102102
# Build the playground
103-
npm run dev:build
103+
yarn dev:build
104104

105105
# Run ESLint
106-
npm run lint
106+
yarn lint
107107

108108
# Install Playwright Browsers
109109
npx playwright install --with-deps
110110

111111
# Run Vitest
112-
npm run test
113-
npm run test:watch
112+
yarn test
113+
yarn test:watch
114114

115115
# Release new version
116-
npm run release
116+
yarn release
117117
```
118118

119119
## License

0 commit comments

Comments
 (0)