Skip to content

Commit 15c86f0

Browse files
committed
docs: preparing v4 stable release [ci skip]
1 parent c80fb6a commit 15c86f0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/.vuepress/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ module.exports = {
5050
themeConfig: {
5151
repo: 'vuejs/vue-cli',
5252
docsDir: 'docs',
53-
docsBranch: 'next',
53+
docsBranch: 'master',
5454
editLinks: true,
5555
sidebarDepth: 3,
5656
algolia: {

docs/migrating-from-v3/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ sidebar: auto
77
First, install the latest Vue CLI globally:
88

99
```sh
10-
npm install -g @vue/cli@next
10+
npm install -g @vue/cli
1111
```
1212

1313
## Upgrade All Plugins at Once
1414

1515
In your existing projects, run:
1616

1717
```sh
18-
vue upgrade --next
18+
vue upgrade
1919
```
2020

2121
And then see the following section for detailed breaking changes introduced in each package.
@@ -185,11 +185,11 @@ The babel plugin requires a peer dependency, for the polyfills used in the trans
185185

186186
In Vue CLI v3, the required `core-js` version is 2.x, it is now upgraded to 3.x.
187187

188-
This migration is automated if you upgrade it through `vue upgrade babel --next`. But if you have custom polyfills introduced, you may need to manually update the polyfill names (For more details, see [core-js changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md#L279-L297)).
188+
This migration is automated if you upgrade it through `vue upgrade babel`. But if you have custom polyfills introduced, you may need to manually update the polyfill names (For more details, see [core-js changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md#L279-L297)).
189189

190190
#### Babel Preset
191191

192-
This migration is also automated if you upgrade it through `vue upgrade babel --next`.
192+
This migration is also automated if you upgrade it through `vue upgrade babel`.
193193

194194
- In v3, the default babel preset used in `babel.config.js` is `@vue/app`.
195195
- In v4, we moved it to the plugin, so now it's named as `@vue/cli-plugin-babel/preset`
@@ -207,7 +207,7 @@ This plugin now [requires ESLint as a peer dependency]((https://github.com/vuejs
207207

208208
This won't affect projects scaffolded with Vue CLI 3.1 or later.
209209

210-
If your project was scaffolded with Vue CLI 3.0.x or earlier, you may need to add `eslint@4` to your project dependencies (This is automated if you upgrade the plugin using `vue upgrade eslint --next`).
210+
If your project was scaffolded with Vue CLI 3.0.x or earlier, you may need to add `eslint@4` to your project dependencies (This is automated if you upgrade the plugin using `vue upgrade eslint`).
211211

212212
It's also recommended to upgrade your ESLint to v5, and ESLint config versions to the latest. (ESLint v6 support is still on the way)
213213

0 commit comments

Comments
 (0)