Skip to content
This repository was archived by the owner on Feb 1, 2026. It is now read-only.

Commit b6cd161

Browse files
committed
chore: update README to reflect pnpm usage for dependency installation and scripts
1 parent af09adc commit b6cd161

1 file changed

Lines changed: 17 additions & 9 deletions

File tree

README.md

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -107,27 +107,35 @@ const uniforms = {
107107
## Development
108108

109109
```bash
110-
# Install dependencies
111-
npm install
110+
# Install dependencies at the root of the project
111+
pnpm install
112+
113+
# Install dependencies on the playground
114+
cd playground
115+
pnpm install
116+
117+
# Install dependencies on the client (devtools)
118+
cd client
119+
pnpm install
112120

113121
# Generate type stubs
114-
npm run dev:prepare
122+
pnpm run dev:prepare
115123

116124
# Develop with the playground
117-
npm run dev
125+
pnpm run dev
118126

119127
# Build the playground
120-
npm run dev:build
128+
pnpm run dev:build
121129

122130
# Run ESLint
123-
npm run lint
131+
pnpm run lint
124132

125133
# Run Vitest
126-
npm run test
127-
npm run test:watch
134+
pnpm run test
135+
pnpm run test:watch
128136

129137
# Release new version
130-
npm run release
138+
pnpm run release
131139
```
132140

133141
<!-- Badges -->

0 commit comments

Comments
 (0)