From ca62193c3399ca919d04b5fba88d9de2194e1953 Mon Sep 17 00:00:00 2001 From: Aurelien Lourot Date: Mon, 25 Sep 2023 12:18:31 +0200 Subject: [PATCH 1/3] docs: improve link to Vike --- vike-solid/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vike-solid/README.md b/vike-solid/README.md index 4274fcc..0248630 100644 --- a/vike-solid/README.md +++ b/vike-solid/README.md @@ -3,8 +3,7 @@ # `vike-solid` -SolidJS integration for [Vike](https://github.com/vikejs/vike/issues/736) (using the -[V1 design](https://vike.dev/migration/v1-design)). +SolidJS integration for [Vike](https://github.com/vikejs/vike) (using the [V1 design](https://vike.dev/migration/v1-design)). > [!NOTE] > For integrations with React and Vue, see the other [`vike-*` packages](https://vike.dev/vike-packages). From 4a78eb4dafa250316a80067a9dcc082d9fd7f091 Mon Sep 17 00:00:00 2001 From: Aurelien Lourot Date: Mon, 25 Sep 2023 12:28:08 +0200 Subject: [PATCH 2/3] qual: move comment --- vike-solid/renderer/+config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vike-solid/renderer/+config.ts b/vike-solid/renderer/+config.ts index 8a71759..5a11030 100644 --- a/vike-solid/renderer/+config.ts +++ b/vike-solid/renderer/+config.ts @@ -1,5 +1,4 @@ import type { Config, ConfigEffect, PageContext } from "vike/types"; -// We purposely define the ConfigVikeSolid interface in this file: that way we ensure it's always applied whenever the user `import vikeSolid from 'vike-solid'` import type { Component } from "./types.js"; // Depending on the value of `config.meta.ssr`, set other config options' `env` @@ -59,6 +58,7 @@ export default { }, } satisfies Config; +// We purposely define the ConfigVikeSolid interface in this file: that way we ensure it's always applied whenever the user `import vikeSolid from 'vike-solid'` declare global { namespace VikePackages { interface ConfigVikeSolid { From ea7fb0c77f166d7df4d28f081faad1983374a820 Mon Sep 17 00:00:00 2001 From: Aurelien Lourot Date: Fri, 29 Sep 2023 18:09:23 +0200 Subject: [PATCH 3/3] qual: improve links to vike-solid --- CONTRIBUTING.md | 2 +- examples/basic/README.md | 2 +- examples/ssr-spa/README.md | 2 +- vike-solid/README.md | 2 +- vike-solid/package.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cb5d23a..30f185e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,7 +5,7 @@ Build `vike-solid`: ```bash -git clone git@github.com:magne4000/vike-solid +git clone git@github.com:vikejs/vike-solid cd vike-solid/ && pnpm install pnpm build cd ../ diff --git a/examples/basic/README.md b/examples/basic/README.md index 05f28cc..a3fa07a 100644 --- a/examples/basic/README.md +++ b/examples/basic/README.md @@ -1,7 +1,7 @@ Basic example of using `vike-solid`. ```bash -git clone git@github.com:magne4000/vike-solid +git clone git@github.com:vikejs/vike-solid cd vike-solid/examples/basic/ pnpm install pnpm run dev diff --git a/examples/ssr-spa/README.md b/examples/ssr-spa/README.md index aacf39f..ae99435 100644 --- a/examples/ssr-spa/README.md +++ b/examples/ssr-spa/README.md @@ -2,7 +2,7 @@ Example of selecting SPA or SSR on a per-page basis. See [SPA vs SSR (and more)](https://vike.dev/SPA-vs-SSR). ```bash -git clone git@github.com:magne4000/vike-solid +git clone git@github.com:vikejs/vike-solid cd vike-solid/examples/ssr-spa/ npm install npm run dev diff --git a/vike-solid/README.md b/vike-solid/README.md index 0248630..82d1784 100644 --- a/vike-solid/README.md +++ b/vike-solid/README.md @@ -8,4 +8,4 @@ SolidJS integration for [Vike](https://github.com/vikejs/vike) (using the [V1 de > [!NOTE] > For integrations with React and Vue, see the other [`vike-*` packages](https://vike.dev/vike-packages). -See [examples/](https://github.com/magne4000/vike-solid/tree/main/examples). +See [examples/](https://github.com/vikejs/vike-solid/tree/main/examples). diff --git a/vike-solid/package.json b/vike-solid/package.json index 3403fa1..2d73d23 100644 --- a/vike-solid/package.json +++ b/vike-solid/package.json @@ -62,6 +62,6 @@ "bin": "./cli/entry.js", "main": "dist/+config.js", "types": "dist/renderer/+config.d.ts", - "repository": "github:magne4000/vike-solid", + "repository": "github:vikejs/vike-solid", "license": "MIT" }