Skip to content

Commit

Permalink
Format/linting pass
Browse files Browse the repository at this point in the history
fix(deps): update dependency cypress-real-events to version 1.4.0 🌟 (#16363)

Co-authored-by: Renovate Bot <[email protected]>

fix: typo in the final message (run vs run-ct)

fix: remove all of rollup, not supported anymore

fix: add return config for vitejs templates

fix: add return config for vueCli and vueWebpack

tests: update snapshots

fix: vueCli and webpack key vue@2 fix when guessing

tests: use the proper keys for selecting framework

chore: release @cypress/react-v5.5.0

[skip ci]

chore: release @cypress/vue-v2.2.2

[skip ci]

fix(deps): update dependency color-string to version 1.5.5 🌟 (#16362)

Co-authored-by: Renovate Bot <[email protected]>
Co-authored-by: Jennifer Shehane <[email protected]>

Do not print 'uploading' stdout when --quiet mode is passed (#16271)

chore: Remove extra renovate.json file (#16385)

chore(design-system): Added missing exports and index.ts (#16351)

chore: fix typo (#16345)

Co-authored-by: Jennifer Shehane <[email protected]>

fix: XHR event listener AUT redirect bug (#15995)

Fixes incorrect redirect when location.href is set to a relative path within the call stack of an XHR event handler, which set the user's AUT to /__/ rather than the correct path

Linting after merge
  • Loading branch information
agg23 committed May 7, 2021
1 parent c665fa2 commit aeeaaee
Show file tree
Hide file tree
Showing 1,456 changed files with 60,696 additions and 57,168 deletions.
25 changes: 14 additions & 11 deletions .releaserc.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,21 @@ module.exports = {
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
['@semantic-release/changelog', {
changelogFile: 'CHANGELOG.md',
}],
['@semantic-release/git', {
assets: [
'./CHANGELOG.md',
],
message: 'chore: release ${nextRelease.gitTag}\n\n[skip ci]',
}],
[
'@semantic-release/changelog',
{
changelogFile: 'CHANGELOG.md',
},
],
[
'@semantic-release/git',
{
assets: ['./CHANGELOG.md'],
message: 'chore: release ${nextRelease.gitTag}\n\n[skip ci]',
},
],
'@semantic-release/npm',
],
extends: 'semantic-release-monorepo',
branches: [
],
branches: [],
}
5 changes: 1 addition & 4 deletions .releaserc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
module.exports = {
...require('./.releaserc.base'),
branches: [
'master',
{ name: 'chore/webpack-5', channel: 'channel-next' },
],
branches: ['master', { name: 'chore/webpack-5', channel: 'channel-next' }],
}
8 changes: 3 additions & 5 deletions cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,16 @@ switch (args.exec) {
case 'install':
debug('installing Cypress from NPM')

require('./lib/tasks/install')
.start({ force: args.force })
.catch(util.logErrorExit1)
require('./lib/tasks/install').start({ force: args.force }).catch(util.logErrorExit1)

break
case 'verify':
// for simple testing in the monorepo
debug('verifying Cypress')

require('./lib/tasks/verify')
.start({ force: true }) // always force verification
.catch(util.logErrorExit1)
.start({ force: true }) // always force verification
.catch(util.logErrorExit1)

break
default:
Expand Down
Loading

0 comments on commit aeeaaee

Please sign in to comment.