From c291ef2fb4f76fdbac843db9dc5c890d3c3d361b Mon Sep 17 00:00:00 2001 From: Chris Grimmett Date: Fri, 29 Mar 2024 20:43:38 -0800 Subject: [PATCH] use pnpm in package.json scripts --- packages/next/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/next/package.json b/packages/next/package.json index a22d4d5..f163211 100644 --- a/packages/next/package.json +++ b/packages/next/package.json @@ -3,10 +3,10 @@ "version": "2.0.0", "private": true, "scripts": { - "dev": "next dev", - "build": "next build", - "start": "next start", - "lint": "next lint", + "dev": "pnpm next dev", + "build": "pnpm next build", + "start": "pnpm next start", + "lint": "pnpm next lint", "preinstall": "npx only-allow pnpm" }, "dependencies": {