Skip to content

Commit

Permalink
docs: change references of "Vue CLI 3" to "Vue CLI" (vuejs#3422) [ci …
Browse files Browse the repository at this point in the history
…skip]
  • Loading branch information
haoqunjiang authored Feb 8, 2019
1 parent 87f9a29 commit 43bee4e
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ module.exports = {
locales: {
'/': {
lang: 'en-US',
title: 'Vue CLI 3',
title: 'Vue CLI',
description: '🛠️ Standard Tooling for Vue.js Development'
},
'/zh/': {
lang: 'zh-CN',
title: 'Vue CLI 3',
title: 'Vue CLI',
description: '🛠️ Vue.js 开发的标准工具'
},
'/ru/': {
lang: 'ru',
title: 'Vue CLI 3',
title: 'Vue CLI',
description: '🛠️ Стандартный инструментарий для разработки на Vue.js'
}
},
Expand Down
2 changes: 1 addition & 1 deletion docs/dev-guide/plugin-dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ Example:
{
"name": "vue-cli-plugin-apollo",
"version": "0.7.7",
"description": "vue-cli 3 plugin to add Apollo and GraphQL"
"description": "vue-cli plugin to add Apollo and GraphQL"
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/dev-guide/ui-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ A Client addon is a JS bundle which is dynamically loaded into the cli-ui. It is

### Create a client addon

The recommended way to create a Client addon is by creating a new project using vue-cli 3. You can either do this in a subfolder of your plugin or in a different npm package.
The recommended way to create a Client addon is by creating a new project using vue cli. You can either do this in a subfolder of your plugin or in a different npm package.

Install `@vue/cli-ui` as a dev dependency.

Expand Down
2 changes: 1 addition & 1 deletion docs/dev-guide/ui-info.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Example:
{
"name": "vue-cli-plugin-apollo",
"version": "0.7.7",
"description": "vue-cli 3 plugin to add Apollo and GraphQL"
"description": "vue-cli plugin to add Apollo and GraphQL"
}
```

Expand Down
6 changes: 3 additions & 3 deletions docs/guide/creating-a-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ vue create hello-world

::: warning
If you are on Windows using Git Bash with minTTY, the interactive prompts will not work. You must launch the command as `winpty vue.cmd create hello-world`.
If you however want to still use the `vue create hello-world` syntax, you can alias the command by adding the following line to your `~/.bashrc` file.
`alias vue='winpty vue.cmd'`
If you however want to still use the `vue create hello-world` syntax, you can alias the command by adding the following line to your `~/.bashrc` file.
`alias vue='winpty vue.cmd'`
You will need to restart your Git Bash terminal session to pull in the updated bashrc file.
:::

Expand Down Expand Up @@ -73,7 +73,7 @@ The above command will open a browser window with a GUI that guides you through

## Pulling 2.x Templates (Legacy)

Vue CLI 3 uses the same `vue` binary, so it overwrites Vue CLI 2 (`vue-cli`). If you still need the legacy `vue init` functionality, you can install a global bridge:
Vue CLI >= 3 uses the same `vue` binary, so it overwrites Vue CLI 2 (`vue-cli`). If you still need the legacy `vue init` functionality, you can install a global bridge:

``` bash
npm install -g @vue/cli-init
Expand Down
2 changes: 1 addition & 1 deletion docs/ru/dev-guide/ui-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ api.addTask({

### Создание клиентского дополнения

Рекомендуемый способ создания клиентского дополнения — создать новый проект с помощью vue-cli 3. Вы можете либо сделать это в подкаталоге вашего плагина, либо в другом npm пакете.
Рекомендуемый способ создания клиентского дополнения — создать новый проект с помощью vue cli. Вы можете либо сделать это в подкаталоге вашего плагина, либо в другом npm пакете.

Установите `@vue/cli-ui` в качестве зависимости для разработки (dev dependency).

Expand Down
2 changes: 1 addition & 1 deletion docs/ru/dev-guide/ui-info.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
{
"name": "vue-cli-plugin-apollo",
"version": "0.7.7",
"description": "vue-cli 3 plugin to add Apollo and GraphQL"
"description": "vue-cli plugin to add Apollo and GraphQL"
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/ru/guide/creating-a-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ vue ui

## Шаблоны для версии 2.x (старое поведение)

Vue CLI 3 использует команду `vue`, поэтому он перезаписывает Vue CLI 2 (`vue-cli`). Если вам по-прежнему необходимо старое поведение и функциональность команды `vue init`, нужно лишь установить глобально дополнительный плагин `@vue/cli-init`:
Vue CLI >= 3 использует команду `vue`, поэтому он перезаписывает Vue CLI 2 (`vue-cli`). Если вам по-прежнему необходимо старое поведение и функциональность команды `vue init`, нужно лишь установить глобально дополнительный плагин `@vue/cli-init`:

``` bash
npm install -g @vue/cli-init
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/dev-guide/ui-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ api.addTask({

### 创建一个客户端 addon

推荐的创建一个客户端 addon 的方式是通过 vue-cli 3 创建一个新项目。你也可以在插件的子目录或不同的 npm 包中这样做。
推荐的创建一个客户端 addon 的方式是通过 vue cli 创建一个新项目。你也可以在插件的子目录或不同的 npm 包中这样做。

作为开发依赖安装 `@vue/cli-ui`

Expand Down
2 changes: 1 addition & 1 deletion docs/zh/dev-guide/ui-info.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
{
"name": "vue-cli-plugin-apollo",
"version": "0.7.7",
"description": "vue-cli 3 plugin to add Apollo and GraphQL"
"description": "vue cli plugin to add Apollo and GraphQL"
}
```

Expand Down
6 changes: 3 additions & 3 deletions docs/zh/guide/creating-a-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ vue create hello-world
```

::: warning 警告
如果你在 Windows 上通过 minTTY 使用 Git Bash,交互提示符并不工作。你必须通过 `winpty vue.cmd create hello-world` 启动这个命令。不过,如果你仍想使用 `vue create hello-world`,则可以通过在 `~/.bashrc` 文件中添加以下行来为命令添加别名。
`alias vue='winpty vue.cmd'`
如果你在 Windows 上通过 minTTY 使用 Git Bash,交互提示符并不工作。你必须通过 `winpty vue.cmd create hello-world` 启动这个命令。不过,如果你仍想使用 `vue create hello-world`,则可以通过在 `~/.bashrc` 文件中添加以下行来为命令添加别名。
`alias vue='winpty vue.cmd'`
你需要重新启动 Git Bash 终端会话以使更新后的 bashrc 文件生效。
:::

Expand Down Expand Up @@ -72,7 +72,7 @@ vue ui

## 拉取 2.x 模板 (旧版本)

Vue CLI 3 和旧版使用了相同的 `vue` 命令,所以 Vue CLI 2 (`vue-cli`) 被覆盖了。如果你仍然需要使用旧版本的 `vue init` 功能,你可以全局安装一个桥接工具:
Vue CLI >= 3 和旧版使用了相同的 `vue` 命令,所以 Vue CLI 2 (`vue-cli`) 被覆盖了。如果你仍然需要使用旧版本的 `vue init` 功能,你可以全局安装一个桥接工具:

``` bash
npm install -g @vue/cli-init
Expand Down

0 comments on commit 43bee4e

Please sign in to comment.