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:
Riccardo Cipolleschi
2023-10-14 13:12:46 -07:00
committed by Facebook GitHub Bot
parent d282ebe5d1
commit a2f11895c2
+5
View File
@@ -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',
{