Skip to content

Commit edb2b21

Browse files
authored
⬆️ 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

+7-6
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

+296-235
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/pnpm_version_patch.sh

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "./openapi-typescript.js"
1+
export type * from "./openapi-typescript.js"
+12-12
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"
+1-1
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"
+8-8
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"

src/server/webhooks/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export * from "./events/index.js"
2-
export * from "./headers.js"
2+
export type * from "./headers.js"

typedoc.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"$schema": "https://typedoc.org/schema.json",
3-
"entryPoints": ["./src/index.ts"]
3+
"entryPoints": ["./src/index.ts"],
4+
"highlightLanguages": ["ini", "sh", "ts"]
45
}

0 commit comments

Comments
 (0)