Skip to content

Commit

Permalink
npm scriptである必要がない
Browse files Browse the repository at this point in the history
  • Loading branch information
TinyKitten committed Dec 12, 2023
1 parent c5af31a commit 05b31be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
"clean": "rimraf ./app/generated",
"generate:grpc": "mkdirp ./app/generated && protoc -I=./proto stationapi.proto --js_out=import_style=commonjs,binary:./app/generated --grpc-web_out=import_style=typescript,mode=grpcweb:./app/generated",
"generate": "npm run clean && npm run generate:grpc",
"postinstall": "npm run generate",
"vercel:install": "sh ./scripts/prepare-vercel.sh"
"postinstall": "npm run generate"
},
"dependencies": {
"next": "14.0.2",
Expand Down
2 changes: 1 addition & 1 deletion vercel.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"installCommand": "npm run vercel:install"
"installCommand": "sh ./scripts/prepare-vercel.sh"
}

0 comments on commit 05b31be

Please sign in to comment.