Skip to content

Commit ab2652a

Browse files
update README in docs
1 parent 516accd commit ab2652a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Website content is located in `*.md` files within `src/content` folder. It's wri
3030

3131
To tune pages, behavior and appearance also use optional `*.yaml` files with additional configurations.
3232

33-
To preview content locally, launch the app with `yarn dev` and open http://127.0.0.1:3000 in your browser. See details in [Development](#development) section.
33+
To preview content locally, launch the app with `pnpm dev` and open http://127.0.0.1:3000 in your browser. See details in [Development](#development) section.
3434

3535
### Layouts
3636

@@ -134,13 +134,13 @@ First, install dependencies:
134134

135135
```sh
136136
cd docs
137-
yarn
137+
pnpm install
138138
```
139139

140140
Then, run the development server:
141141

142142
```bash
143-
yarn dev
143+
pnpm dev
144144
```
145145

146146
Open [http://127.0.0.1:3000](http://127.0.0.1:3000) with your browser to see the result.
@@ -167,7 +167,7 @@ When developing the application you might need these main folders
167167

168168
## Storybook
169169

170-
You can use Storybook to develop components in isolation. Launch it via `yarn storybook` and open http://127.0.0.1:6006/ You will see a list of components in the left-side sidebar. When you edit component's code and save it, the Storybook is auto-updating it.
170+
You can use Storybook to develop components in isolation. Launch it via `pnpm storybook` and open http://127.0.0.1:6006/ You will see a list of components in the left-side sidebar. When you edit component's code and save it, the Storybook is auto-updating it.
171171

172172
Each component can be exposed with different states (stories) independently by passing props you need. You can find component stories settings in `Component.stories.ts` files.
173173

0 commit comments

Comments
 (0)