@sapphire/fetch 2.0.0-next.712e9e71.0 → 2.0.0-next.85dad3c2.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 CHANGED
@@ -4,13 +4,12 @@
4
4
 
5
5
  # @sapphire/fetch
6
6
 
7
- **Tiny wrapper around node-fetch for improved TypeScript and data type support**
7
+ **Tiny wrapper around cross-fetch for improved TypeScript and data type support**
8
8
 
9
9
  [![GitHub](https://img.shields.io/github/license/sapphiredev/utilities)](https://github.com/sapphiredev/utilities/blob/main/LICENSE.md)
10
10
  [![codecov](https://codecov.io/gh/sapphiredev/utilities/branch/main/graph/badge.svg?token=OEGIV6RFDO)](https://codecov.io/gh/sapphiredev/utilities)
11
11
  [![npm bundle size](https://img.shields.io/bundlephobia/min/@sapphire/fetch?logo=webpack&style=flat-square)](https://bundlephobia.com/result?p=@sapphire/fetch)
12
12
  [![npm](https://img.shields.io/npm/v/@sapphire/fetch?color=crimson&logo=npm&style=flat-square)](https://www.npmjs.com/package/@sapphire/fetch)
13
- [![Depfu](https://badges.depfu.com/badges/ec42ff3d6bae55eee1de4749960852b3/count.svg)](https://depfu.com/github/sapphiredev/utilities?project_id=15195)
14
13
 
15
14
  </div>
16
15
 
package/dist/index.umd.js CHANGED
@@ -2,7 +2,7 @@
2
2
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('cross-fetch')) :
3
3
  typeof define === 'function' && define.amd ? define(['exports', 'cross-fetch'], factory) :
4
4
  (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.SapphireFetch = {}, global.window));
5
- }(this, (function (exports, crossFetch) { 'use strict';
5
+ })(this, (function (exports, crossFetch) { 'use strict';
6
6
 
7
7
  /*! *****************************************************************************
8
8
  Copyright (c) Microsoft Corporation.
@@ -208,5 +208,5 @@
208
208
 
209
209
  Object.defineProperty(exports, '__esModule', { value: true });
210
210
 
211
- })));
211
+ }));
212
212
  //# sourceMappingURL=index.umd.js.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sapphire/fetch",
3
- "version": "2.0.0-next.712e9e71.0",
4
- "description": "Tiny wrapper around node-fetch for improved TypeScript and data type support",
3
+ "version": "2.0.0-next.85dad3c2.0",
4
+ "description": "Tiny wrapper around cross-fetch for improved TypeScript and data type support",
5
5
  "author": "@sapphire",
6
6
  "license": "MIT",
7
7
  "main": "dist/index.js",
@@ -9,6 +9,7 @@
9
9
  "browser": "dist/index.umd.js",
10
10
  "unpkg": "dist/index.umd.js",
11
11
  "types": "dist/index.d.ts",
12
+ "typedocMain": "src/index.ts",
12
13
  "exports": {
13
14
  "import": "./dist/index.mjs",
14
15
  "require": "./dist/index.js"
@@ -35,8 +36,8 @@
35
36
  "!dist/*.tsbuildinfo"
36
37
  ],
37
38
  "engines": {
38
- "node": ">=14",
39
- "npm": ">=6"
39
+ "node": ">=v14.18.0",
40
+ "npm": ">=7.24.1"
40
41
  },
41
42
  "keywords": [
42
43
  "@sapphire/fetch",
@@ -54,5 +55,5 @@
54
55
  "publishConfig": {
55
56
  "access": "public"
56
57
  },
57
- "gitHead": "712e9e712711727b8494ac469077c6e3e7d6432b"
58
+ "gitHead": "85dad3c297b1c4081b467731dc3a84f89faf4e37"
58
59
  }