Skip to content

Commit a2f1189

Browse files
cipolleschifacebook-github-bot
authored andcommitted
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: #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
1 parent d282ebe commit a2f1189

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

scripts/template/initialize.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ async function install() {
6666
return;
6767
}
6868

69+
// TODO: Fix normalize-colors publishing in Verdaccio
70+
if (packageManifest.name === '@react-native/normalize-colors') {
71+
return;
72+
}
73+
6974
execSync(
7075
'npm publish --registry http://localhost:4873 --access public',
7176
{

0 commit comments

Comments
 (0)