Skip to content

Commit 325b0fe

Browse files
committed
fix: /usr/bin/bash: line 1: pnpm: command not found
1 parent 5849fdf commit 325b0fe

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"module": "src/index.ts",
88
"scripts": {
99
"dev": "bun run --hot src/index.ts",
10-
"fc": "bunx prettier --write . && bunx eslint --fix . && bunx prettier --check . && pnpm eslint .",
10+
"fc": "bunx prettier --write . && bunx eslint --fix . && bunx prettier --check . && bunx eslint .",
1111
"mig": "rm -rf prisma/migrations && bunx prisma generate && bunx prisma migrate dev --name init"
1212
},
1313
"dependencies": {

src/service/contact-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class ContactService {
1818
): Promise<ContactResponse> {
1919
request = ContactValidation.CREATE.parse(request);
2020

21-
let data = {
21+
const data = {
2222
...request,
2323
...{ username: user.username },
2424
};

0 commit comments

Comments
 (0)