Skip to content

Commit 7121b61

Browse files
committed
Merge branch 'main' into deploy-stage
2 parents c7c9b71 + 7dae4c8 commit 7121b61

5 files changed

Lines changed: 17 additions & 17 deletions

File tree

lang/en/global.json

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,14 @@
55
"locale": "en-US",
66
"nav": [
77
{
8-
"title": "Guides",
9-
"path": "/guides"
8+
"title": "Documentation",
9+
"path": "https://docs.solidjs.com",
10+
"external": true
1011
},
1112
{
1213
"title": "Tutorial",
1314
"path": "/tutorial"
1415
},
15-
{
16-
"title": "API",
17-
"path": "/docs/latest/api"
18-
},
19-
{
20-
"title": "SolidStart",
21-
"path": "https://start.solidjs.com",
22-
"external": true
23-
},
2416
{
2517
"title": "Ecosystem",
2618
"path": "/ecosystem",
@@ -41,6 +33,11 @@
4133
"title": "Examples",
4234
"path": "/examples"
4335
},
36+
{
37+
"title": "SolidStart",
38+
"path": "https://start.solidjs.com",
39+
"external": true
40+
},
4441
{
4542
"title": "Playground",
4643
"path": "https://playground.solidjs.com",

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "MIT",
55
"engines": {
66
"node": ">=16.0.0",
7-
"pnpm": ">=8.7.0"
7+
"pnpm": ">=9.1.4"
88
},
99
"type": "module",
1010
"scripts": {
@@ -49,10 +49,11 @@
4949
"solid-dismiss": "^1.7.122",
5050
"solid-heroicons": "<3.0.0",
5151
"solid-js": "1.8.16",
52-
"@solidjs/meta": "^0.29.3",
52+
"solid-meta": "^0.28.1",
5353
"solid-repl": "^0.25.0",
5454
"solid-social": "^0.9.6",
55-
"solid-transition-group": "^0.2.3"
55+
"solid-transition-group": "^0.2.3",
56+
"solid-utils": "^0.8.1"
5657
},
5758
"devDependencies": {
5859
"@aminya/minijson": "^0.6.2",
@@ -89,7 +90,7 @@
8990
"solid-js": "1.8.16",
9091
"@rollup/pluginutils": "5.1.0"
9192
},
92-
"packageManager": "pnpm@9.0.6",
93+
"packageManager": "pnpm@9.1.4",
9394
"pnpm": {
9495
"patchedDependencies": {
9596
"monaco-editor@0.47.0": "patches/monaco-editor@0.47.0.patch"

src/components/layout/SideContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const SideContent: Component<{
5555
<div class="w-full lg:w-9/12 p-5 md:p-10 bg-white dark:bg-solid-darkbg">
5656
<a
5757
href="https://docs.solidjs.com"
58-
class="sticky top-16 p-3 w-full block text-transparent hover:text-white text-center rounded-md bg-amber-400 hover:bg-gray-400 transition duration-300"
58+
class="sticky top-16 p-3 w-full block hover:text-white text-center rounded-md bg-amber-400 hover:bg-gray-400 transition duration-300"
5959
>
6060
<b>New Beta Docs!</b>&nbsp;Click here to access new beta documentation at{' '}
6161
<u>docs.solidjs.com</u>.

src/pages/Articles/solid-start-the-shape-frameworks-to-come.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,3 +116,5 @@ This is a framework designed for builders and people who have their own opinions
116116
And for that, we (the Solid Core Team) are incredibly thankful. Thankful for all the contributors submitting issues and PRs. Thankful for open-source projects that make this technically possible like Vite, Vinxi, and Nitro. Thankful for all the sponsors contributing funding like Netlify, Google Chrome, and JetBrains. Most importantly we're thankful to all of you for embracing development in the open, choosing better over convenient, and sticking with us on this journey. You inspire us to keep building the best solutions we can and to continue to shape the future of web development.
117117

118118
<YouTube youTubeId="ZVjXtfdKQ3g" />
119+
120+
Thanks to Theo Browne, Erik Demaine, Dev Agrawal, and bigmistqke for reviewing this article, and Dev Agrawal for providing the Single Flight Mutation image.

src/pages/Examples.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const Examples: Component<{data: ExamplesDataRoute}> = (props) => {
6161

6262
return (
6363
<div class="flex flex-col relative">
64-
<Title>Exanples | SolidJS</Title>
64+
<Title>Examples | SolidJS</Title>
6565
<div class="container my-10 w-[98vw] mx-auto">
6666
<div class="md:grid md:grid-cols-12 gap-6">
6767
<div class="md:col-span-4 lg:col-span-3 overflow-auto border dark:border-solid-darkLighterBg p-5 rounded md:h-[82vh]">

0 commit comments

Comments
 (0)