Skip to content

Commit 667d9f4

Browse files
mulmschneiderulivz
authored andcommitted
docs: remove tag 'next' from installation instructions (#1686)
It seems to point to an older version (1.0.0-rc.1 instead of 1.0.2).
1 parent 6bfc0e2 commit 667d9f4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

packages/docs/docs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ footer: MIT Licensed | Copyright © 2018-present Evan You
2929

3030
``` bash
3131
# install
32-
yarn global add vuepress@next
33-
# OR npm install -g vuepress@next
32+
yarn global add vuepress
33+
# OR npm install -g vuepress
3434

3535
# create a markdown file
3636
echo '# Hello VuePress' > README.md

packages/docs/docs/guide/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If you just want to play around with VuePress, you can install it globally:
1010

1111
``` bash
1212
# install globally
13-
yarn global add vuepress@next # OR npm install -g vuepress@next
13+
yarn global add vuepress # OR npm install -g vuepress
1414

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

2929
``` bash
3030
# install as a local dependency
31-
yarn add -D vuepress@next # OR npm install -D vuepress@next
31+
yarn add -D vuepress # OR npm install -D vuepress
3232

3333
# create a docs directory
3434
mkdir docs

packages/docs/docs/zh/guide/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
``` bash
1212
# 安装
13-
yarn global add vuepress@next # 或者:npm install -g vuepress@next
13+
yarn global add vuepress # 或者:npm install -g vuepress
1414

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

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

3333
# 新建一个 docs 文件夹
3434
mkdir docs

0 commit comments

Comments
 (0)