browsertime 14.13.0 → 14.13.1
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/support/cli.js +5 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 14.13.1 - 2022-01-01
|
|
4
|
+
### Fixed
|
|
5
|
+
* Added missing `--chrome.appendToUserAgent` in the CLI help.
|
|
6
|
+
|
|
3
7
|
## 14.13.0 - 2021-12-30
|
|
4
8
|
### Added
|
|
5
9
|
* Append text to Chrome/Edge user agent using `--chrome.appendToUserAgent` [#1688](https://github.com/sitespeedio/browsertime/pull/1688).
|
package/lib/support/cli.js
CHANGED
|
@@ -282,6 +282,11 @@ module.exports.parseCommandLine = function parseCommandLine() {
|
|
|
282
282
|
describe: 'Collect Chromes console log and save to disk.',
|
|
283
283
|
group: 'chrome'
|
|
284
284
|
})
|
|
285
|
+
.option('chrome.appendToUserAgent', {
|
|
286
|
+
type: 'string',
|
|
287
|
+
describe: 'Append to the user agent.',
|
|
288
|
+
group: 'chrome'
|
|
289
|
+
})
|
|
285
290
|
.option('chrome.noDefaultOptions', {
|
|
286
291
|
type: 'boolean',
|
|
287
292
|
describe:
|