Skip to content

Commit

Permalink
DEVPROD-5136: Configure workspace (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
sophstad authored Mar 25, 2024
1 parent 3f19ce5 commit 9532d1b
Show file tree
Hide file tree
Showing 9 changed files with 17,482 additions and 14 deletions.
Empty file added .evergreen/evergreen.yml
Empty file.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
6 changes: 1 addition & 5 deletions apps/parsley/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"@leafygreen-ui/modal": "16.0.5",
"@leafygreen-ui/palette": "4.0.7",
"@leafygreen-ui/segmented-control": "8.2.6",
"@leafygreen-ui/select": "10.2.0",
"@leafygreen-ui/select": "11.1.2",
"@leafygreen-ui/side-nav": "14.1.0",
"@leafygreen-ui/tabs": "11.1.13",
"@leafygreen-ui/text-input": "12.1.12",
Expand Down Expand Up @@ -158,10 +158,6 @@
"web-streams-polyfill": "^3.2.1",
"whatwg-fetch": "3.6.17"
},
"resolutions": {
"@types/react": "18.0.0",
"@types/react-dom": "18.0.0"
},
"engines": {
"node": ">=20.10.0"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ interface DetailsLabelProps {
const DetailsLabel: React.FC<DetailsLabelProps> = ({ children, label }) => (
<LabelWrapper>
<DetailName>{children}</DetailName>
{/* @ts-expect-error https://jira.mongodb.org/browse/LG-3797 */}
<InfoSprinkle>{label}</InfoSprinkle>
</LabelWrapper>
);
Expand Down
1 change: 0 additions & 1 deletion apps/parsley/src/components/Search/SearchBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ const Container = styled.div`
align-items: center;
`;

// @ts-expect-error
const StyledSelect = styled(Select)`
width: 120px;
/* overwrite lg borders https://jira.mongodb.org/browse/PD-1995 */
Expand Down
4 changes: 2 additions & 2 deletions apps/spruce/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
},
"dependencies": {
"@apollo/client": "3.8.4",
"@emotion/css": "11.11.2",
"@emotion/react": "11.11.1",
"@emotion/css": "11.11.0",
"@emotion/react": "11.11.0",
"@emotion/styled": "11.11.0",
"@leafygreen-ui/badge": "8.0.2",
"@leafygreen-ui/banner": "7.0.4",
Expand Down
5 changes: 0 additions & 5 deletions apps/spruce/src/constants/task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,6 @@ export const mapUmbrellaStatusColors: Pick<
border: purple.dark3,
text: purple.light3,
},
[TaskStatus.UndispatchedUmbrella]: {
fill: gray.light3,
border: gray.light2,
text: gray.dark1,
},
[TaskStatus.ScheduledUmbrella]: {
fill: gray.dark1,
border: gray.dark2,
Expand Down
14 changes: 14 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "evergreen-ui",
"repository": "https://github.com/evergreen-ci/ui",
"private": true,
"workspaces": {
"packages": ["apps/*"],
"nohoist": ["**/storybook-addon-apollo-client"]
},
"resolutions": {
"@tanstack/react-table": "8.9.3",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0"
}
}
17,464 changes: 17,464 additions & 0 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 9532d1b

Please sign in to comment.