Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2021-07-27 22:25:35 +00:00
parent 50cb464f4a
commit 0cae9d939e
62 changed files with 70 additions and 40448 deletions

View file

@ -13,12 +13,12 @@
Browsers
</th><td width=100%>
Load `@octokit/plugin-retry` and [`@octokit/core`](https://github.com/octokit/core.js) (or core-compatible module) directly from [cdn.pika.dev](https://cdn.pika.dev)
Load `@octokit/plugin-retry` and [`@octokit/core`](https://github.com/octokit/core.js) (or core-compatible module) directly from [cdn.skypack.dev](https://cdn.skypack.dev)
```html
<script type="module">
import { Octokit } from "https://cdn.pika.dev/@octokit/core";
import { retry } from "https://cdn.pika.dev/@octokit/plugin-retry";
import { Octokit } from "https://cdn.skypack.dev/@octokit/core";
import { retry } from "https://cdn.skypack.dev/@octokit/plugin-retry";
</script>
```
@ -38,8 +38,6 @@ const { retry } = require("@octokit/plugin-retry");
</tbody>
</table>
**Note**: If you use it with `@octokit/rest` v16, install `@octokit/core` as a devDependency. This is only temporary and will no longer be necessary with `@octokit/rest` v17.
```js
const MyOctokit = Octokit.plugin(retry);
const octokit = new MyOctokit({ auth: "secret123" });