Skip to content

Commit

Permalink
feat: package is now ESM (#233)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: package is now ESM
  • Loading branch information
wolfy1339 authored Feb 25, 2024
1 parent 91dead7 commit 667581e
Show file tree
Hide file tree
Showing 28 changed files with 228 additions and 136 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Node
Install with `npm install @octokit/core @octokit/oauth-methods`

```js
const {
import {
exchangeWebFlowCode,
createDeviceCode,
exchangeDeviceCode,
Expand All @@ -67,7 +67,7 @@ const {
resetToken,
deleteToken,
deleteAuthorization,
} = require("@octokit/oauth-methods");
} from "@octokit/oauth-methods";
```

</td></tr>
Expand Down Expand Up @@ -248,7 +248,7 @@ Defaults to `[]`.
You can pass in your own <a href="https://github.com/octokit/request.js"><code>@octokit/request</code></a> instance. For usage with enterprise, set <code>baseUrl</code> to the REST API root endpoint. Example:

```js
const { request } = require("@octokit/request");
import { request } from "@octokit/request";
const { url } = getWebFlowAuthorizationUrl({
clientType: "oauth-app",
clientId: "1234567890abcdef1234",
Expand Down Expand Up @@ -470,7 +470,7 @@ Options
You can pass in your own <a href="https://github.com/octokit/request.js"><code>@octokit/request</code></a> instance. For usage with enterprise, set <code>baseUrl</code> to the REST API root endpoint. Example:

```js
const { request } = require("@octokit/request");
import { request } from "@octokit/request";
const { data, authentication } = await exchangeWebFlowCode({
clientType: "oauth-app",
clientId: "1234567890abcdef1234",
Expand Down Expand Up @@ -564,7 +564,7 @@ Array of [scope names](https://docs.github.com/en/developers/apps/scopes-for-oau
You can pass in your own <a href="https://github.com/octokit/request.js"><code>@octokit/request</code></a> instance. For usage with enterprise, set <code>baseUrl</code> to the REST API root endpoint. Example:

```js
const { request } = require("@octokit/request");
import { request } from "@octokit/request";
const { data } = await createDeviceCode({
clientType: "oauth-app",
clientId: "1234567890abcdef1234",
Expand Down Expand Up @@ -651,7 +651,7 @@ const { data, authentication } = await exchangeDeviceCode({
You can pass in your own <a href="https://github.com/octokit/request.js"><code>@octokit/request</code></a> instance. For usage with enterprise, set <code>baseUrl</code> to the REST API root endpoint. Example:

```js
const { request } = require("@octokit/request");
import { request } from "@octokit/request";
const { data, authentication } = await exchangeDeviceCode({
clientType: "oauth-app",
clientId: "1234567890abcdef1234",
Expand Down Expand Up @@ -750,7 +750,7 @@ Options
You can pass in your own <a href="https://github.com/octokit/request.js"><code>@octokit/request</code></a> instance. For usage with enterprise, set <code>baseUrl</code> to the REST API root endpoint. Example:

```js
const { request } = require("@octokit/request");
import { request } from "@octokit/request";
const { data, authentication } = await checkToken({
clientType: "oauth-app",
clientId: "1234567890abcdef1234",
Expand Down Expand Up @@ -856,7 +856,7 @@ Options
You can pass in your own <a href="https://github.com/octokit/request.js"><code>@octokit/request</code></a> instance. For usage with enterprise, set <code>baseUrl</code> to the REST API root endpoint. Example:

```js
const { request } = require("@octokit/request");
import { request } from "@octokit/request";
const { data, authentication } = await refreshToken({
clientType: "github-app",
clientId: "lv1.1234567890abcdef",
Expand Down Expand Up @@ -1007,7 +1007,7 @@ Options
You can pass in your own <a href="https://github.com/octokit/request.js"><code>@octokit/request</code></a> instance. For usage with enterprise, set <code>baseUrl</code> to the REST API root endpoint. Example:

```js
const { request } = require("@octokit/request");
import { request } from "@octokit/request";
const { data, authentication } = await scopeToken({
clientType: "github-app",
clientId: "lv1.1234567890abcdef",
Expand Down Expand Up @@ -1113,7 +1113,7 @@ Options
You can pass in your own <a href="https://github.com/octokit/request.js"><code>@octokit/request</code></a> instance. For usage with enterprise, set <code>baseUrl</code> to the REST API root endpoint. Example:

```js
const { request } = require("@octokit/request");
import { request } from "@octokit/request";
const { data, authentication } = await resetToken({
clientId: "1234567890abcdef1234",
clientSecret: "secret",
Expand Down Expand Up @@ -1214,7 +1214,7 @@ Options
You can pass in your own <a href="https://github.com/octokit/request.js"><code>@octokit/request</code></a> instance. For usage with enterprise, set <code>baseUrl</code> to the REST API root endpoint. Example:

```js
const { request } = require("@octokit/request");
import { request } from "@octokit/request";
const { data, authentication } = await deleteToken({
clientId: "1234567890abcdef1234",
clientSecret: "secret",
Expand Down Expand Up @@ -1315,7 +1315,7 @@ Options
You can pass in your own <a href="https://github.com/octokit/request.js"><code>@octokit/request</code></a> instance. For usage with enterprise, set <code>baseUrl</code> to the REST API root endpoint. Example:

```js
const { request } = require("@octokit/request");
import { request } from "@octokit/request";
const { data, authentication } = await deleteAuthorization({
clientId: "1234567890abcdef1234",
clientSecret: "secret",
Expand Down
Loading

0 comments on commit 667581e

Please sign in to comment.