From 25e0175760e4e9e5b361d57c3afc326d45619ca2 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Wed, 17 Apr 2024 09:01:17 +0200 Subject: [PATCH] chore: use packageManager field to set pnpm version The `pnpm/action-setup` on ci and the renovate bot will use this field to install the proper pnpm version --- .github/workflows/ci.yml | 4 ---- package.json | 1 + 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f3cc6c83..b44abbcef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,8 +17,6 @@ jobs: steps: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v3 - with: - version: 8 - uses: actions/setup-node@v4 with: node-version: 18 @@ -108,8 +106,6 @@ jobs: steps: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v3 - with: - version: 8 - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} diff --git a/package.json b/package.json index d46487aa7..e1c660ab2 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "version": "3.10.3", "description": "An easy way to start a Vue project", "type": "module", + "packageManager": "pnpm@8.15.1", "bin": { "create-vue": "outfile.cjs" },