Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cypress-io/code-coverage
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 50a9e99a9b285954554600148e521cf4fc2e2778
Choose a base ref
..
head repository: cypress-io/code-coverage
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3d20087e446a5579831dfc9e86c60ccc6a009389
Choose a head ref
Showing with 830 additions and 577 deletions.
  1. +2 −2 .circleci/config.yml
  2. +483 −480 package-lock.json
  3. +6 −6 test-apps/cra-e2e-and-ct/package-lock.json
  4. +1 −1 test-apps/exclude-files/package.json
  5. +338 −88 test-apps/same-folder/package-lock.json
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ jobs:
lint:
description: Checks the code formatting
docker:
- image: cimg/node:21.4.0
- image: cimg/node:21.5.0
environment:
# we don't need Cypress to check code style
CYPRESS_INSTALL_BINARY: '0'
@@ -71,7 +71,7 @@ jobs:
publish:
description: Publishes the new version of the plugin to NPM
docker:
- image: cimg/node:21.4.0
- image: cimg/node:21.5.0
environment:
# we don't need Cypress to do the release
CYPRESS_INSTALL_BINARY: '0'
Loading