sitespeed.io 34.3.3 → 34.3.4
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 +4 -0
- package/lib/cli/cli.js +18 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 34.3.4 - 2024-06-25
|
|
4
|
+
### Fixed
|
|
5
|
+
* Expose command line parameters to disable CLS and LCP screenshots [#4201](https://github.com/sitespeedio/sitespeed.io/pull/4201).
|
|
6
|
+
|
|
3
7
|
## 34.3.3 - 2024-06-24
|
|
4
8
|
### Fixed
|
|
5
9
|
* Updated to Browsertime 25.5.2 that has updated versions of Selenium WebDriver and correct export for scripting.
|
package/lib/cli/cli.js
CHANGED
|
@@ -1466,6 +1466,22 @@ export async function parseCommandLine() {
|
|
|
1466
1466
|
})
|
|
1467
1467
|
|
|
1468
1468
|
/** Screenshot */
|
|
1469
|
+
.option('browsertime.screenshotLCP', {
|
|
1470
|
+
alias: 'screenshotLCP',
|
|
1471
|
+
type: 'boolean',
|
|
1472
|
+
default: false,
|
|
1473
|
+
describe:
|
|
1474
|
+
'Save one screenshot per iteration that shows the largest contentful paint element (if the browser supports LCP).',
|
|
1475
|
+
group: 'Screenshot'
|
|
1476
|
+
})
|
|
1477
|
+
.option('browsertime.screenshotLS', {
|
|
1478
|
+
alias: 'screenshotLS',
|
|
1479
|
+
type: 'boolean',
|
|
1480
|
+
default: false,
|
|
1481
|
+
describe:
|
|
1482
|
+
'Save one screenshot per iteration that shows the layout shift elements (if the browser supports layout shift).',
|
|
1483
|
+
group: 'Screenshot'
|
|
1484
|
+
})
|
|
1469
1485
|
.option('browsertime.screenshot', {
|
|
1470
1486
|
type: 'boolean',
|
|
1471
1487
|
describe: 'Set to false to disable screenshots',
|
|
@@ -2042,6 +2058,8 @@ export async function parseCommandLine() {
|
|
|
2042
2058
|
.alias('help', 'h')
|
|
2043
2059
|
.config(config)
|
|
2044
2060
|
.hide('disableAPI')
|
|
2061
|
+
.hide('browsertime.screenshotLCP')
|
|
2062
|
+
.hide('browsertime.screenshotLS')
|
|
2045
2063
|
.alias('version', 'V')
|
|
2046
2064
|
.version(version)
|
|
2047
2065
|
.coerce('budget', function (argument) {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sitespeed.io",
|
|
3
|
-
"version": "34.3.
|
|
3
|
+
"version": "34.3.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "sitespeed.io",
|
|
9
|
-
"version": "34.3.
|
|
9
|
+
"version": "34.3.4",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@aws-sdk/client-s3": "3.564.0",
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"sitespeed.io": "./bin/sitespeed.js",
|
|
6
6
|
"sitespeed.io-wpr": "./bin/browsertimeWebPageReplay.js"
|
|
7
7
|
},
|
|
8
|
-
"version": "34.3.
|
|
8
|
+
"version": "34.3.4",
|
|
9
9
|
"description": "sitespeed.io is an open-source tool for comprehensive web performance analysis, enabling you to test, monitor, and optimize your website’s speed using real browsers in various environments.",
|
|
10
10
|
"keywords": [
|
|
11
11
|
"performance",
|