Skip to content

Commit

Permalink
fix: update pnpm scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
rajdip-b committed Dec 29, 2023
1 parent bb28cb7 commit e73a877
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/web/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"serve": {
"executor": "@nx/next:server",
"defaultConfiguration": "production",
"defaultConfiguration": "development",
"options": {
"buildTarget": "web:build",
"dev": true,
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"prettier:fix": "nx run-many -t prettier:lint --parallel",
"prettier:fix:api": "nx run api:prettier:fix",
"build": "nx run-many -t build -p api web workspace --parallel --maxParallel 3",
"build:api": "nx run api:build",
"build:web": "nx run web:build",
"build:api": "nx run api:build --configuration=production",
"build:web": "nx run web:build --configuration=production",
"build:workspace": "nx run workspace:build",
"build:cli": "nx run cli:build",
"build:sdk-node": "nx run sdk-js:build",
Expand All @@ -28,7 +28,7 @@
"test:workspace": "nx run workspace:test",
"test:cli": "nx run cli:test",
"test:sdk-node": "nx run sdk-js:test",
"start:web": "nx run web:serve",
"start:web": "nx run web:serve --configuration=production",
"db:seed": "cd apps/api/src/prisma && pnpx ts-node seed.ts",
"db:generate-types": "nx run api:prisma:generate",
"db:generate-migrations": "cd apps/api/src/prisma && pnpx prisma migrate dev --create-only --skip-seed",
Expand Down

0 comments on commit e73a877

Please sign in to comment.