mirror of
https://github.com/facebook/react-native.git
synced 2024-11-21 22:10:14 +00:00
35ab62cca3
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/47704 Now that we have a min requirement of Node 18.18 on `main`, drop dependency on this polyfill. Changelog: [Internal] Reviewed By: vzaidman Differential Revision: D66162328 fbshipit-source-id: e8ab6669fe14ed177eccf4b861c01df4fb0d405a
162 lines
3.8 KiB
JavaScript
162 lines
3.8 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 strict-local
|
|
* @format
|
|
* @oncall react_native
|
|
*/
|
|
|
|
const {publishPackage} = require('../npm-utils');
|
|
const {getPackages} = require('../utils/monorepo');
|
|
const {execSync} = require('child_process');
|
|
const {parseArgs} = require('util');
|
|
|
|
const PUBLISH_PACKAGES_TAG = '#publish-packages-to-npm';
|
|
const NPM_CONFIG_OTP = process.env.NPM_CONFIG_OTP;
|
|
|
|
const config = {
|
|
options: {
|
|
help: {type: 'boolean'},
|
|
},
|
|
};
|
|
|
|
async function main() {
|
|
const {
|
|
values: {help},
|
|
} = parseArgs(config);
|
|
|
|
if (help) {
|
|
console.log(`
|
|
Usage: node ./scripts/releases/publish-updated-packages.js
|
|
|
|
Publishes all updated packages (excluding react-native) to npm. This script
|
|
is intended to run from a CI workflow.
|
|
`);
|
|
return;
|
|
}
|
|
|
|
await publishUpdatedPackages();
|
|
}
|
|
|
|
async function publishUpdatedPackages() {
|
|
let commitMessage;
|
|
|
|
try {
|
|
commitMessage = execSync('git log -1 --pretty=%B').toString();
|
|
} catch {
|
|
throw new Error('Failed to read Git commit message, exiting.');
|
|
}
|
|
|
|
if (!commitMessage.includes(PUBLISH_PACKAGES_TAG)) {
|
|
console.log(
|
|
'Current commit does not include #publish-packages-to-npm keyword, skipping.',
|
|
);
|
|
return;
|
|
}
|
|
|
|
console.log('Discovering updated packages');
|
|
|
|
const packages = await getPackages({
|
|
includeReactNative: false,
|
|
});
|
|
const packagesToUpdate = [];
|
|
|
|
await Promise.all(
|
|
Object.values(packages).map(async package => {
|
|
const version = package.packageJson.version;
|
|
|
|
if (!version.startsWith('0.')) {
|
|
throw new Error(
|
|
`Package version expected to be 0.x.x, but received ${version}`,
|
|
);
|
|
}
|
|
|
|
const response = await fetch(
|
|
'https://registry.npmjs.org/' + package.name,
|
|
);
|
|
const {versions: versionsInRegistry} = await response.json();
|
|
|
|
if (version in versionsInRegistry) {
|
|
console.log(
|
|
`- Skipping ${package.name} (${version} already present on npm)`,
|
|
);
|
|
return;
|
|
}
|
|
|
|
packagesToUpdate.push(package.name);
|
|
}),
|
|
);
|
|
|
|
console.log('Done ✅');
|
|
console.log('Publishing updated packages to npm');
|
|
|
|
const tags = getTagsFromCommitMessage(commitMessage);
|
|
const failedPackages = [];
|
|
|
|
for (const packageName of packagesToUpdate) {
|
|
const package = packages[packageName];
|
|
console.log(
|
|
`- Publishing ${package.name} (${package.packageJson.version})`,
|
|
);
|
|
|
|
try {
|
|
runPublish(package.name, package.path, tags);
|
|
} catch {
|
|
console.log('--- Retrying once! ---');
|
|
try {
|
|
runPublish(package.name, package.path, tags);
|
|
} catch (e) {
|
|
failedPackages.push(package.name);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (failedPackages.length) {
|
|
throw new Error(`Failed packages count = ${failedPackages.length}`);
|
|
}
|
|
|
|
console.log('Done ✅');
|
|
}
|
|
|
|
function getTagsFromCommitMessage(msg /*: string */) /*: Array<string> */ {
|
|
// ex message we're trying to parse tags out of
|
|
// `_some_message_here_${PUBLISH_PACKAGES_TAG}&tagA&tagB\n`;
|
|
return msg
|
|
.substring(msg.indexOf(PUBLISH_PACKAGES_TAG))
|
|
.trim()
|
|
.split('&')
|
|
.slice(1);
|
|
}
|
|
|
|
function runPublish(
|
|
packageName /*: string */,
|
|
packagePath /*: string */,
|
|
tags /*: Array<string> */,
|
|
) {
|
|
const result = publishPackage(packagePath, {
|
|
tags,
|
|
otp: NPM_CONFIG_OTP,
|
|
});
|
|
|
|
if (result.code !== 0) {
|
|
console.error(
|
|
`Failed to publish ${packageName}. npm publish exited with code ${result.code}:`,
|
|
);
|
|
console.error(result.stderr);
|
|
throw new Error(result.stderr);
|
|
}
|
|
}
|
|
|
|
if (require.main === module) {
|
|
// eslint-disable-next-line no-void
|
|
void main();
|
|
}
|
|
|
|
module.exports = {
|
|
getTagsFromCommitMessage,
|
|
publishUpdatedPackages,
|
|
};
|