Skip to content

Commit

Permalink
chore: root package.json 스크립트 수정
Browse files Browse the repository at this point in the history
1) root 디렉토리에서 nest cli를 호출하는 script를 삭제했습니다.

2) pnpm을 이용해 전체 패키지를 관리하는 스크립트를 추가했습니다.
  • Loading branch information
leobang17 committed Jun 14, 2024
1 parent 68e9010 commit 9142dac
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"start": "pnpm --recursive run start",
"build": "pnpm --recursive run build",
"auth": "pnpm -F @apps/auth",
"common": "pnpm -F @libs/common",
"format": "prettier --write \"apps/**/*.ts\" \"libs/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/apps/yapp-web-2-server/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
Expand Down Expand Up @@ -77,4 +76,4 @@
"^@app/common(|/.*)$": "<rootDir>/libs/common/src/$1"
}
}
}
}

0 comments on commit 9142dac

Please sign in to comment.