Skip to content

Commit

Permalink
chore: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
casperiv0 committed Nov 21, 2023
1 parent 85e892a commit ec61f78
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/api/.swcrc
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
},
"baseUrl": "."
},
"minify": false
"minify": true
}
2 changes: 1 addition & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"scripts": {
"watch": "pnpm prisma generate && pnpm nodemon --watch \"./src/**/*.ts\" --ignore \"node_modules/**/*\" --exec ts-node src/main.ts",
"build": "swc src -d dist",
"start": "pnpm prisma migrate deploy && pnpm prisma generate && node dist/main.js",
"start": "pnpm prisma migrate deploy && pnpm prisma generate && node --inspect dist/main.js",
"format": "pnpm prisma format",
"generate": "pnpm prisma generate",
"typecheck": "pnpm generate && tsc --noEmit",
Expand Down
1 change: 1 addition & 0 deletions apps/client/src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ export default function App({ Component, router, pageProps, ...rest }: AppProps)
locale={locale}
messages={pageProps.messages}
now={new Date()}
getMessageFallback={(key) => key.key}
>
<DndProviderWrapper>
<ValuesProvider router={router} initialData={pageProps}>
Expand Down

0 comments on commit ec61f78

Please sign in to comment.