mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Skip publishing of normalize-colors (#40977)
Summary: CircleCI is red because verdaccio fails to publish `normalize-colors`. For some old dependencies, normalize-colors has been published on the official npmjs with the version we needs. In order to mitigate the RN red ci, we can consume them directly from NPMJS. As a followup, we created a task to investigate it next week. ## Changelog: [Internal] - Skip publishing or normalize colors Pull Request resolved: https://github.com/facebook/react-native/pull/40977 Test Plan: Tested locally, running verdaccio and simulating CI. It worked. CircleCI is green Reviewed By: robhogan Differential Revision: D50300449 Pulled By: cipolleschi fbshipit-source-id: 2259b450deff15a117d1de4690bcfe8a9ba7d115
This commit is contained in:
committed by
Facebook GitHub Bot
parent
d282ebe5d1
commit
a2f11895c2
@@ -66,6 +66,11 @@ async function install() {
|
||||
return;
|
||||
}
|
||||
|
||||
// TODO: Fix normalize-colors publishing in Verdaccio
|
||||
if (packageManifest.name === '@react-native/normalize-colors') {
|
||||
return;
|
||||
}
|
||||
|
||||
execSync(
|
||||
'npm publish --registry http://localhost:4873 --access public',
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user