Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit edb2b21

Browse files
⬆️ pnpm update (#9)
* ✨ Show status on (n) * ⬆️ pnpm update * 📝 Update typedoc.json to include additional highlight languages
1 parent 549e813 commit edb2b21

File tree

12 files changed

+332
-269
lines changed

12 files changed

+332
-269
lines changed

‎package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,23 @@
4949
"postopenapi-typescript:server": "ts-autofix ./src/server/openapi && pnpm run lint:fix"
5050
},
5151
"dependencies": {
52-
"openapi-fetch": "^0.12.0"
52+
"openapi-fetch": "^0.12.2"
5353
},
5454
"devDependencies": {
55-
"@eslint/js": "^9.10.0",
56-
"@types/node": "^22.5.5",
55+
"@eslint/js": "^9.11.1",
56+
"@types/node": "^22.7.4",
5757
"dotenv": "^16.4.5",
58-
"eslint": "^9.10.0",
58+
"eslint": "^9.11.1",
5959
"eslint-config-prettier": "^9.1.0",
6060
"globals": "^15.9.0",
6161
"markdownlint-cli2": "^0.14.0",
62-
"openapi-typescript": "^7.4.0",
62+
"openapi-typescript": "^7.4.1",
6363
"prettier": "^3.3.3",
64+
"ts-autofix": "^1.0.0",
6465
"tsx": "^4.19.1",
6566
"typedoc": "^0.26.7",
6667
"typescript": "^5.6.2",
67-
"typescript-eslint": "^8.6.0",
68+
"typescript-eslint": "^8.8.0",
6869
"vitest": "^2.1.1"
6970
},
7071
"type": "module",

‎pnpm-lock.yaml

Lines changed: 296 additions & 235 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎scripts/pnpm_version_patch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ pnpm i
99
pnpm lint:fix
1010

1111
git status
12-
1312
echo 'Do you want to publish @coderabbitai/bitbucket@'$VERSION'? (y/n) '
1413
read Y
1514
if [ "$Y" = "y" ]; then
1615
echo "Publishing version $VERSION"
1716
else
1817
git checkout -- package.json
18+
git status
1919
exit 1
2020
fi
2121

‎src/cloud/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export * from "./client.js"
2-
export * as cloud from "./openapi/index.js"
2+
export type* as cloud from "./openapi/index.js"

‎src/cloud/openapi/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "./openapi-typescript.js"
1+
export type* from "./openapi-typescript.js"

‎src/server/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export * from "./client.js"
2-
export * from "./openapi/index.js"
2+
export type* from "./openapi/index.js"
33
export * from "./webhooks/index.js"

‎src/server/openapi/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "./openapi-typescript.js"
1+
export type* from "./openapi-typescript.js"

‎src/server/webhooks/events/pr/index.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
export * as commentAdded from "./comment_added.js"
2-
export * as commentEdited from "./comment_edited.js"
3-
export * as declined from "./declined.js"
4-
export * as deleted from "./deleted.js"
1+
export type* as commentAdded from "./comment_added.js"
2+
export type* as commentEdited from "./comment_edited.js"
3+
export type* as declined from "./declined.js"
4+
export type* as deleted from "./deleted.js"
55
export * from "./event.js"
6-
export * as fromRefUpdated from "./from_ref_updated.js"
7-
export * as merged from "./merged.js"
8-
export * as modified from "./modified.js"
9-
export * as opened from "./opened.js"
10-
export * as reviewerApproved from "./reviewer_approved.js"
11-
export * as reviewerChangesRequested from "./reviewer_changes_requested.js"
12-
export * as reviewerUnapproved from "./reviewer_unapproved.js"
13-
export * as reviewerUpdated from "./reviewer_updated.js"
6+
export type* as fromRefUpdated from "./from_ref_updated.js"
7+
export type* as merged from "./merged.js"
8+
export type* as modified from "./modified.js"
9+
export type* as opened from "./opened.js"
10+
export type* as reviewerApproved from "./reviewer_approved.js"
11+
export type* as reviewerChangesRequested from "./reviewer_changes_requested.js"
12+
export type* as reviewerUnapproved from "./reviewer_unapproved.js"
13+
export type* as reviewerUpdated from "./reviewer_updated.js"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export * from "./event.js"
2-
export * from "./modified.js"
2+
export type* from "./modified.js"
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
export * as commentAdded from "./comment_added.js"
2-
export * as commentDeleted from "./comment_deleted.js"
3-
export * as commentEdited from "./comment_edited.js"
1+
export type* as commentAdded from "./comment_added.js"
2+
export type* as commentDeleted from "./comment_deleted.js"
3+
export type* as commentEdited from "./comment_edited.js"
44
export * from "./event.js"
5-
export * as forked from "./forked.js"
6-
export * as modified from "./modified.js"
7-
export * as refsChanged from "./refs_changed.js"
8-
export * as secretDetected from "./secret_detected.js"
9-
export * as synchronized from "./synchronized.js"
5+
export type* as forked from "./forked.js"
6+
export type* as modified from "./modified.js"
7+
export type* as refsChanged from "./refs_changed.js"
8+
export type* as secretDetected from "./secret_detected.js"
9+
export type* as synchronized from "./synchronized.js"

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /