From a37a2d4a3d93cf1c4ecbbcd2ddc2ebc4c12042ce Mon Sep 17 00:00:00 2001 From: Steven Date: Fri, 19 Jan 2024 11:28:24 -0500 Subject: [PATCH] chore(ci): use corepack to pin pnpm version (#858) This will pin the version of pnpm to make sure we're all use the same version and avoid unncessary lockfile changes. ``` corepack use pnpm@latest ``` --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 54d4dee75..80c2f942f 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,10 @@ "name": "examples", "license": "MIT", "private": true, + "packageManager": "pnpm@8.14.1+sha256.2df78e65d433d7693b9d3fbdaf431b2d96bb4f96a2ffecd51a50efe16e50a6a8", + "engines": { + "pnpm": "8.14.1" + }, "scripts": { "lint-staged": "lint-staged", "new-example": "plop example",