cypress 9.4.1 → 9.5.0
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.
- package/lib/tasks/install.js +1 -1
- package/package.json +1 -1
    
        package/lib/tasks/install.js
    CHANGED
    
    | @@ -108,7 +108,7 @@ const getVersionSpecifier = (startDir = path.resolve(__dirname, '../..')) => { | |
| 108 108 | 
             
              });
         | 
| 109 109 | 
             
            };
         | 
| 110 110 |  | 
| 111 | 
            -
            const betaNpmUrlRe = /^\/beta\/npm\/(?<version>[0-9.]+)\/(?<artifactSlug>.+?)\/cypress\.tgz$/; // convert a prerelease NPM package .tgz URL to the corresponding binary .zip URL
         | 
| 111 | 
            +
            const betaNpmUrlRe = /^\/beta\/npm\/(?<version>[0-9.]+)\/(?<platformSlug>.+?)\/(?<artifactSlug>.+?)\/cypress\.tgz$/; // convert a prerelease NPM package .tgz URL to the corresponding binary .zip URL
         | 
| 112 112 |  | 
| 113 113 | 
             
            const getBinaryUrlFromPrereleaseNpmUrl = npmUrl => {
         | 
| 114 114 | 
             
              let parsed;
         |