10000 docs: update URLs for omnisite (#93) · sveltejs/cli@537940d · GitHub
[go: up one dir, main page]

Skip to content

Commit 537940d

Browse files
authored
docs: update URLs for omnisite (#93)
1 parent f623590 commit 537940d

File tree

23 files changed

+41
-39
lines changed

23 files changed

+41
-39
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[![Chat](https://img.shields.io/discord/457912077277855764?label=chat&logo=discord)](https://svelte.dev/chat)
22

3-
# sv - the Svelte scaffolding CLI
3+
# sv - the Svelte CLI
44

5-
Read the [SvelteKit documentation](https://kit.svelte.dev/docs) for more details about getting started with a newly created app.
5+
Read the [SvelteKit documentation](https://svelte.dev/docs/kit) for more details about getting started with a newly created app.
66

77
### Packages
88

documentation/docs/20-commands/40-sv-migrate.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ npx sv migrate [migration]
1414

1515
| Migration | From | To | Guide |
1616
| ------------- | --------------------- | --------------------- | --------------------------------------------------------------- |
17-
| `svelte-5` | Svelte 4 | Svelte 5 | [Website](https://svelte.dev/docs/v5-migration-guide) |
18-
| `sveltekit-2` | SvelteKit 1.0 | SvelteKit 2.0 | [Website](https://kit.svelte.dev/docs/migrating-to-sveltekit-2) |
19-
| `svelte-4` | Svelte 3 | Svelte 4 | [Website](https://svelte.dev/docs/v4-migration-guide) |
17+
| `svelte-5` | Svelte 4 | Svelte 5 | [Website](https://svelte.dev/docs/svelte/v5-migration-guide) |
18+
| `sveltekit-2` | SvelteKit 1.0 | SvelteKit 2.0 | [Website](https://svelte.dev/docs/kit/migrating-to-sveltekit-2) |
19+
| `svelte-4` | Svelte 3 | Svelte 4 | [Website](https://svelte.dev/docs/svelte/v4-migration-guide) |
2020
| `package` | `@sveltejs/package@1` | `@sveltejs/package@2` | [#8922](https://github.com/sveltejs/kit/pull/8922) |
2121
| `routes` | SvelteKit pre-1.0 | SvelteKit 1.0 | [#5774](https://github.com/sveltejs/kit/discussions/5774) |
2222

packages/cli/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# sv - the Svelte CLI
22

3-
A CLI for creating new [SvelteKit](https://kit.svelte.dev) projects and adding functionality to existing ones. Just run...
3+
A command line interface (CLI) for creating and maintaining [Svelte](https://svelte.dev) applications. Just run...
44

55
```bash
66
npx sv
@@ -31,4 +31,4 @@ This project was formed by merging the `create-svelte` and `svelte-add` CLIs. Th
3131

3232
## License
3333

34-
[MIT](../../LICENSE).
34+
[MIT](../../LICENSE)

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"directory": "packages/cli"
1919
},
2020
"license": "MIT",
21-
"homepage": "https://kit.svelte.dev",
21+
"homepage": "https://svelte.dev",
2222
"bin": "./dist/bin.js",
2323
"exports": {
2424
".": {

packages/create/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"directory": "packages/create"
2020
},
2121
"license": "MIT",
22-
"homepage": "https://kit.svelte.dev",
22+
"homepage": "https://svelte.dev",
2323
"exports": {
2424
".": {
2525
"types": "./dist/index.d.ts",

packages/create/shared/+checkjs/jsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"strict": true,
1212
"moduleResolution": "bundler"
1313
}
14-
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
15-
// except $lib which is handled by https://kit.svelte.dev/docs/configuration#files
14+
// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
15+
// except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
1616
//
1717
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
1818
// from the referenced tsconfig.json - TypeScript does not merge them in

packages/create/shared/+demo+checkjs/svelte.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
33

44
/** @type {import('@sveltejs/kit').Config} */
55
const config = {
6-
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
6+
// Consult https://svelte.dev/docs/kit/integrations#preprocessors
77
// for more information about preprocessors
88
preprocess: vitePreprocess(),
99

1010
kit: {
11-
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
11+
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
1212
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
13-
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
13+
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
1414
adapter: adapter()
1515
}
1616
};

packages/create/shared/+demo+typescript/svelte.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
33

44
/** @type {import('@sveltejs/kit').Config} */
55
const config = {
6-
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
6+
// Consult https://svelte.dev/docs/kit/integrations#preprocessors
77
// for more information about preprocessors
88
preprocess: vitePreprocess(),
99

1010
kit: {
11-
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
11+
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
1212
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
13-
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
13+
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
1414
adapter: adapter()
1515
}
1616
};

packages/create/shared/+demo-typescript/svelte.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import adapter from '@sveltejs/adapter-auto';
33
/** @type {import('@sveltejs/kit').Config} */
44
const config = {
55
kit: {
6-
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
6+
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
77
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
8-
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
8+
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
99
adapter: adapter()
1010
}
1111
};

packages/create/shared/+skeletonlib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Everything you need to build a Svelte library, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte).
44

5-
Read more about creating a library [in the docs](https://kit.svelte.dev/docs/packaging).
5+
Read more about creating a library [in the docs](https://svelte.dev/docs/kit/packaging).
66

77
## Creating a project
88

@@ -45,7 +45,7 @@ npm run build
4545

4646
You can preview the production build with `npm run preview`.
4747

48-
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
48+
> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.
4949
5050
## Publishing
5151

packages/create/shared/+typescript/svelte.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
33

44
/** @type {import('@sveltejs/kit').Config} */
55
const config = {
6-
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
6+
// Consult https://svelte.dev/docs/kit/integrations#preprocessors
77
// for more information about preprocessors
88
preprocess: vitePreprocess(),
99

1010
kit: {
11-
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
11+
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
1212
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
13-
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
13+
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
1414
adapter: adapter()
1515
}
1616
};

packages/create/shared/+typescript/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"strict": true,
1212
"moduleResolution": "bundler"
1313
}
14-
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
15-
// except $lib which is handled by https://kit.svelte.dev/docs/configuration#files
14+
// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
15+
// except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
1616
//
1717
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
1818
// from the referenced tsconfig.json - TypeScript does not merge them in

packages/create/shared/-typescript/svelte.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import adapter from '@sveltejs/adapter-auto';
33
/** @type {import('@sveltejs/kit').Config} */
44
const config = {
55
kit: {
6-
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
6+
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
77
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
8-
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
8+
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
99
adapter: adapter()
1010
}
1111
};

packages/create/shared/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ npm run build
3535

3636
You can preview the production build with `npm run preview`.
3737

38-
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
38+
> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.

packages/create/templates/demo/src/app.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// See https://kit.svelte.dev/docs/types#app
1+
// See https://svelte.dev/docs/kit/types#app
22
// for information about these interfaces
33
declare global {
44
namespace App {

packages/create/templates/demo/src/routes/+layout.svelte

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
</main>
1515

1616
<footer>
17-
<p>visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to learn SvelteKit</p>
17+
<p>
18+
visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to learn about SvelteKit
19+
</p>
1820
</footer>
1921
</div>
2022

packages/create/templates/demo/src/routes/Header.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<header>
88
<div class="corner">
9-
<a href="https://kit.svelte.dev">
9+
<a href="https://svelte.dev/docs/kit">
1010
<img src={logo} alt="SvelteKit" />
1111
</a>
1212
</div>

packages/create/templates/demo/src/routes/about/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<h1>About this app</h1>
88

99
<p>
10-
This is a <a href="https://kit.svelte.dev">SvelteKit</a> app. You can make your own by typing the
11-
following into your command line and following the prompts:
10+
This is a <a href="https://svelte.dev/docs/kit">SvelteKit</a> app. You can make your own by typing
11+
the following into your command line and following the prompts:
1212
</p>
1313

1414
<pre>npx sv create</pre>

packages/create/templates/demo/svelte.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
55

66
/** @type {import('@sveltejs/kit').Config} */
77
const config = {
8-
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
8+
// Consult https://svelte.dev/docs/kit/integrations#preprocessors
99
// for more information about preprocessors
1010
preprocess: vitePreprocess(),
1111

packages/create/templates/skeleton/src/app.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// See https://kit.svelte.dev/docs/types#app
1+
// See https://svelte.dev/docs/kit/types#app
22
// for information about these interfaces
33
declare global {
44
namespace App {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<h1>Welcome to SvelteKit</h1>
2-
<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>
2+
<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>

packages/create/templates/skeletonlib/src/app.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// See https://kit.svelte.dev/docs/types#app
1+
// See https://svelte.dev/docs/kit/types#app
22
// for information about these interfaces
33
declare global {
44
namespace App {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<h1>Welcome to your library project</h1>
22
<p>Create your package using @sveltejs/package and preview/showcase your work with SvelteKit</p>
3-
<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>
3+
<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>

0 commit comments

Comments
 (0)
0