Skip to content

Commit 44a25f5

Browse files
committed
chore: turbo scripts in READMEs
1 parent b180b30 commit 44a25f5

4 files changed

Lines changed: 10 additions & 30 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ Libraries:
3131

3232
```bash
3333
pnpm install # Install dependencies
34+
pnpm add turbo --global # Use turbo to run scripts
3435

35-
pnpm dev # Start all development servers
36+
turbo dev # Start all development servers
3637

37-
pnpm test:unit # Run unit tests
38-
pnpm test:screen # Run playwright tests
38+
turbo test:unit # Run unit tests
39+
turbo test:screen # Run playwright tests
3940

40-
# Formatting and linting with Biome
41-
pnpm format
42-
pnpm lint
43-
pnpm fix
41+
turbo lint # Check formatting and types
42+
turbo lint:fix # Fix formatting
43+
turbo lint:fix-unsafe # Apply potentially breaking fixes if available
4444
```

packages/editor/README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,5 @@ declare const project: Project = {/* ... */}
1414

1515
## Development
1616

17-
```bash
18-
# Start Storybook for component development
19-
pnpm dev
20-
21-
# Run tests
22-
pnpm test:screen
23-
```
17+
See [the root README](../../README.md) for a list of available scripts
2418

packages/synth/README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,5 @@ reverb.connect(context.output)
2424

2525
## Development
2626

27-
```bash
28-
# Start Storybook
29-
pnpm dev
30-
31-
# Run tests
32-
pnpm test:unit
33-
pnpm test:screen
34-
```
27+
See [the root README](../../README.md) for a list of available scripts
3528

packages/ui-kit/README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,5 @@ UI component library created with [shadcn/ui](https://ui.shadcn.com/docs/compone
44

55
## Development
66

7-
```bash
8-
# Start Storybook
9-
pnpm dev
10-
11-
# Run tests
12-
pnpm test:unit
13-
pnpm test:screen
14-
```
7+
See [the root README](../../README.md) for a list of available scripts
158

0 commit comments

Comments
 (0)