cypress 13.13.2 → 13.13.3
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/tasks/install.js +6 -2
- package/package.json +3 -3
package/lib/tasks/install.js
CHANGED
@@ -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
|
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.
|
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.
|
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": "
|
144
|
-
"commitDate": "2024-
|
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",
|