Skip to content

Commit

Permalink
[MERGE] fix/#28 -> develop
Browse files Browse the repository at this point in the history
[FIX] npm run clean & build 배포 스크립트에 포함되도록 수정
  • Loading branch information
sung-silver authored Nov 30, 2024
2 parents 33b6d34 + 5902a98 commit 412fe27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"lint": "eslint .",
"format": "prettier --write .",
"start": "serverless offline start",
"deploy:dev": "NODE_ENV=dev sls deploy --stage dev",
"deploy:prod": "NODE_ENV=prod sls deploy --stage prod"
"deploy:dev": "npm run clean && npm run build && NODE_ENV=dev sls deploy --stage dev",
"deploy:prod": "npm run clean && npm run build && NODE_ENV=prod sls deploy --stage prod"
},
"keywords": [],
"author": "",
Expand Down

0 comments on commit 412fe27

Please sign in to comment.