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

Commit a639626

Browse files
authored
added individual dev scripts (#243)
1 parent 19e3802 commit a639626

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

development.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,18 @@ You can run all the packages in development mode using the following command:
2323
pnpm dev
2424
```
2525

26+
Or you can run development for the individual packages using the following command:
27+
28+
```bash
29+
pnpm dev:[dirname]
30+
```
31+
32+
For `React` it would be:
33+
34+
```bash
35+
pnpm dev:react
36+
```
37+
2638
### Build
2739

2840
You can build all packages using the following command:
@@ -37,7 +49,7 @@ Or you can run build for the individual packages using the following command:
3749
pnpm build:[dirname]
3850
```
3951

40-
For react it would be
52+
For `React` it would be:
4153

4254
```bash
4355
pnpm build:react

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
"build:example:solid": "turbo run build:example --filter=@example/solidjs",
1313
"build:example:svelte": "turbo run build:example --filter=@example/svelte",
1414
"dev": "turbo run dev --parallel",
15+
"dev:react": "turbo run dev --filter=@example/react",
16+
"dev:solid": "turbo run dev --filter=@example/solidjs",
17+
"dev:svelte": "turbo run dev --filter=@example/svelte",
1518
"lint": "turbo run lint",
1619
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
1720
"clean:all": "turbo run clean:all",

0 commit comments

Comments
 (0)