Skip to content

Commit 570a76f

Browse files
chore(deps): update dependency typescript to v5 (#105)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: eps1lon <[email protected]>
1 parent e7cc22f commit 570a76f

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

dist/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29831,8 +29831,8 @@ query openPullRequests($owner: String!, $repo: String!, $after: String, $baseRef
2983129831
* Assumes that the label exists
2983229832
* @returns `true` if the label was added, `false` otherwise (e.g. when it already exists)
2983329833
*/
29834-
function addLabelIfNotExists(labelName, issue, { client }) {
29835-
return __awaiter(this, void 0, void 0, function* () {
29834+
function addLabelIfNotExists(labelName_1, issue_1, _a) {
29835+
return __awaiter(this, arguments, void 0, function* (labelName, issue, { client }) {
2983629836
core.debug(JSON.stringify(issue, null, 2));
2983729837
const hasLabel = issue.labels.nodes.find((labe) => {
2983829838
return labe.name === labelName;
@@ -29861,8 +29861,8 @@ function addLabelIfNotExists(labelName, issue, { client }) {
2986129861
});
2986229862
});
2986329863
}
29864-
function removeLabelIfExists(labelName, issue, { client }) {
29865-
return __awaiter(this, void 0, void 0, function* () {
29864+
function removeLabelIfExists(labelName_1, issue_1, _a) {
29865+
return __awaiter(this, arguments, void 0, function* (labelName, issue, { client }) {
2986629866
const hasLabel = issue.labels.nodes.find((labe) => {
2986729867
return labe.name === labelName;
2986829868
}) !== undefined;
@@ -29893,8 +29893,8 @@ function removeLabelIfExists(labelName, issue, { client }) {
2989329893
});
2989429894
});
2989529895
}
29896-
function addComment(comment, { number }, { client }) {
29897-
return __awaiter(this, void 0, void 0, function* () {
29896+
function addComment(comment_1, _a, _b) {
29897+
return __awaiter(this, arguments, void 0, function* (comment, { number }, { client }) {
2989829898
try {
2989929899
yield client.rest.issues.createComment({
2990029900
owner: github.context.repo.owner,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@types/node": "^20.11.30",
1515
"@vercel/ncc": "0.38.1",
1616
"prettier": "2.8.8",
17-
"typescript": "4.9.5"
17+
"typescript": "5.4.3"
1818
},
1919
"prettier": {
2020
"useTabs": true

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,10 @@ tunnel@^0.0.6:
159159
resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz#72f1314b34a5b192db012324df2cc587ca47f92c"
160160
integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==
161161

162-
typescript@4.9.5:
163-
version "4.9.5"
164-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
165-
integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
162+
typescript@5.4.3:
163+
version "5.4.3"
164+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.3.tgz#5c6fedd4c87bee01cd7a528a30145521f8e0feff"
165+
integrity sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==
166166

167167
undici-types@~5.26.4:
168168
version "5.26.5"

0 commit comments

Comments
 (0)