BREAKING CHANGE: trigger major bump

This commit is contained in:
Jessica Sachs
2021-11-16 14:20:21 -05:00
parent c4b19e8cff
commit ef8a3dca20
4 changed files with 2 additions and 5 deletions

View File

@@ -2448,8 +2448,6 @@ mac-workflow: &mac-workflow
- build:
name: darwin-build
executor: mac
environment:
NEXT_VERSION=10.0.0
requires:
- darwin-node-modules-install
<<: *macBuildFilters

View File

@@ -85,7 +85,7 @@ export class EventManager {
const rerun = () => {
if (!this) {
// if the tests have been reloaded
// then nothing to rerun
// then there is nothing to rerun
return
}

View File

@@ -26,7 +26,7 @@ export class VersionsDataSource {
* }
*/
async versions (): Promise<VersionData> {
const currentCypressVersion = require('./cypress/package.json')
const currentCypressVersion = require('@packages/root')
const result = await execa(`npm`, [`view`, `cypress`, `time`, `--json`])
const json = JSON.parse(result.stdout)

View File

@@ -43,7 +43,6 @@ const getCDN = function ({ version, hash, filename, platform }) {
}
// returns folder that contains beta (unreleased) binaries for given version
//
const getUploadVersionDirName = function (options) {
la(check.unemptyString(options.version), 'missing version', options)