browsertime 22.5.1 → 22.5.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.
- package/CHANGELOG.md +10 -2
- package/package.json +10 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 22.5.3 - 2024-06-25
|
|
4
|
+
### Fixed
|
|
5
|
+
* Another fix to make IntelliSense/Code completion work again [#2147](https://github.com/sitespeedio/browsertime/pull/2147).
|
|
6
|
+
|
|
7
|
+
## 22.5.2 - 2024-06-24
|
|
8
|
+
### Fixed
|
|
9
|
+
* Updated Selenium dependencies [#2146](https://github.com/sitespeedio/browsertime/pull/2146).
|
|
10
|
+
|
|
3
11
|
## 22.5.1 - 2024-06-24
|
|
4
|
-
###
|
|
5
|
-
* Fixed exporting to make
|
|
12
|
+
### Fixed
|
|
13
|
+
* Fixed exporting to make IntelliSense/Code completion work again [#2145](https://github.com/sitespeedio/browsertime/pull/2145).
|
|
6
14
|
|
|
7
15
|
## 22.5.0 - 2024-06-14
|
|
8
16
|
### Added
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browsertime",
|
|
3
3
|
"description": "Get performance metrics from your web page using Browsertime.",
|
|
4
|
-
"version": "22.5.
|
|
4
|
+
"version": "22.5.3",
|
|
5
5
|
"bin": "./bin/browsertime.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"types": "./types/scripting.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@cypress/xvfb": "1.2.4",
|
|
10
10
|
"@devicefarmer/adbkit": "3.2.6",
|
|
11
|
-
"@sitespeed.io/chromedriver": "126.0.6478-55",
|
|
11
|
+
"@sitespeed.io/chromedriver": "126.0.6478-55 ",
|
|
12
12
|
"@sitespeed.io/edgedriver": "125.0.2535-47",
|
|
13
13
|
"@sitespeed.io/geckodriver": "0.34.0",
|
|
14
14
|
"@sitespeed.io/throttle": "5.0.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"lodash.merge": "4.6.2",
|
|
31
31
|
"lodash.pick": "4.4.0",
|
|
32
32
|
"lodash.set": "4.3.2",
|
|
33
|
-
"selenium-webdriver": "4.
|
|
33
|
+
"selenium-webdriver": "4.22.0",
|
|
34
34
|
"usb-power-profiling": "^1.2.0",
|
|
35
35
|
"yargs": "17.7.2"
|
|
36
36
|
},
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"jimp": "0.22.12"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@types/selenium-webdriver": "4.1.
|
|
41
|
+
"@types/selenium-webdriver": "4.1.23",
|
|
42
42
|
"ava": "6.1.2",
|
|
43
43
|
"clean-jsdoc-theme": "4.2.17",
|
|
44
44
|
"eslint": "8.57.0",
|
|
@@ -71,7 +71,12 @@
|
|
|
71
71
|
"vendor",
|
|
72
72
|
"types"
|
|
73
73
|
],
|
|
74
|
-
"exports":
|
|
74
|
+
"exports": {
|
|
75
|
+
".": {
|
|
76
|
+
"import": "./index.js",
|
|
77
|
+
"types": "./types/scripting.d.ts"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
75
80
|
"scripts": {
|
|
76
81
|
"test": "ava",
|
|
77
82
|
"start-server": "serve test/data/html/",
|