@gitbeaker/requester-utils 38.1.1 → 38.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -7
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -84,11 +84,11 @@
|
|
|
84
84
|
<tr><th>
|
|
85
85
|
Browsers
|
|
86
86
|
</th><td width=100%>
|
|
87
|
-
Load <code>@gitbeaker/requester-utils</code> directly from <a href="https://
|
|
87
|
+
Load <code>@gitbeaker/requester-utils</code> directly from <a href="https://esm.sh">esm.sh</a>
|
|
88
88
|
|
|
89
89
|
```html
|
|
90
90
|
<script type="module">
|
|
91
|
-
import { RequesterUtils, BaseResource } from 'https://
|
|
91
|
+
import { RequesterUtils, BaseResource } from 'https://esm.sh/@gitbeaker/requester-utils';
|
|
92
92
|
</script>
|
|
93
93
|
```
|
|
94
94
|
|
|
@@ -96,13 +96,10 @@ Load <code>@gitbeaker/requester-utils</code> directly from <a href="https://cdn.
|
|
|
96
96
|
<tr><th>
|
|
97
97
|
Deno
|
|
98
98
|
</th><td width=100%>
|
|
99
|
-
Load <code>@gitbeaker/requester-utils</code> directly from <a href="https://
|
|
99
|
+
Load <code>@gitbeaker/requester-utils</code> directly from <a href="https://esm.sh">esm.sh</a>
|
|
100
100
|
|
|
101
101
|
```ts
|
|
102
|
-
import {
|
|
103
|
-
RequesterUtils,
|
|
104
|
-
BaseResource,
|
|
105
|
-
} from 'https://cdn.skypack.dev/@gitbeaker/requester-utils?dts';
|
|
102
|
+
import { RequesterUtils, BaseResource } from 'https://esm.sh/@gitbeaker/requester-utils?dts';
|
|
106
103
|
```
|
|
107
104
|
|
|
108
105
|
</td></tr>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitbeaker/requester-utils",
|
|
3
|
-
"version": "38.
|
|
3
|
+
"version": "38.2.0",
|
|
4
4
|
"description": "Utility functions for requester implementatons used in @gitbeaker",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"tsup": "^6.7.0",
|
|
60
60
|
"typescript": "^5.0.4"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "831b4ad979da6b9164d3558c3191ee3884ca790e"
|
|
63
63
|
}
|