Merge pull request #665 from actions/dependabot/npm_and_yarn/prettier-3.2.4

Bump prettier from 3.1.1 to 3.2.4
This commit is contained in:
Justin Holguín
2024-01-31 14:19:36 -08:00
committed by GitHub
3 changed files with 7 additions and 7 deletions

8
package-lock.json generated
View File

@@ -39,7 +39,7 @@
"eslint-plugin-prettier": "^5.1.3",
"js-yaml": "^4.1.0",
"nodemon": "^3.0.3",
"prettier": "3.1.1",
"prettier": "3.2.4",
"typescript": "^5.3.3"
}
},
@@ -6830,9 +6830,9 @@
}
},
"node_modules/prettier": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.1.tgz",
"integrity": "sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==",
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.4.tgz",
"integrity": "sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ==",
"dev": true,
"bin": {
"prettier": "bin/prettier.cjs"

View File

@@ -55,7 +55,7 @@
"eslint-plugin-prettier": "^5.1.3",
"js-yaml": "^4.1.0",
"nodemon": "^3.0.3",
"prettier": "3.1.1",
"prettier": "3.2.4",
"typescript": "^5.3.3"
}
}

View File

@@ -74,8 +74,8 @@ async function findCommentByMarker(
)
for await (const {data: comments} of commentsIterator) {
const existingComment = comments.find(
comment => comment.body?.includes(commentBodyIncludes)
const existingComment = comments.find(comment =>
comment.body?.includes(commentBodyIncludes)
)
if (existingComment) return existingComment.id
}