Skip to content

Commit

Permalink
chore: Replace Github contributors list to be from vibe-storybook-com…
Browse files Browse the repository at this point in the history
…ponents (#1721)
  • Loading branch information
SergeyRoyt authored Oct 31, 2023
1 parent b166eda commit bf7c1e9
Show file tree
Hide file tree
Showing 8 changed files with 77 additions and 162 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
"react-window": "^1.8.7",
"react-windowed-select": "^2.0.4",
"style-inject": "^0.3.0",
"vibe-storybook-components": "^0.10.3"
"vibe-storybook-components": "^0.11.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.contributorsList {
margin-top: var(--sb-spacing-between-section-items);
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
import { GithubContributorsList, ContributorsList, Paragraph } from "vibe-storybook-components";
import styles from "./other-contributors-list.module.scss";

const excludedContributorsIds: Set<number> = new Set();
excludedContributorsIds.add(41898282); // github-actions[bot]
excludedContributorsIds.add(49699333); // dependabot[bot]
excludedContributorsIds.add(19733683); // snyk-bot

const STATIC_FOUNDING_DESIGNERS = [
{
name: "Evgeniy Kazinec",
href: "https://www.linkedin.com/in/evgeniy-kazinec/"
},
{
name: "Rotem Dekel",
href: "https://www.linkedin.com/in/rotem-dekel-7a8b12133/"
}
];
const STATIC_CONTRIBUTORS = [
{
name: "Devorah Friedman",
href: "mailto:[email protected]"
},
{
name: "Dmitry Kogan",
href: "mailto:[email protected]"
},
{
name: "Meytal Badichi",
href: "mailto:mailto:[email protected]"
},
{
name: "Shay Cohen",
href: "mailto:[email protected]"
},
{
name: "Eylon Goren",
href: "mailto:[email protected]"
},
{
name: "Noa Fenko",
href: "mailto:[email protected]"
},
{
name: "LeanyLabs",
href: "https://github.com/LeanyLabs"
},
{
name: "Hadas Farhi",
href: "https://github.com/hadasfa"
}
];

export const OtherContributorsList = () => {
return (
<Paragraph className={styles.contributorsList}>
Special thanks to our founding designers: <ContributorsList contributorsData={STATIC_FOUNDING_DESIGNERS} />
<GithubContributorsList
organizationName="mondaycom"
packageName="monday-ui-react-core"
staticContributors={STATIC_CONTRIBUTORS}
excludedContributorsIds={excludedContributorsIds}
/>
</Paragraph>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { Principles } from "./principles/principles";
import { Contributors } from "./contributors/contributors";
import { WelcomeHeader } from "./welcome-header/welcome-header";
import { OtherContributorsList } from "./other-contributors-list/other-contributors-list";
import { Link } from "vibe-storybook-components";

<Meta title="Welcome" />

Expand Down

0 comments on commit bf7c1e9

Please sign in to comment.