Skip to content

Commit

Permalink
docs: update links
Browse files Browse the repository at this point in the history
  • Loading branch information
logaretm committed Dec 31, 2023
1 parent fdf3394 commit 0010e15
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

### Breaking Changes

- deprecate the `context` and `fetch` options in favor of [custom plugins API](https://villus.logaretm.com/villus/guide/plugins)
- deprecate the exported `batch` fetcher in favor of [`@villus/batch` plugin](https://villus.logaretm.com/villus/plugins/batch)
- deprecate the `context` and `fetch` options in favor of [custom plugins API](https://villus.dev/villus/guide/plugins)
- deprecate the exported `batch` fetcher in favor of [`@villus/batch` plugin](https://villus.dev/villus/plugins/batch)
- changed the signature of provider and useClient ([b4fa6d9](https://github.com/logaretm/villus/commit/b4fa6d953a4997554497253bf520d401c571d4b2)) due to conflicts with TypeScript typings

### Bug Fixes
Expand All @@ -395,8 +395,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

A large chunk of villus code has been re-written from scratch to use a pipeline-like operation transformers (plugins) similair to what apollo client and urql are doing with much less jargon and complexity, they are just a simple middleware performing operations on GraphQL queries as they go out or after execution.

[Check the documentation here](https://villus.logaretm.com/villus/guide/plugins)
[Check the documentation here](https://villus.dev/villus/guide/plugins)

#### `multipart` plugin

The `multipart` plugin will enable support for graphql file upload, [check the documentation and examples here](https://villus.logaretm.com/villus/plugins/multipart)
The `multipart` plugin will enable support for graphql file upload, [check the documentation and examples here](https://villus.dev/villus/plugins/multipart)
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<a target="_blank" href="https://npm-stat.com/charts.html?package=villus">
<img src="https://img.shields.io/npm/dm/villus.svg?color=05bd6d&label=">
</a>
<a href="https://villus.logaretm.com/" target="_blank">
<a href="https://villus.dev/" target="_blank">
<img src="https://img.shields.io/badge/-docs%20and%20demos-009f53">
</a>
<a href="https://github.com/sponsors/logaretm">
Expand Down Expand Up @@ -57,7 +57,7 @@ You can read more about it in the [announcement post](https://logaretm.com/blog/

## Documentation

You can find the [documentation here](https://villus.logaretm.com/)
You can find the [documentation here](https://villus.dev/)

## Quick Start

Expand Down Expand Up @@ -122,7 +122,7 @@ const { data } = useQuery({
</script>
```

`villus` makes frequent tasks such as re-fetching, caching, deduplication, mutations, and subscriptions a breeze. It has even built-in `Suspense` support with Vue 3! Consult the [documentation](https://villus.logaretm.com) for more use-cases and examples.
`villus` makes frequent tasks such as re-fetching, caching, deduplication, mutations, and subscriptions a breeze. It has even built-in `Suspense` support with Vue 3! Consult the [documentation](https://villus.dev) for more use-cases and examples.

## Compatibility

Expand All @@ -132,7 +132,7 @@ This library is compatible with Vue 3.0+ or 2.7+

## Examples

Live examples can be found [here](https://villus.logaretm.com/examples/basic-query)
Live examples can be found [here](https://villus.dev/examples/basic-query)

## License

Expand Down
2 changes: 1 addition & 1 deletion docs/astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import partytown from '@astrojs/partytown';

// https://astro.build/config
export default defineConfig({
site: process.env.NODE_ENV === 'production' ? 'https://villus.logaretm.com' : 'http://localhost:3000',
site: process.env.NODE_ENV === 'production' ? 'https://villus.dev' : 'http://localhost:3000',
integrations: [
vue(),
sitemap(),
Expand Down
2 changes: 1 addition & 1 deletion docs/src/config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
appURL: process.env.NODE_ENV === 'production' ? 'https://villus.logaretm.com' : 'http://localhost:3000',
appURL: process.env.NODE_ENV === 'production' ? 'https://villus.dev' : 'http://localhost:3000',
algolia: {
apiKey: '434db5d5d2794ec2818d4665d631a15b',
appId: '1SMG3JU76L',
Expand Down
2 changes: 1 addition & 1 deletion packages/batch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dist/*.js",
"dist/batch.d.ts"
],
"homepage": "https://villus.logaretm.com/",
"homepage": "https://villus.dev/",
"repository": "https://github.com/logaretm/villus",
"sideEffects": false,
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/multipart/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dist/*.js",
"dist/multipart.d.ts"
],
"homepage": "https://villus.logaretm.com/",
"homepage": "https://villus.dev/",
"repository": "https://github.com/logaretm/villus",
"sideEffects": false,
"keywords": [
Expand Down
8 changes: 4 additions & 4 deletions packages/villus/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

### Breaking Changes

- deprecate the `context` and `fetch` options in favor of [custom plugins API](https://villus.logaretm.com/villus/guide/plugins)
- deprecate the exported `batch` fetcher in favor of [`@villus/batch` plugin](https://villus.logaretm.com/villus/plugins/batch)
- deprecate the `context` and `fetch` options in favor of [custom plugins API](https://villus.dev/villus/guide/plugins)
- deprecate the exported `batch` fetcher in favor of [`@villus/batch` plugin](https://villus.dev/villus/plugins/batch)
- changed the signature of provider and useClient ([b4fa6d9](https://github.com/logaretm/villus/commit/b4fa6d953a4997554497253bf520d401c571d4b2)) due to conflicts with TypeScript typings

### Bug Fixes
Expand All @@ -395,8 +395,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

A large chunk of villus code has been re-written from scratch to use a pipeline-like operation transformers (plugins) similair to what apollo client and urql are doing with much less jargon and complexity, they are just a simple middleware performing operations on GraphQL queries as they go out or after execution.

[Check the documentation here](https://villus.logaretm.com/villus/guide/plugins)
[Check the documentation here](https://villus.dev/villus/guide/plugins)

#### `multipart` plugin

The `multipart` plugin will enable support for graphql file upload, [check the documentation and examples here](https://villus.logaretm.com/villus/plugins/multipart)
The `multipart` plugin will enable support for graphql file upload, [check the documentation and examples here](https://villus.dev/villus/plugins/multipart)
8 changes: 4 additions & 4 deletions packages/villus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<a target="_blank" href="https://npm-stat.com/charts.html?package=villus">
<img src="https://img.shields.io/npm/dm/villus.svg?color=05bd6d&label=">
</a>
<a href="https://villus.logaretm.com/" target="_blank">
<a href="https://villus.dev/" target="_blank">
<img src="https://img.shields.io/badge/-docs%20and%20demos-009f53">
</a>
<a href="https://github.com/sponsors/logaretm">
Expand Down Expand Up @@ -57,7 +57,7 @@ You can read more about it in the [announcement post](https://logaretm.com/blog/

## Documentation

You can find the [documentation here](https://villus.logaretm.com/)
You can find the [documentation here](https://villus.dev/)

## Quick Start

Expand Down Expand Up @@ -122,7 +122,7 @@ const { data } = useQuery({
</script>
```

`villus` makes frequent tasks such as re-fetching, caching, deduplication, mutations, and subscriptions a breeze. It has even built-in `Suspense` support with Vue 3! Consult the [documentation](https://villus.logaretm.com) for more use-cases and examples.
`villus` makes frequent tasks such as re-fetching, caching, deduplication, mutations, and subscriptions a breeze. It has even built-in `Suspense` support with Vue 3! Consult the [documentation](https://villus.dev) for more use-cases and examples.

## Compatibility

Expand All @@ -132,7 +132,7 @@ This library is compatible with Vue 3.0+ or 2.7+

## Examples

Live examples can be found [here](https://villus.logaretm.com/examples/basic-query)
Live examples can be found [here](https://villus.dev/examples/basic-query)

## License

Expand Down

0 comments on commit 0010e15

Please sign in to comment.