Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
nikgraf committed Jun 11, 2024
1 parent 96b3f35 commit 66e90aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"type": "module",
"scripts": {
"dev": "TS_NODE_TRANSPILE_ONLY=true nodemon --exec node --loader ts-node/esm ./src/index.ts",
"build:ts": "rm -rf dist && pnpm tsc --project tsconfig.json",
"build:deploy": "rm -rf build && pnpm deploy --filter=server --prod build",
"build": "pnpm run build:ts && pnpm build:deploy",
"build:ts": "rm -rf dist && yarn tsc --project tsconfig.json",
"build:deploy": "rm -rf build && yarn deploy --filter=server --prod build",
"build": "yarn run build:ts && yarn build:deploy",
"start:prod": "PORT=$PORT NODE_ENV=production node ./dist/index.js",
"ts:check": "tsc --noEmit",
"test": "echo \"Error: no test specified\"",
Expand Down

0 comments on commit 66e90aa

Please sign in to comment.