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.
This commit is contained in:
p-sw 2024-06-06 19:04:22 +09:00
parent 2891e26203
commit 3ab14abb58

View File

@ -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"