Skip to content

Commit

Permalink
chore(backend): フォーマットの対象にPrismaのスキーマを追加 (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
r4ai authored Nov 18, 2024
1 parent a8aa991 commit 06ade7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"generate:typescript": "openapi-typescript ../generated/openapi/schema.json -o ../generated/openapi/schema.ts && prettier --write --semi=false ../generated/openapi/schema.ts",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint:write": "eslint --cache --cache-location ./node_modules/.cache/eslint --fix .",
"format": "prettier --ignore-path .gitignore --check .",
"format:write": "prettier --ignore-path .gitignore --write .",
"format": "prettier --ignore-path .gitignore --check . && bun run prisma format --check",
"format:write": "prettier --ignore-path .gitignore --write . && bun run prisma format",
"test": "DATABASE_URL=file:./test.db bun run prisma migrate reset --force && DATABASE_URL=file:./test.db vitest",
"coverage": "vitest run --coverage",
"postinstall": "bun run src/bin/postinstall.ts"
Expand Down

0 comments on commit 06ade7b

Please sign in to comment.