Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tests/wp-e2e-playwright/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tests/wp-e2e-playwright/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
},
"overrides": {
"webpack-dev-server": "5.2.1",
"minimatch": "10.2.1",
"minimatch": "^10.2.4",
Copy link

Copilot AI Mar 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the overrides block, every other dependency is pinned to an exact version, but minimatch is now a semver range (^10.2.4). Using a range here makes installs less deterministic when the lockfile is regenerated and weakens the intent of an override (pinning a transitive dependency to a specific known-good version). Consider pinning minimatch to an exact version (e.g., 10.2.4) to match the rest of this file, unless there’s a specific reason to allow automatic minor updates.

Suggested change
"minimatch": "^10.2.4",
"minimatch": "10.2.4",

Copilot uses AI. Check for mistakes.
"fast-xml-parser": "5.3.7",
"ajv": "8.18.0",
"basic-ftp": "5.2.0"
Expand All @@ -68,4 +68,4 @@
"test-e2e:playwright": "playwright test --config playwright.config.ts",
"test-e2e:playwright:dev": "npm run test-e2e:playwright -- prerequisite.spec.js && npm run test-e2e:playwright -- specs/buddypress && npm run test-e2e:playwright -- specs/display && npm run test-e2e:playwright -- specs/other_settings && npm run test-e2e:playwright -- media_size.spec.js && npm run test-e2e:playwright -- types.spec.js; npm run test-e2e:playwright -- cleanup.spec.js"
}
}
}
Loading