Skip to content

Commit

Permalink
Update dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Nov 20, 2023
1 parent 940c607 commit f8e8fba
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
4 changes: 3 additions & 1 deletion lib/repo/labels.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,9 @@ export async function labels(info) {
[
'mutation {',
...mutations.map(function (d, i) {
return ` mut${i}: addLabelsToLabelable(input: { labelableId: ${JSON.stringify(d.issue)}, labelIds: ${JSON.stringify(d.labels)} }) { clientMutationId }`
return ` mut${i}: addLabelsToLabelable(input: { labelableId: ${JSON.stringify(
d.issue
)}, labelIds: ${JSON.stringify(d.labels)} }) { clientMutationId }`
}),
'}'
].join('\n')
Expand Down
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"index.js"
],
"dependencies": {
"@octokit/graphql": "^6.0.0",
"@octokit/rest": "^19.0.0",
"@octokit/graphql": "^7.0.0",
"@octokit/rest": "^20.0.0",
"@types/dlv": "^1.0.0",
"alpha-sort": "^5.0.0",
"arr-diff": "^4.0.0",
Expand All @@ -41,18 +41,18 @@
"@types/d3-color": "^3.0.0",
"@types/d3-scale": "^4.0.0",
"@types/node": "^20.0.0",
"prettier": "^2.0.0",
"prettier": "^3.0.0",
"remark-cli": "^11.0.0",
"remark-preset-wooorm": "^9.0.0",
"type-coverage": "^2.0.0",
"typescript": "^5.0.0",
"xo": "^0.54.0"
"xo": "^0.56.0"
},
"scripts": {
"start": "node --conditions development index.js",
"build": "tsc --build --clean && tsc --build && type-coverage",
"crawl": "node --conditions development script/crawl.js",
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
"format": "remark . -qfo && prettier . -w --log-level warn && xo --fix",
"test": "npm run build && npm run crawl && npm run format"
},
"prettier": {
Expand All @@ -77,7 +77,9 @@
"xo": {
"rules": {
"complexity": "off",
"no-await-in-loop": "off"
"no-await-in-loop": "off",
"unicorn/prefer-at": "off",
"unicorn/prefer-string-replace-all": "off"
},
"prettier": true
}
Expand Down

0 comments on commit f8e8fba

Please sign in to comment.