Skip to content

Commit

Permalink
chore: allow nextVersion to be overridden by NEXT_VERSION (#15541)
Browse files Browse the repository at this point in the history
By popular demand!
  • Loading branch information
flotwig committed Mar 17, 2021
1 parent 6abc245 commit c3f2251
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/get-next-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ const currentVersion = require('../package.json').version
const bump = Bluebird.promisify(bumpCb)
const paths = ['packages', 'cli']

let nextVersion
// allow the semantic next version to be overridden by environment
let nextVersion = process.env.NEXT_VERSION

const getNextVersionForPath = async (path) => {
const { releaseType } = await bump({ preset: 'angular', path })
Expand Down

4 comments on commit c3f2251

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on c3f2251 Mar 17, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/6.8.0/circle-develop-c3f2251a2caacf9050db46de89935ab49d206758/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on c3f2251 Mar 17, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AppVeyor has built the win32 ia32 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/6.8.0/appveyor-develop-c3f2251a2caacf9050db46de89935ab49d206758/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on c3f2251 Mar 17, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AppVeyor has built the win32 x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/6.8.0/appveyor-develop-c3f2251a2caacf9050db46de89935ab49d206758/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on c3f2251 Mar 17, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/6.8.0/circle-develop-c3f2251a2caacf9050db46de89935ab49d206758/cypress.tgz

Please sign in to comment.