🥀
@octokit/webhooks-definitions は deprecated
ESLint error
> npm run lint
3:56 error Unable to resolve path to module '@octokit/webhooks-definitions/schema' import/no-unresolved
Deprecated
3 つのパッケージに分割されたようです。
- @octokit/webhooks-types - TypeScript definitions
- @octokit/webhooks-schemas - JSON Schemas
- @octokit/webhooks-examples - Examples for all webhook events
Replace
.ts ファイルで使用しているので @octokit/webhooks-types
に置き換えます。
npm uninstall @octokit/webhooks-definitions
npm install @octokit/webhooks-types
example.ts
-import {PullRequestEvent, PullRequestReviewEvent} from '@octokit/webhooks-definitions/schema'
+import {PullRequestEvent, PullRequestReviewEvent} from '@octokit/webhooks-types'
Discussion