Skip to content

Commit

Permalink
docs: unify deploy script name (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
miyaoka authored and yyx990803 committed Apr 16, 2018
1 parent 79f8f14 commit 54251ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/guide/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ You can run this script in your CI setup to enable automatic deployment on each
``` json
{
"scripts": {
"build-docs": "vuepress build docs"
"docs:build": "vuepress build docs"
}
}
```

2. On Netlify, setup up a new project from GitHub with the following settings:

- **Build Command:** `npm run build-docs` or `yarn build-docs`
- **Build Command:** `npm run docs:build` or `yarn docs:build`
- **Publish directory:** `docs/.vuepress/dist`

3. Hit the deploy button!

0 comments on commit 54251ec

Please sign in to comment.