fetch-css 4.0.2 → 4.0.3

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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +8 -8
package/index.js CHANGED
@@ -8,7 +8,7 @@ import crxToZip from "./crx-to-zip.js";
8
8
  import nodeFetch from "node-fetch";
9
9
  import fetchEnhanced from "fetch-enhanced";
10
10
 
11
- const fetch = fetchEnhanced(nodeFetch);
11
+ const fetch = fetchEnhanced(nodeFetch, {undici: false});
12
12
  const clone = cloner();
13
13
 
14
14
  async function extract(res) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fetch-css",
3
- "version": "4.0.2",
3
+ "version": "4.0.3",
4
4
  "description": "Extract CSS from websites and browser extensions",
5
5
  "author": "silverwind",
6
6
  "repository": "silverwind/fetch-css",
@@ -23,18 +23,18 @@
23
23
  "acorn": "8.8.1",
24
24
  "base-64": "1.0.0",
25
25
  "crypto-js": "4.1.1",
26
- "fetch-enhanced": "10.1.0",
26
+ "fetch-enhanced": "11.1.0",
27
27
  "node-fetch": "3.3.0",
28
- "parse5": "7.1.1",
29
- "postcss": "8.4.19",
28
+ "parse5": "7.1.2",
29
+ "postcss": "8.4.20",
30
30
  "rfdc": "1.3.0",
31
31
  "unzipper": "0.10.11",
32
32
  "url-toolkit": "2.2.5"
33
33
  },
34
34
  "devDependencies": {
35
- "eslint": "8.28.0",
36
- "eslint-config-silverwind": "62.0.1",
37
- "updates": "13.2.1",
38
- "versions": "10.2.4"
35
+ "eslint": "8.30.0",
36
+ "eslint-config-silverwind": "65.0.0",
37
+ "updates": "13.2.6",
38
+ "versions": "10.4.1"
39
39
  }
40
40
  }