Skip to content

Commit

Permalink
build: docker용 build scripts 수정
Browse files Browse the repository at this point in the history
- run 제거
  • Loading branch information
hyonun321 committed Nov 14, 2024
1 parent 1bf428d commit 36ec9d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"license": "UNLICENSED",
"type": "commonjs",
"scripts": {
"build": " build:noctaCrdt &&nest build --webpack --webpackPath webpack.config.js",
"build": " pnpm build:noctaCrdt && nest build --webpack --webpackPath webpack.config.js",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"src/**/*.{ts,tsx}\" --fix",
"build:noctaCrdt": "pnpm --filter @noctaCrdt run build",
"build:noctaCrdt": "pnpm --filter @noctaCrdt build",
"test": "pnpm build:noctaCrdt && jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
Expand Down

0 comments on commit 36ec9d6

Please sign in to comment.