Skip to content

Commit b13d961

Browse files
committed
yak shave
1 parent cc7d7f6 commit b13d961

File tree

46 files changed

+335
-315
lines changed

Some content is hidden

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

46 files changed

+335
-315
lines changed

docs-v2/components/PipedreamCode.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const fira = Fira_Code({
1616
});
1717

1818
const PipedreamCode = ({ children }: PipedreamCodeProps) => <>
19-
<code className={`${fira.className} dark:text-white`}>{children}</code>
19+
<code className={`${fira.className} dark:text-white p-2`}>{children}</code>
2020
</>;
2121

2222
export default PipedreamCode;

docs-v2/next.config.js renamed to docs-v2/next.config.mjs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
const withNextra = require("nextra")({
1+
import nextra from "nextra";
2+
3+
const withNextra = nextra({
24
theme: "nextra-theme-docs",
35
themeConfig: "./theme.config.tsx",
46
defaultShowCopyCode: true,
57
});
68

7-
module.exports = withNextra({
9+
export default withNextra({
810
basePath: "/docs",
911
images: {
1012
remotePatterns: [

docs-v2/pages/_meta.json

Lines changed: 0 additions & 94 deletions
This file was deleted.

docs-v2/pages/_meta.tsx

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
export default {
2+
index: "What is Pipedream?",
3+
quickstart: "Quickstart",
4+
workspaces: "Workspaces",
5+
projects: "Projects",
6+
workflows: "Workflows",
7+
code: "Code",
8+
"data-stores": "Data Stores",
9+
databases: "Databases",
10+
"connected-accounts": "Connected Accounts",
11+
apps: "Integrations",
12+
connect: {
13+
title: "Pipedream Connect"
14+
},
15+
components: "Components",
16+
sources: "Sources",
17+
"event-history": "Event History",
18+
http: "HTTP",
19+
"environment-variables": "Environment Variables",
20+
"rest-api": "REST API",
21+
cli: "CLI",
22+
destinations: "Destinations",
23+
"user-settings": "User and Billing Settings",
24+
troubleshooting: "Troubleshooting",
25+
pricing: "Pricing FAQ",
26+
"privacy-and-security": "Security",
27+
limits: "Limits",
28+
glossary: "Glossary of Terms",
29+
support: {
30+
title: "Support",
31+
type: "page",
32+
href: "https://pipedream.com/support",
33+
newWindow: true
34+
},
35+
"pricing-page": {
36+
title: "Pricing",
37+
href: "https://pipedream.com/pricing",
38+
newWindow: true,
39+
type: "page"
40+
},
41+
statuspage: {
42+
title: "Status",
43+
type: "page",
44+
href: "https://status.pipedream.com",
45+
newWindow: true
46+
},
47+
version: {
48+
title: "Version",
49+
type: "menu",
50+
items: {
51+
v3: {
52+
title: "Current",
53+
href: "https://pipedream.com/docs"
54+
},
55+
v2: {
56+
title: "Linear (classic)",
57+
href: "https://pipedream.com/docs/v2"
58+
}
59+
}
60+
},
61+
abuse: {
62+
display: "children"
63+
},
64+
airtable: {
65+
display: "children"
66+
},
67+
examples: {
68+
display: "children"
69+
},
70+
"migrate-from-v1": {
71+
display: "children"
72+
},
73+
"new-feature-or-bug": {
74+
display: "children"
75+
},
76+
"nodejs20-faq-2024-02": {
77+
display: "children"
78+
},
79+
"scheduling-future-tasks": {
80+
display: "children"
81+
},
82+
"shopify-faq-2023-10": {
83+
display: "children"
84+
},
85+
subprocessors: {
86+
display: "children"
87+
},
88+
"pipedream-axios": {
89+
display: "children"
90+
},
91+
status: {
92+
display: "children"
93+
}
94+
} as const

docs-v2/pages/abuse/_meta.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export default {
2+
index: {
3+
display: "hidden"
4+
}
5+
} as const

docs-v2/pages/airtable/_meta.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

docs-v2/pages/airtable/_meta.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export default {
2+
"oauth-migration-2024-02": {
3+
display: "children"
4+
}
5+
} as const
6+
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{
1+
export default {
22
"index": {
33
"display": "hidden"
44
}
5-
}
5+
} as const
66

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{
1+
export default {
22
"index": "Overview",
33
"auth": "Authorizing API requests",
44
"rest": "REST API",
55
"sse": "SSE API"
6-
}
6+
} as const
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
{
1+
export default {
22
"index": "Integrated Apps",
33
"contributing": "Contributing",
44
"app-partners": "App Partners"
5-
}
5+
} as const

0 commit comments

Comments
 (0)