Skip to content

Commit

Permalink
docs: remove tag 'next' from installation instructions (vuejs#1686)
Browse files Browse the repository at this point in the history
It seems to point to an older version (1.0.0-rc.1 instead of 1.0.2).
  • Loading branch information
mulmschneider authored and ulivz committed Jul 15, 2019
1 parent 6bfc0e2 commit 667d9f4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/docs/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ footer: MIT Licensed | Copyright © 2018-present Evan You

``` bash
# install
yarn global add vuepress@next
# OR npm install -g vuepress@next
yarn global add vuepress
# OR npm install -g vuepress

# create a markdown file
echo '# Hello VuePress' > README.md
Expand Down
4 changes: 2 additions & 2 deletions packages/docs/docs/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ If you just want to play around with VuePress, you can install it globally:

``` bash
# install globally
yarn global add vuepress@next # OR npm install -g vuepress@next
yarn global add vuepress # OR npm install -g vuepress

# create a markdown file
echo '# Hello VuePress' > README.md
Expand All @@ -28,7 +28,7 @@ If you have an existing project and would like to keep documentation inside the

``` bash
# install as a local dependency
yarn add -D vuepress@next # OR npm install -D vuepress@next
yarn add -D vuepress # OR npm install -D vuepress

# create a docs directory
mkdir docs
Expand Down
4 changes: 2 additions & 2 deletions packages/docs/docs/zh/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

``` bash
# 安装
yarn global add vuepress@next # 或者:npm install -g vuepress@next
yarn global add vuepress # 或者:npm install -g vuepress

# 新建一个 markdown 文件
echo '# Hello VuePress!' > README.md
Expand All @@ -28,7 +28,7 @@ vuepress build .

``` bash
# 将 VuePress 作为一个本地依赖安装
yarn add -D vuepress@next # 或者:npm install -D vuepress@next
yarn add -D vuepress # 或者:npm install -D vuepress

# 新建一个 docs 文件夹
mkdir docs
Expand Down

0 comments on commit 667d9f4

Please sign in to comment.