Skip to content

Commit 8c19de9

Browse files
committed
fix(ci): cover SvelteKit and SolidStart sync gaps
1 parent 4f551a0 commit 8c19de9

4 files changed

Lines changed: 26 additions & 7 deletions

File tree

apps/cli/test/__snapshots__/template-snapshots.test.ts.snap

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2818,10 +2818,12 @@ export default defineNuxtConfig({
28182818
"@snapshot-nuxt-standalone/api": "workspace:*",
28192819
"@libsql/client": "catalog:",
28202820
"libsql": "catalog:",
2821-
"@tanstack/vue-query": "^5.92.9",
2822-
"@orpc/tanstack-query": "^1.13.5",
2821+
"@orpc/server": "catalog:",
28232822
"@orpc/client": "catalog:",
2824-
"@orpc/server": "catalog:"
2823+
"@orpc/openapi": "catalog:",
2824+
"@orpc/zod": "catalog:",
2825+
"@tanstack/vue-query": "^5.92.9",
2826+
"@orpc/tanstack-query": "^1.13.5"
28252827
},
28262828
"devDependencies": {
28272829
"tailwindcss": "^4.1.13",
@@ -2893,8 +2895,10 @@ export default defineNuxtConfig({
28932895
"@types/bun": "^1.3.9",
28942896
"@libsql/client": "^0.17.0",
28952897
"libsql": "0.5.22",
2898+
"@orpc/server": "^1.13.5",
28962899
"@orpc/client": "^1.13.5",
2897-
"@orpc/server": "^1.13.5"
2900+
"@orpc/openapi": "^1.13.5",
2901+
"@orpc/zod": "^1.13.5"
28982902
}
28992903
},
29002904
"scripts": {
@@ -2949,8 +2953,8 @@ export default defineNuxtConfig({
29492953
"@snapshot-nuxt-standalone/db": "workspace:*",
29502954
"@orpc/server": "catalog:",
29512955
"@orpc/client": "catalog:",
2952-
"@orpc/openapi": "^1.13.5",
2953-
"@orpc/zod": "^1.13.5"
2956+
"@orpc/openapi": "catalog:",
2957+
"@orpc/zod": "catalog:"
29542958
}
29552959
}"
29562960
,

apps/cli/test/backend-runtime.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ describe("Backend and Runtime Combinations", () => {
505505

506506
expectError(
507507
result,
508-
"Backend 'self' (fullstack) only supports Next.js, TanStack Start, Astro, or Nuxt frontends.",
508+
"Backend 'self' (fullstack) only supports Next.js, TanStack Start, Astro, Nuxt, SvelteKit, or SolidStart frontends.",
509509
);
510510
});
511511

apps/cli/test/cli-builder-sync.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,8 @@ describe("CLI and Builder Sync", () => {
237237
"self-tanstack-start": "self",
238238
"self-astro": "self",
239239
"self-nuxt": "self",
240+
"self-svelte": "self",
241+
"self-solid-start": "self",
240242
},
241243
};
242244

@@ -280,6 +282,7 @@ describe("CLI and Builder Sync", () => {
280282
"nuxt",
281283
"svelte",
282284
"solid",
285+
"solid-start",
283286
"astro",
284287
"qwik",
285288
"angular",

apps/web/src/lib/tech-resource-links.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ const BASE_LINKS: LinkMap = {
2929
nuxt: { docsUrl: "https://nuxt.com/docs", githubUrl: "https://github.com/nuxt/nuxt" },
3030
svelte: { docsUrl: "https://svelte.dev/docs", githubUrl: "https://github.com/sveltejs/svelte" },
3131
solid: { docsUrl: "https://docs.solidjs.com/", githubUrl: "https://github.com/solidjs/solid" },
32+
"solid-start": {
33+
docsUrl: "https://docs.solidjs.com/solid-start",
34+
githubUrl: "https://github.com/solidjs/solid-start",
35+
},
3236
astro: { docsUrl: "https://docs.astro.build/", githubUrl: "https://github.com/withastro/astro" },
3337
qwik: { docsUrl: "https://qwik.dev/docs/", githubUrl: "https://github.com/QwikDev/qwik" },
3438
angular: { docsUrl: "https://angular.dev/", githubUrl: "https://github.com/angular/angular" },
@@ -86,6 +90,14 @@ const BASE_LINKS: LinkMap = {
8690
githubUrl: "https://github.com/withastro/astro",
8791
},
8892
"self-nuxt": { docsUrl: "https://nuxt.com/docs", githubUrl: "https://github.com/nuxt/nuxt" },
93+
"self-svelte": {
94+
docsUrl: "https://svelte.dev/docs/kit",
95+
githubUrl: "https://github.com/sveltejs/kit",
96+
},
97+
"self-solid-start": {
98+
docsUrl: "https://docs.solidjs.com/solid-start",
99+
githubUrl: "https://github.com/solidjs/solid-start",
100+
},
89101
"native-bare": { docsUrl: "https://docs.expo.dev/", githubUrl: "https://github.com/expo/expo" },
90102
"native-uniwind": {
91103
docsUrl: "https://www.uniwind.dev/",

0 commit comments

Comments
 (0)