Skip to content

Commit d6c6c0a

Browse files
authored
chore: reorg for dvc (#508)
1 parent 184b1cf commit d6c6c0a

File tree

8 files changed

+25693
-18208
lines changed

8 files changed

+25693
-18208
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,12 @@ tmp
7070

7171
# Copied 404 for Heroku
7272
404.html
73+
74+
# yarn
75+
.pnp.*
76+
.yarn/*
77+
!.yarn/patches
78+
!.yarn/plugins
79+
!.yarn/releases
80+
!.yarn/sdks
81+
!.yarn/versions

.npmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.yarn/releases/yarn-4.9.1.cjs

Lines changed: 948 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
defaultSemverRangePrefix: ''
2+
3+
nodeLinker: node-modules
4+
5+
yarnPath: .yarn/releases/yarn-4.9.1.cjs

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,5 +169,6 @@
169169
},
170170
"cacheDirectories": [
171171
"node_modules"
172-
]
172+
],
173+
"packageManager": "[email protected]"
173174
}

src/@dvcorg/gatsby-theme-iterative/components/LayoutFooter/index.tsx

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { ReactComponent as GithubIcon } from '@media/icons/github.svg'
1010
import { ReactComponent as YoutubeIcon } from '@media/icons/youtube.svg'
1111
import { ReactComponent as LinkedInIcon } from '@media/icons/linkedin.svg'
1212
import { ReactComponent as IterativeIcon } from '@media/icons/iterative.svg'
13-
import dvcIcon from '@media/icons/dvc.svg'
1413
import studioIcon from '@media/icons/studio.svg'
1514

1615
interface ISocialLinkPopupProps {
@@ -81,12 +80,7 @@ const footerLists: Array<IFooterListPopupProps> = [
8180
url: 'https://github.com/iterative/datachain'
8281
},
8382
{
84-
text: 'DVC',
85-
icon: <Box as="span" sx={{ backgroundImage: `url("${dvcIcon}")` }} />,
86-
url: 'https://dvc.org/'
87-
},
88-
{
89-
text: 'Studio',
83+
text: 'DataChain Studio',
9084
icon: (
9185
<Box
9286
as="span"
@@ -96,11 +90,6 @@ const footerLists: Array<IFooterListPopupProps> = [
9690
/>
9791
),
9892
url: 'https://studio.iterative.ai/'
99-
},
100-
{
101-
text: 'VS Code Extension',
102-
icon: <Box as="span" sx={{ backgroundImage: `url("${dvcIcon}")` }} />,
103-
url: 'https://marketplace.visualstudio.com/items?itemName=Iterative.dvc'
10493
}
10594
]
10695
}

src/@dvcorg/gatsby-theme-iterative/components/LayoutHeader/index.tsx

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,8 @@ import { ReactComponent as DiscordIcon } from '@media/icons/discord.svg'
99
import { ReactComponent as GithubIcon } from '@media/icons/github.svg'
1010
import { ReactComponent as UpIcon } from '@media/icons/up.svg'
1111
import { ReactComponent as DownIcon } from '@media/icons/down.svg'
12-
import { ReactComponent as DvcIcon } from '@media/icons/dvc.svg'
1312
import { ReactComponent as StudioIcon } from '@media/icons/studio.svg'
1413
import { ReactComponent as ExternalLinkIcon } from '@media/icons/external-link.svg'
15-
import { ReactComponent as VsCodeIcon } from '@media/icons/vscode.svg'
1614

1715
import {
1816
HamburgerMenu,
@@ -76,23 +74,10 @@ const otherToolsItems: Array<IOtherToolsItem> = [
7674
href: 'https://github.com/iterative/datachain'
7775
},
7876
{
79-
title: 'DVC',
80-
icon: <DvcIcon width="24" height="24" />,
81-
description: 'Open-source version control system for ML projects',
82-
href: 'https://dvc.org/'
83-
},
84-
{
85-
title: 'DVC Studio',
77+
title: 'DataChain Studio',
8678
icon: <StudioIcon width="24" height="24" />,
8779
description: 'Track experiments and share insights from ML projects',
8880
href: 'https://studio.iterative.ai/'
89-
},
90-
{
91-
title: 'VS Code Extension',
92-
titleIcon: <VsCodeIcon className="title-icon" width="14" height="14" />,
93-
icon: <DvcIcon width="24" height="24" />,
94-
description: 'Local ML model development and experiment tracking',
95-
href: 'https://marketplace.visualstudio.com/items?itemName=Iterative.dvc'
9681
}
9782
]
9883

0 commit comments

Comments
 (0)