sitespeed.io 27.9.1 → 27.9.2
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/.github/workflows/docker-scan.yml +1 -1
- package/CHANGELOG.md +5 -0
- package/lib/cli/cli.js +1 -2
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 27.9.2 - 2023-06-14
|
|
4
|
+
### Fixed
|
|
5
|
+
* Make sure config files are read sync [#3882](https://github.com/sitespeedio/sitespeed.io/pull/3882).
|
|
6
|
+
|
|
7
|
+
|
|
3
8
|
## 27.9.1 - 2023-06-12
|
|
4
9
|
### Fixed
|
|
5
10
|
* Upgraded Browsertime that logs if LCP is not present (instead of logging null)
|
package/lib/cli/cli.js
CHANGED
|
@@ -10,7 +10,6 @@ import reduce from 'lodash.reduce';
|
|
|
10
10
|
import set from 'lodash.set';
|
|
11
11
|
import get from 'lodash.get';
|
|
12
12
|
import { findUpSync } from 'find-up';
|
|
13
|
-
import { readFile } from 'node:fs/promises';
|
|
14
13
|
|
|
15
14
|
import { getURLs, getAliases } from './util.js';
|
|
16
15
|
import { toArray } from '../support/util.js';
|
|
@@ -2057,7 +2056,7 @@ export async function parseCommandLine() {
|
|
|
2057
2056
|
|
|
2058
2057
|
if (argv.config) {
|
|
2059
2058
|
const config = JSON.parse(
|
|
2060
|
-
await
|
|
2059
|
+
await readFileSync(
|
|
2061
2060
|
new URL(resolve(process.cwd(), argv.config), import.meta.url)
|
|
2062
2061
|
)
|
|
2063
2062
|
);
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sitespeed.io",
|
|
3
|
-
"version": "27.9.
|
|
3
|
+
"version": "27.9.2",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "sitespeed.io",
|
|
9
|
-
"version": "27.9.
|
|
9
|
+
"version": "27.9.2",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@google-cloud/storage": "6.9.5",
|
package/package.json
CHANGED