Skip to content

Commit

Permalink
feat: package is now ESM (#469)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: package is now ESM
  • Loading branch information
wolfy1339 committed Apr 30, 2024
1 parent a72bdfc commit a058734
Show file tree
Hide file tree
Showing 7 changed files with 2,733 additions and 9,895 deletions.
6 changes: 2 additions & 4 deletions README.md
Expand Up @@ -36,10 +36,8 @@ Node
Install with `npm install @octokit/core @octokit/plugin-enterprise-compatibility`. Optionally replace `@octokit/core` with a core-compatible module

```js
const { Octokit } = require("@octokit/core");
const {
enterpriseCompatibility,
} = require("@octokit/plugin-enterprise-compatibility");
import { Octokit } from "@octokit/core";
import { enterpriseCompatibility } from "@octokit/plugin-enterprise-compatibility";
```

</td></tr>
Expand Down

0 comments on commit a058734

Please sign in to comment.