You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-19Lines changed: 2 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,35 +66,18 @@ The Storybook command starts:
66
66
67
67
### Development
68
68
69
-
The `dev` command runs all packages in watch mode, automatically rebuilding when you make changes:
69
+
The `turbo watch build` command runs all packages in watch mode, automatically rebuilding when you make changes:
70
70
71
71
```bash
72
72
# Start development mode for all packages
73
-
pnpm dev
73
+
pnpm turbo watch build
74
74
```
75
75
76
-
This runs:
77
-
78
-
-`packages/addon-mcp` in watch mode (using `tsdown --watch`)
79
-
-`packages/mcp` in watch mode (using Node's `--watch` flag)
80
-
81
-
**Note:** Running `pnpm --filter internal-storybook storybook` automatically starts the addon in dev mode alongside Storybook. In this mode, making changes to `addon-mcp` will automatically restart Storybook. So you typically only need one command:
82
-
83
76
```bash
84
77
# This is usually all you need - starts Storybook AND watches addon for changes
85
78
pnpm storybook
86
79
```
87
80
88
-
For more advanced workflows, you can run dev mode for a specific package:
0 commit comments