Skip to content

Commit 6f016d1

Browse files
authored
Merge pull request #2 from functionland/ci
ci
2 parents e168dce + 98076a5 commit 6f016d1

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,20 @@ See [`docs/OPERATIONS.md`](docs/OPERATIONS.md) for full operator procedures incl
4040
## Local development
4141

4242
```bash
43-
# Install
44-
pnpm install # or npm install
43+
# Install (uses npm workspaces — installs root + apps/web deps in one shot)
44+
npm install
4545

4646
# Copy env template and fill
4747
cp .env.example .env
4848

4949
# Run a dry-run tick (no transactions sent)
50-
pnpm run dry-run
50+
npm run dry-run
5151

5252
# Unit tests
53-
pnpm test
53+
npm test
5454

5555
# Web UI dev server
56-
pnpm run web:dev
56+
npm run web:dev
5757
```
5858

5959
## Security

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"test": "vitest run",
2020
"test:watch": "vitest",
2121
"lint": "tsc -p tsconfig.json --noEmit",
22-
"web:dev": "pnpm --filter @app/web dev",
23-
"web:build": "pnpm --filter @app/web build"
22+
"web:dev": "npm run dev --workspace @app/web",
23+
"web:build": "npm run build --workspace @app/web"
2424
},
2525
"dependencies": {
2626
"ethers": "^6.13.0",

0 commit comments

Comments
 (0)