mirror of
https://github.com/facebook/react-native.git
synced 2024-11-21 22:10:14 +00:00
4a6b889e93
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/45180 - Simplifies the responsibilities of `scripts/releases/set-rn-version.js`. - This no longer modifies `packages/react-native/package.json`, delegating this to `set-version`. - Simplifies logic in `set-version`, **fixing behaviour** against deps in `packages/react-native/package.json`. - This also acts as cleanup since D58469912 (template removal) — removing the unreferenced `update-template-package.js` util. NOTE: This diff will be followed up by a merge of the `set-rn-version` script into `set-version`. (I had considered a rename to `version-rn-artifacts`, intentionally keeping this script separate and distinct from a future [`lerna version` + this script] setup — however the current UX and confusion with this naming would be too confusing. It can move into a util 👍🏻.) Changelog: [Internal] Reviewed By: cipolleschi Differential Revision: D59055522 fbshipit-source-id: 79b937f9e0ac790512b180ab4147aefef7f5202c
73 lines
2.1 KiB
JavaScript
73 lines
2.1 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
* @format
|
|
* @oncall react_native
|
|
*/
|
|
|
|
const {setVersion} = require('../releases/set-version');
|
|
const {getBranchName} = require('../scm-utils');
|
|
const {parseVersion} = require('./utils/version-utils');
|
|
const {execSync} = require('child_process');
|
|
const yargs = require('yargs');
|
|
|
|
async function main() {
|
|
const argv = await yargs
|
|
.option('reactNativeVersion', {
|
|
describe: 'The new React Native version.',
|
|
type: 'string',
|
|
required: true,
|
|
})
|
|
.option('tagAsLatestRelease', {
|
|
describe:
|
|
'Whether the version should be published as the latest version on npm.',
|
|
type: 'boolean',
|
|
default: false,
|
|
})
|
|
.option('dryRun', {
|
|
description: 'Whether we should push the commit to github or not',
|
|
type: 'boolean',
|
|
default: true,
|
|
}).argv;
|
|
|
|
const buildType = 'release';
|
|
const version = argv.reactNativeVersion;
|
|
const latest = argv.tagAsLatestRelease;
|
|
const dryRun = argv.dryRun;
|
|
const branch = getBranchName();
|
|
console.info(`Running on branch: ${branch}`);
|
|
|
|
console.info('Validating version', version);
|
|
const {prerelease} = parseVersion(version, buildType);
|
|
|
|
const npmTag = latest ? 'latest' : prerelease ? 'next' : branch;
|
|
console.info('NPM tag:', npmTag);
|
|
|
|
console.info('Setting version for monorepo packages and react-native');
|
|
await setVersion(version, false); // version, skip-react-native
|
|
|
|
if (dryRun) {
|
|
console.info('Running in dry-run mode, skipping git commit');
|
|
console.info(
|
|
`git commit -a -m "Release ${version}" -m "#publish-packages-to-npm&${npmTag}"`,
|
|
);
|
|
console.info(`git tag -a v${version} -m "v${version}"`);
|
|
return;
|
|
}
|
|
|
|
console.info('Committing to git');
|
|
execSync(
|
|
`git commit -a -m "Release ${version}" -m "#publish-packages-to-npm&${npmTag}"`,
|
|
);
|
|
execSync(`git tag -a v${version} -m "v${version}"`);
|
|
}
|
|
|
|
if (require.main === module) {
|
|
// eslint-disable-next-line no-void
|
|
void main();
|
|
}
|