Skip to content

Commit

Permalink
Remove "canary" from internal React version string
Browse files Browse the repository at this point in the history
  • Loading branch information
acdlite committed Oct 15, 2019
1 parent 6114128 commit 38e5bb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/release/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ const getBuildInfo = async () => {
join(cwd, 'packages', 'react', 'package.json')
);
const reactVersion = isExperimental
? `${packageJSON.version}-experimental-canary-${commit}`
: `${packageJSON.version}-canary-${commit}`;
? `${packageJSON.version}-experimental-${commit}`
: `${packageJSON.version}-${commit}`;

return {branch, buildNumber, checksum, commit, reactVersion, version};
};
Expand Down

0 comments on commit 38e5bb7

Please sign in to comment.