cypress 13.13.2 → 13.13.3

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.
@@ -63,9 +63,13 @@ const displayCompletionMsg = () => {
63
63
  return;
64
64
  }
65
65
  logger.log();
66
- logger.log('You can now open Cypress by running:', chalk.cyan(path.join('node_modules', '.bin', 'cypress'), 'open'));
66
+ logger.log('You can now open Cypress by running one of the following, depending on your package manager:');
67
67
  logger.log();
68
- logger.log(chalk.grey('https://on.cypress.io/installing-cypress'));
68
+ logger.log(chalk.cyan('- npx cypress open'));
69
+ logger.log(chalk.cyan('- yarn cypress open'));
70
+ logger.log(chalk.cyan('- pnpm cypress open'));
71
+ logger.log();
72
+ logger.log(chalk.grey('https://on.cypress.io/opening-the-app'));
69
73
  logger.log();
70
74
  };
71
75
  const downloadAndUnzip = ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cypress",
3
- "version": "13.13.2",
3
+ "version": "13.13.3",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "postinstall": "node index.js --exec install",
@@ -140,8 +140,8 @@
140
140
  },
141
141
  "buildInfo": {
142
142
  "commitBranch": "develop",
143
- "commitSha": "e9026dd907be9aef82114165a0e4f446959387fd",
144
- "commitDate": "2024-07-30T17:40:50.000Z",
143
+ "commitSha": "2b5b2f66270dd7eea29a2de000c574996ca9b519",
144
+ "commitDate": "2024-08-14T12:51:20.000Z",
145
145
  "stable": true
146
146
  },
147
147
  "description": "Cypress is a next generation front end testing tool built for the modern web",