Fix yarn dev
Lauren Tan committed
Apr 2, 2024 at 12:18 UTC
e61f9832643ee988a75a49dbf11bc3a52ae3d708
2 files changed
+2
-2
compiler/apps/playground/package.json
+1
-1
@@ -3,7 +3,7 @@
3
"version": "0.1.0",
4
"private": true,
5
"scripts": {
6
- "dev": "NODE_ENV=development && next dev",
6
+ "dev": "NODE_ENV=development next dev",
7
"build": "next build && node ./scripts/downloadFonts.js",
8
"vercel-build": "yarn workspaces run build",
9
"start": "next start",
compiler/package.json
+1
-1
@@ -22,7 +22,7 @@
22
"start": "yarn workspace playground run start",
23
"next": "yarn workspace playground run dev",
24
"build": "yarn workspaces run build",
25
- "dev": "concurrently --kill-others -n forget,playground \"yarn workspace babel-plugin-react-forget run tsc --watch\" \"yarn workspace playground run dev\"",
25
+ "dev": "concurrently --kill-others -n compiler,playground \"yarn workspace babel-plugin-react-forget run build --watch\" \"yarn workspace playground run dev\"",
26
"test": "yarn workspaces run test",
27
"snap": "yarn workspace babel-plugin-react-forget run snap",
28
"snap:build": "yarn workspace snap run build"