From 1c34dd4e307d52a30a3bb630d3512bdaf03a321b Mon Sep 17 00:00:00 2001 From: p-sw Date: Thu, 6 Jun 2024 19:27:36 +0900 Subject: [PATCH] style: correct spacing in package.json scripts This commit corrects the spacing for the "cli" script in package.json. It eliminates the extra spaces and aligns with the consistent style used throughout the file, promoting better readability and code structure. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 15affce..dcf8033 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ ], "scripts": { "react": "yarn workspace react", - "cli": "yarn workspace @psw-ui/cli", + "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"