Skip to content

Commit 5b35c6c

Browse files
committed
fix: correct types path
1 parent 7e34b6f commit 5b35c6c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/openapi-webhooks/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"version": "0.0.0-development",
44
"description": "GitHub's official Webhooks OpenAPI spec with Octokit extensions",
55
"main": "index.js",
6-
"types": "index.d.ts",
6+
"types": "types.d.ts",
77
"files": [
88
"generated/*",
99
"index.js",
10-
"index.d.ts"
10+
"types.d.ts"
1111
],
1212
"type": "module",
1313
"repository": {

scripts/build.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ They are all generated, your changes would be overwritten with the next update.
184184
description:
185185
"GitHub's official Webhooks OpenAPI spec with Octokit extensions",
186186
main: "index.js",
187-
types: "index.d.ts",
188-
files: ["generated/*", "index.js", "index.d.ts"],
187+
types: "types.d.ts",
188+
files: ["generated/*", "index.js", "types.d.ts"],
189189
type: "module",
190190
repository: {
191191
type: "git",

0 commit comments

Comments
 (0)