Skip to content
This repository was archived by the owner on Oct 14, 2025. It is now read-only.

Commit 54b5f11

Browse files
committed
Fix watch command
1 parent 5fd5aa8 commit 54b5f11

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
## Project Structure
99

10-
This project utilizes pnpm monorepos with the following structure:
10+
This project utilizes [PNPM Workspaces](https://pnpm.io/workspaces) with the following structure:
1111
```
1212
├── packages/
1313
│ └── floating-ui-svelte/ # Package

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"scripts": {
55
"format": "biome check . --write",
66
"format:check": "biome check .",
7-
"build": "pnpm -r build",
8-
"build:watch": "pnpm -r build:watch",
9-
"test": "pnpm -r test",
10-
"test:watch": "pnpm -r test:watch",
11-
"sync": "pnpm -r sync",
7+
"build": "pnpm --recursive build",
8+
"build:watch": "pnpm --recursive --parallel build:watch",
9+
"test": "pnpm --recursive test",
10+
"test:watch": "pnpm --recursive test:watch",
11+
"sync": "pnpm --recursive sync",
1212
"postinstall": "pnpm sync"
1313
},
1414
"devDependencies": {

0 commit comments

Comments
 (0)