@siteimprove/alfa-puppeteer 0.81.4 → 0.81.6

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @siteimprove/alfa-puppeteer
2
2
 
3
+ ## 0.81.6
4
+
5
+ ### Patch Changes
6
+
7
+ - **Changed:** Update Alfa. ([#312](https://github.com/Siteimprove/alfa-integrations/pull/312))
8
+
9
+ ## 0.81.5
10
+
11
+ ### Patch Changes
12
+
13
+ - **Changed:** Update Alfa. ([#311](https://github.com/Siteimprove/alfa-integrations/pull/311))
14
+
3
15
  ## 0.81.4
4
16
 
5
17
  ### Patch Changes
package/dist/puppeteer.js CHANGED
@@ -40,8 +40,8 @@ export var Puppeteer;
40
40
  const response = Response.of(url, 200, Headers.of([Header.of("Content-Type", "text/html")]));
41
41
  const pageDevice = Device.from(deviceJSON);
42
42
  return Page.of(request, response, nodeJSON.type === "document"
43
- // The type is ensured by the previous test.
44
- ? Document.from(nodeJSON, pageDevice)
43
+ ? // The type is ensured by the previous test.
44
+ Node.from(nodeJSON, pageDevice)
45
45
  : Document.of([Node.from(nodeJSON, pageDevice)]), pageDevice);
46
46
  }
47
47
  Puppeteer.toPage = toPage;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/package",
3
3
  "name": "@siteimprove/alfa-puppeteer",
4
4
  "homepage": "https://alfa.siteimprove.com",
5
- "version": "0.81.4",
5
+ "version": "0.81.6",
6
6
  "license": "MIT",
7
7
  "description": "Integrations and utilities for the Puppeteer browser automation library",
8
8
  "repository": {
@@ -22,19 +22,19 @@
22
22
  "dist/**/*.d.ts"
23
23
  ],
24
24
  "dependencies": {
25
- "@siteimprove/alfa-device": "^0.112.0",
26
- "@siteimprove/alfa-dom": "^0.112.0",
27
- "@siteimprove/alfa-http": "^0.112.0",
28
- "@siteimprove/alfa-url": "^0.112.0",
29
- "@siteimprove/alfa-web": "^0.112.0",
30
- "puppeteer": "^24.37.5"
25
+ "@siteimprove/alfa-device": "^0.114.0",
26
+ "@siteimprove/alfa-dom": "^0.114.0",
27
+ "@siteimprove/alfa-http": "^0.114.0",
28
+ "@siteimprove/alfa-url": "^0.114.0",
29
+ "@siteimprove/alfa-web": "^0.114.0",
30
+ "puppeteer": "^24.38.0"
31
31
  },
32
32
  "peerDependencies": {
33
- "@siteimprove/alfa-device": "^0.112.0",
34
- "@siteimprove/alfa-dom": "^0.112.0",
35
- "@siteimprove/alfa-http": "^0.112.0",
36
- "@siteimprove/alfa-url": "^0.112.0",
37
- "@siteimprove/alfa-web": "^0.112.0",
33
+ "@siteimprove/alfa-device": "^0.114.0",
34
+ "@siteimprove/alfa-dom": "^0.114.0",
35
+ "@siteimprove/alfa-http": "^0.114.0",
36
+ "@siteimprove/alfa-url": "^0.114.0",
37
+ "@siteimprove/alfa-web": "^0.114.0",
38
38
  "puppeteer": "^24.0.0"
39
39
  },
40
40
  "publishConfig": {
@@ -42,6 +42,6 @@
42
42
  "registry": "https://npm.pkg.github.com/"
43
43
  },
44
44
  "devDependencies": {
45
- "@siteimprove/alfa-test": "^0.112.0"
45
+ "@siteimprove/alfa-test": "^0.114.0"
46
46
  }
47
47
  }