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.
22 lines
599 B
JSON
22 lines
599 B
JSON
{
|
|
"name": "ui",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"repository": "https://github.com/p-sw/ui",
|
|
"author": "p-sw <shinwoo.park@psw.kr>",
|
|
"license": "MIT",
|
|
"workspaces": [
|
|
"packages/*",
|
|
"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"
|
|
},
|
|
"private": true,
|
|
"packageManager": "yarn@4.2.2+sha256.1aa43a5304405be7a7cb9cb5de7b97de9c4e8ddd3273e4dad00d6ae3eb39f0ef"
|
|
}
|