Skip to content

Commit f651d39

Browse files
committed
fix(package-lock): downgrade puppeteer-core to align with version required by webdriverio
1 parent 945be0c commit f651d39

File tree

3 files changed

+121
-87
lines changed

3 files changed

+121
-87
lines changed

.evergreen/functions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ functions:
205205
# the output in a file that will be uploaded with rest of the logs
206206
LS_ALL_STDOUT_FILE="$(npm config get cache)/_logs/$(date -u +"%Y-%m-%dT%H_%M_%SZ")-npm-ls-all.log"
207207
echo "Validating dependencies with \`npm ls --all\`..."
208-
(npm ls --all > $LS_ALL_STDOUT_FILE && echo "No mismatched dependency versions") || echo "\nThe \`npm ls\` command failed with mismatched dependencies error. This usually means that the dependency versions listed in package.json are not matching dependencies resolved and recorded in package-lock.json. If you updated package.json files in your PR, inspect the error output and try to re-install offending dependncies to fix the package-lock file."
208+
(npm ls --all > $LS_ALL_STDOUT_FILE && echo "No mismatched dependency versions") || (echo "\nThe \`npm ls\` command failed with mismatched dependencies error. This usually means that the dependency versions listed in package.json are not matching dependencies resolved and recorded in package-lock.json. If you updated package.json files in your PR, inspect the error output and try to re-install offending dependncies to fix the package-lock file." && exit 1)
209209
210210
bootstrap:
211211
- command: shell.exec

package-lock.json

Lines changed: 118 additions & 84 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/compass-e2e-tests/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@
6868
"nyc": "^15.1.0",
6969
"prettier": "^2.7.1",
7070
"ps-list": "^8.1.0",
71-
"puppeteer-core": "^23.10.3",
71+
"puppeteer-core": "^22.15.0",
7272
"resolve-mongodb-srv": "^1.1.5",
73-
"semver": "^7.6.2",
73+
"semver": "^7.6.3",
7474
"tree-kill": "^1.2.2",
7575
"ts-node": "^10.9.1",
7676
"webdriverio": "^9.4.1",

0 commit comments

Comments
 (0)