Skip to content

Commit

Permalink
bug fix5
Browse files Browse the repository at this point in the history
  • Loading branch information
doyupK committed Jul 3, 2024
1 parent 3f54217 commit e7d27f2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 25 deletions.
1 change: 0 additions & 1 deletion apps/web/src/constants/form/updatePassword.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ export const form = [
placeholder: '새 비밀번호를 한번 더 입력해주세요.',
options: {
validate: password,
deps: ['newPassword'],
},
},
] as Form<
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@supercarmarket/config": "workspace:*",
"dotenv-cli": "^7.0.0",
"prettier": "latest",
"turbo": "latest"
"turbo": "1.10.14"
},
"engines": {
"node": ">=14.0.0"
Expand Down
38 changes: 15 additions & 23 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"pipeline": {
"build": {
"dependsOn": [
"^build",
"sitemap"
],
"outputs": [
"dist/**",
".next/**"
]
"dependsOn": ["^build", "sitemap"],
"outputs": ["dist/**", ".next/**"]
},
"sitemap": {
"outputs": []
Expand All @@ -22,19 +16,17 @@
}
},
"globalDependencies": [
".env.production"
],
"globalEnv": [
"NEXT_PUBLIC_URL",
"NEXT_PUBLIC_SERVER_URL",
"NEXT_PUBLIC_API_MOCKING",
"NEXT_PUBLIC_AUTH_SECRET",
"NEXT_PUBLIC_GOOGLE_ID",
"NEXT_PUBLIC_GOOGLE_SECRET",
"NEXT_PUBLIC_KAKAO_ID",
"NEXT_PUBLIC_KAKAO_SECRET",
"NEXT_PUBLIC_OPENVIDU_SECRET",
"NEXT_PUBLIC_OPENVIDU_API_URL",
"NEXT_PUBLIC_GOOGLE_ANALYTICS"
".env.production",
"$NEXT_PUBLIC_URL",
"$NEXT_PUBLIC_SERVER_URL",
"$NEXT_PUBLIC_API_MOCKING",
"$NEXT_PUBLIC_AUTH_SECRET",
"$NEXT_PUBLIC_GOOGLE_ID",
"$NEXT_PUBLIC_GOOGLE_SECRET",
"$NEXT_PUBLIC_KAKAO_ID",
"$NEXT_PUBLIC_KAKAO_SECRET",
"$NEXT_PUBLIC_OPENVIDU_SECRET",
"$NEXT_PUBLIC_OPENVIDU_API_URL",
"$NEXT_PUBLIC_GOOGLE_ANALYTICS"
]
}

0 comments on commit e7d27f2

Please sign in to comment.