Skip to content

Remove tag 'next' from installation instructions #1686

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 15, 2019
Merged
Show file tree
Hide file tree
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
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