Skip to content

Commit

Permalink
fix(migrator): fix invalid semver (#6775)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanlivens committed Oct 23, 2021
1 parent 9aeafc0 commit d6b90ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@vue/cli-plugin-unit-jest/migrator/index.js
Expand Up @@ -13,7 +13,7 @@ module.exports = (api) => {

if (!allDeps['vue-jest']) {
// Likely a Vue 2 project, and uses the builtin preset.
newDevDeps['@vue/vue3-jest'] = '^27.0.0.alpha.1'
newDevDeps['@vue/vue3-jest'] = '^27.0.0-alpha.1'
}

if (allDeps['@vue/cli-plugin-typescript'] && !allDeps['ts-jest']) {
Expand Down

0 comments on commit d6b90ab

Please sign in to comment.