Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d319007

Browse filesBrowse files
authored
feat: implement a migrator that removes vue-next as it's no longer needed (#5725)
1 parent 57f4184 commit d319007
Copy full SHA for d319007

File tree

Expand file treeCollapse file tree

1 file changed

+14
-0
lines changed
Filter options
  • packages/@vue/cli-service/migrator
Expand file treeCollapse file tree

1 file changed

+14
-0
lines changed
+14Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = (api) => {
2+
if (api.hasPlugin('vue-next')) {
3+
api.extendPackage({
4+
devDependencies: {
5+
'vue-cli-plugin-vue-next': null
6+
}
7+
},
8+
{
9+
prune: true
10+
})
11+
12+
api.exitLog('vue-cli-plugin-vue-next is removed because Vue 3 support has been built into the core plugins.')
13+
}
14+
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.