Skip to content

Commit 4e0dbe9

Browse files
committed
refactor: use deployments package
refactor: rename components refactor: turn MDX components into JSX
1 parent 4c8af8d commit 4e0dbe9

File tree

70 files changed

+2367
-4986
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+2367
-4986
lines changed

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# directories
22
.docusaurus
3+
build
34
node_modules
45
repos
6+
static
57

68
# files
79
babel.config.js
810
docusaurus.config.ts
11+
sidebars.js

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ node_modules
1111
.DS_Store
1212
.eslintcache
1313
.pnp.*
14+
_deployments-v*.mdx
1415
package-lock.json
1516
pnpm-lock.yaml
1617
yarn.lock
18+

.lintstagedrc.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
"*.{json,md,mdx,ts,tsx,yml}": "bun run fix"
1+
"*.{md,mdx,ts,tsx}": "bun run fix"
2+
"*.{json,md,mdx,ts,tsx,yml}": "bun run prettier:write"

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ repos
77

88
# files
99
.pnp.*
10+
_deployments-v*.mdx
1011
package-lock.json
1112
pnpm-lock.yaml

bun.lock

Lines changed: 1635 additions & 1873 deletions
Large diffs are not rendered by default.

docs/api/airdrops/02-endpoints.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ sidebar_position: 2
44
title: "Endpoints"
55
---
66

7-
import DeprecatedSubgraphs from "@site/docs/snippets/DeprecatedSubgraphs.mdx";
8-
import EnvioEndpoints from "@site/docs/snippets/EnvioEndpoints.mdx";
9-
import TheGraphEndpoints from "@site/docs/snippets/TheGraphEndpoints.mdx";
7+
import DeprecatedSubgraphs from "@site/src/components/atoms/DeprecatedSubgraphs";
108
import LinkPreview from "@site/src/components/molecules/LinkPreview";
9+
import EnvioEndpoints from "@site/src/snippets/EnvioEndpoints.mdx";
10+
import TheGraphEndpoints from "@site/src/snippets/TheGraphEndpoints.mdx";
1111

1212
# Airdrops Endpoints
1313

docs/api/airdrops/06-previous-endpoints.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebar_position: 6
44
title: "Previous Endpoints"
55
---
66

7-
import DeprecatedEndpoints from "@site/docs/snippets/DeprecatedEndpoints.mdx";
7+
import DeprecatedEndpoints from "@site/src/snippets/DeprecatedEndpoints.mdx";
88

99
<DeprecatedEndpoints />
1010

docs/api/flow/02-endpoints.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ sidebar_position: 2
44
title: "Endpoints"
55
---
66

7-
import DeprecatedSubgraphs from "@site/docs/snippets/DeprecatedSubgraphs.mdx";
8-
import EnvioEndpoints from "@site/docs/snippets/EnvioEndpoints.mdx";
9-
import TheGraphEndpoints from "@site/docs/snippets/TheGraphEndpoints.mdx";
7+
import DeprecatedSubgraphs from "@site/src/components/atoms/DeprecatedSubgraphs";
108
import LinkPreview from "@site/src/components/molecules/LinkPreview";
9+
import EnvioEndpoints from "@site/src/snippets/EnvioEndpoints.mdx";
10+
import TheGraphEndpoints from "@site/src/snippets/TheGraphEndpoints.mdx";
1111

1212
# Flow Endpoints
1313

docs/api/flow/05-previous-endpoints.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebar_position: 5
44
title: "Previous Endpoints"
55
---
66

7-
import DeprecatedEndpoints from "@site/docs/snippets/DeprecatedEndpoints.mdx";
7+
import DeprecatedEndpoints from "@site/src/snippets/DeprecatedEndpoints.mdx";
88

99
<DeprecatedEndpoints />
1010

docs/api/lockup/02-endpoints.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ sidebar_position: 2
44
title: "Endpoints"
55
---
66

7-
import DeprecatedSubgraphs from "@site/docs/snippets/DeprecatedSubgraphs.mdx";
8-
import EnvioEndpoints from "@site/docs/snippets/EnvioEndpoints.mdx";
9-
import TheGraphEndpoints from "@site/docs/snippets/TheGraphEndpoints.mdx";
7+
import DeprecatedSubgraphs from "@site/src/components/atoms/DeprecatedSubgraphs";
108
import LinkPreview from "@site/src/components/molecules/LinkPreview";
9+
import EnvioEndpoints from "@site/src/snippets/EnvioEndpoints.mdx";
10+
import TheGraphEndpoints from "@site/src/snippets/TheGraphEndpoints.mdx";
1111

1212
# Lockup Endpoints
1313

0 commit comments

Comments
 (0)