cypress 9.5.0 → 9.5.1

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.
@@ -2,6 +2,8 @@
2
2
 
3
3
  const _ = require('lodash');
4
4
 
5
+ const arch = require('arch');
6
+
5
7
  const os = require('os');
6
8
 
7
9
  const url = require('url');
@@ -129,7 +131,7 @@ const getBinaryUrlFromPrereleaseNpmUrl = npmUrl => {
129
131
  version,
130
132
  artifactSlug
131
133
  } = matches.groups;
132
- parsed.pathname = `/beta/binary/${version}/${os.platform()}-${os.arch()}/${artifactSlug}/cypress.zip`;
134
+ parsed.pathname = `/beta/binary/${version}/${os.platform()}-${arch()}/${artifactSlug}/cypress.zip`;
133
135
  return parsed.format();
134
136
  };
135
137
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cypress",
3
- "version": "9.5.0",
3
+ "version": "9.5.1",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "postinstall": "node index.js --exec install",