From 3ab14abb5832e9f4997d4598b3c008d9cd637029 Mon Sep 17 00:00:00 2001 From: p-sw <shinwoo.park@psw.kr> Date: Thu, 6 Jun 2024 19:04:22 +0900 Subject: [PATCH] feat: add script shortcuts to package.json Added two new script shortcuts for React and CLI workspaces to the package.json file. These shortcuts will streamline the build and dev process by reducing the required command length. --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index a557183..15affce 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,8 @@ "components" ], "scripts": { + "react": "yarn workspace react", + "cli": "yarn workspace @psw-ui/cli", "react:build": "yarn workspace react build", "react:dev": "yarn workspace react dev", "cli:build": "yarn workspace @psw-ui/cli build"