Skip to content

Commit

Permalink
chore: build for next deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
nlkluth committed Oct 24, 2023
1 parent 94dc242 commit ef17231
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"next:dev": "pnpm run --filter ./packages/nextjs next:dev",
"next:dev:mock": "pnpm run --filter ./packages/nextjs next:dev:mock",
"build:nextjs": "pnpm run --filter ./packages/nextjs build",
"build:shared-ui": "pnpm run --filter shared-ui build",
"start:nextjs": "pnpm run --filter ./packages/nextjs start",
"prepare": "husky install",
"lint": "pnpm run --parallel lint",
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dev": "concurrently \"yarn next:dev\"",
"next:dev": "next dev",
"next:dev:mock": "NEXT_PUBLIC_API_MOCKING=enabled next dev",
"build": "next build",
"build": "pnpm -C ../../ build:shared-ui && next build",
"start": "next start",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
Expand Down

0 comments on commit ef17231

Please sign in to comment.