From e61f9832643ee988a75a49dbf11bc3a52ae3d708 Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Tue, 2 Apr 2024 12:18:12 -0400 Subject: [PATCH] Fix yarn dev --- compiler/apps/playground/package.json | 2 +- compiler/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/apps/playground/package.json b/compiler/apps/playground/package.json index eb5fba32ea..d81b217d77 100644 --- a/compiler/apps/playground/package.json +++ b/compiler/apps/playground/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "scripts": { - "dev": "NODE_ENV=development && next dev", + "dev": "NODE_ENV=development next dev", "build": "next build && node ./scripts/downloadFonts.js", "vercel-build": "yarn workspaces run build", "start": "next start", diff --git a/compiler/package.json b/compiler/package.json index 5c09d04c61..73e6e41e3f 100644 --- a/compiler/package.json +++ b/compiler/package.json @@ -22,7 +22,7 @@ "start": "yarn workspace playground run start", "next": "yarn workspace playground run dev", "build": "yarn workspaces run build", - "dev": "concurrently --kill-others -n forget,playground \"yarn workspace babel-plugin-react-forget run tsc --watch\" \"yarn workspace playground run dev\"", + "dev": "concurrently --kill-others -n compiler,playground \"yarn workspace babel-plugin-react-forget run build --watch\" \"yarn workspace playground run dev\"", "test": "yarn workspaces run test", "snap": "yarn workspace babel-plugin-react-forget run snap", "snap:build": "yarn workspace snap run build"