From 98a66ee8e36b89e64d49d2fde1a751741b21eef9 Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Wed, 10 Jan 2024 10:20:56 +0100 Subject: [PATCH] chore: update vue version tag --- .github/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/test.js b/.github/test.js index 2dfe4e8..304e46a 100644 --- a/.github/test.js +++ b/.github/test.js @@ -22,7 +22,7 @@ function installDeps() { let installCmd = agent === 'yarn' ? `${agent} add` : `${agent} i` - const packages = isVue27 ? 'vue@v2-alpha' : isVue2 ? `vue@2.6 @vue/composition-api` : 'vue@3' + const packages = isVue27 ? 'vue@2.7' : isVue2 ? `vue@2.6 @vue/composition-api` : 'vue@3' execSync(`${installCmd} ${packages}`, { cwd: DIR, stdio: 'inherit' }) execSync(`${installCmd} ${agent === 'yarn' ? `file:${tarball}` : tarball} --force`, { cwd: DIR, stdio: 'inherit' }) }