Skip to content

Commit

Permalink
fix: build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dahal committed May 15, 2024
1 parent e7bc77d commit 3a8f063
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 189 deletions.
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const config = {
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
// ignoreDuringBuilds: true,
},
};

Expand Down
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@
"dx:restart": "docker-compose -f compose.yml restart",
"dx:migrate": "docker compose run app pnpm db:migrate",
"dx:seed": "docker compose run app pnpm db:seed",
"db:push": "npx prisma db push",
"db:studio": "npx prisma studio",
"db:migrate": "npx prisma migrate dev",
"db:generate": "npx prisma generate",
"db:seed": "NODE_ENV='test' npx tsx prisma/seeds/index.ts",
"db:push": "pnpx prisma db push",
"db:studio": "pnpx prisma studio",
"db:migrate": "pnpx prisma migrate dev",
"db:generate": "pnpx prisma generate",
"db:seed": "NODE_ENV='test' pnpx tsx prisma/seeds/index.ts",
"dev": "next dev",
"build": "next build",
"start": "next start",
"postinstall": "prisma generate",
"prepare": "husky install",
"lint": "biome check --apply ./src",
"email:dev": "mailpit",
"format": "biome format --write ./src && npx prisma format",
"format": "biome format --write ./src && pnpx prisma format",
"email:preview": "email preview ./src/emails",
"copy:pdfjs": "node scripts/copy-pdfjs-worker.cjs",
"trigger": "npx @trigger.dev/cli@latest dev"
"trigger": "pnpx @trigger.dev/cli@latest dev"
},
"dependencies": {
"@ark-ui/react": "^2.2.3",
Expand Down Expand Up @@ -109,6 +109,7 @@
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@blocknote/core": "^0.13.2",
"@faker-js/faker": "^8.4.0",
"@flydotio/dockerfile": "^0.5.4",
"@tailwindcss/typography": "^0.5.12",
Expand Down
Loading

0 comments on commit 3a8f063

Please sign in to comment.