Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

docs: fix typo and details for package.json #651

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions site/docs/getting-started/preparation.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,16 @@ The slide display order is as follows.

## package.json

It is good to define in pacakge.json as follows.
It is good to define in package.json as follows.

```json
{
"start": "fusuma start",
"start:prod": "fusuma start-prod",
"build": "fusuma build",
"deploy": "npm run build && fusuma deploy",
"pdf": "npm run build && fusuma pdf"
"scripts": {
"start": "fusuma start",
"start:prod": "fusuma start-prod",
"build": "fusuma build",
"deploy": "npm run build && fusuma deploy",
"pdf": "npm run build && fusuma pdf"
}
}
```