mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-25 16:04:01 +00:00
Remove usage of skypack for esm.sh (#3241)
This commit is contained in:
parent
747a6a0e96
commit
5237ea0be4
@ -84,11 +84,11 @@
|
||||
<tr><th>
|
||||
Browsers
|
||||
</th><td width=100%>
|
||||
Load <code>@gitbeaker/core</code> directly from <a href="https://cdn.skypack.dev">cdn.skypack.dev</a>
|
||||
Load <code>@gitbeaker/core</code> directly from <a href="https://esm.sh">esm.sh</a>
|
||||
|
||||
```html
|
||||
<script type="module">
|
||||
import { Gitlab } from 'https://cdn.skypack.dev/@gitbeaker/core';
|
||||
import { Gitlab } from 'https://esm.sh/@gitbeaker/core';
|
||||
</script>
|
||||
```
|
||||
|
||||
@ -96,10 +96,10 @@ Load <code>@gitbeaker/core</code> directly from <a href="https://cdn.skypack.dev
|
||||
<tr><th>
|
||||
Deno
|
||||
</th><td width=100%>
|
||||
Load <code>@gitbeaker/core</code> directly from <a href="https://cdn.skypack.dev">cdn.skypack.dev</a>
|
||||
Load <code>@gitbeaker/core</code> directly from <a href="https://esm.sh">esm.sh</a>
|
||||
|
||||
```ts
|
||||
import { Gitlab } from 'https://cdn.skypack.dev/@gitbeaker/core?dts';
|
||||
import { Gitlab } from 'https://esm.sh/@gitbeaker/core?dts';
|
||||
```
|
||||
|
||||
</td></tr>
|
||||
|
||||
@ -84,11 +84,11 @@
|
||||
<tr><th>
|
||||
Browsers
|
||||
</th><td width=100%>
|
||||
Load <code>@gitbeaker/requester-utils</code> directly from <a href="https://cdn.skypack.dev">cdn.skypack.dev</a>
|
||||
Load <code>@gitbeaker/requester-utils</code> directly from <a href="https://esm.sh">esm.sh</a>
|
||||
|
||||
```html
|
||||
<script type="module">
|
||||
import { RequesterUtils, BaseResource } from 'https://cdn.skypack.dev/@gitbeaker/requester-utils';
|
||||
import { RequesterUtils, BaseResource } from 'https://esm.sh/@gitbeaker/requester-utils';
|
||||
</script>
|
||||
```
|
||||
|
||||
@ -96,13 +96,10 @@ Load <code>@gitbeaker/requester-utils</code> directly from <a href="https://cdn.
|
||||
<tr><th>
|
||||
Deno
|
||||
</th><td width=100%>
|
||||
Load <code>@gitbeaker/requester-utils</code> directly from <a href="https://cdn.skypack.dev">cdn.skypack.dev</a>
|
||||
Load <code>@gitbeaker/requester-utils</code> directly from <a href="https://esm.sh">esm.sh</a>
|
||||
|
||||
```ts
|
||||
import {
|
||||
RequesterUtils,
|
||||
BaseResource,
|
||||
} from 'https://cdn.skypack.dev/@gitbeaker/requester-utils?dts';
|
||||
import { RequesterUtils, BaseResource } from 'https://esm.sh/@gitbeaker/requester-utils?dts';
|
||||
```
|
||||
|
||||
</td></tr>
|
||||
|
||||
@ -96,11 +96,11 @@
|
||||
<tr><th>
|
||||
Browsers
|
||||
</th><td width=100%>
|
||||
Load <code>@gitbeaker/rest</code> directly from <a href="https://cdn.skypack.dev">cdn.skypack.dev</a>
|
||||
Load <code>@gitbeaker/rest</code> directly from <a href="https://esm.sh">esm.sh</a>
|
||||
|
||||
```html
|
||||
<script type="module">
|
||||
import { Gitlab } from 'https://cdn.skypack.dev/@gitbeaker/rest';
|
||||
import { Gitlab } from 'https://esm.sh/@gitbeaker/rest';
|
||||
</script>
|
||||
```
|
||||
|
||||
@ -108,10 +108,10 @@ Load <code>@gitbeaker/rest</code> directly from <a href="https://cdn.skypack.dev
|
||||
<tr><th>
|
||||
Deno
|
||||
</th><td width=100%>
|
||||
Load <code>@gitbeaker/rest</code> directly from <a href="https://cdn.skypack.dev">cdn.skypack.dev</a>
|
||||
Load <code>@gitbeaker/rest</code> directly from <a href="https://esm.sh">esm.sh</a>
|
||||
|
||||
```ts
|
||||
import { Gitlab } from 'https://cdn.skypack.dev/@gitbeaker/rest?dts';
|
||||
import { Gitlab } from 'https://esm.sh/@gitbeaker/rest?dts';
|
||||
```
|
||||
|
||||
</td></tr>
|
||||
|
||||
@ -9,8 +9,8 @@
|
||||
<script type="importmap">
|
||||
{
|
||||
"imports": {
|
||||
"qs": "https://cdn.skypack.dev/qs?min",
|
||||
"xcase": "https://cdn.skypack.dev/xcase?min",
|
||||
"qs": "https://esm.sh/qs?min",
|
||||
"xcase": "https://esm.sh/xcase?min",
|
||||
"@gitbeaker/requester-utils": "../../../../../requester-utils/dist/index.mjs",
|
||||
"@gitbeaker/core": "../../../../../core/dist/index.mjs"
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user