From e9b19675cc5bdd856ffdd35cb886b87dfd087d25 Mon Sep 17 00:00:00 2001 From: Igor Kamyshev Date: Mon, 13 May 2024 16:47:35 +0700 Subject: [PATCH] Change site URL --- .github/workflows/canary.yml | 4 ++-- CONTRIBUTING.md | 2 +- README.md | 2 +- .../docs/api/factories/create_json_query.live.vue | 2 +- packages/atomic-router/README.md | 2 +- packages/core/README.md | 2 +- packages/core/src/attach/attach.ts | 14 +++++++------- packages/core/src/cache/key/key.ts | 2 +- packages/core/src/mutation/create_json_mutation.ts | 4 ++-- packages/core/src/query/create_json_query.ts | 4 ++-- packages/dev-tools/README.md | 2 +- packages/io-ts/README.md | 2 +- packages/json-schema/README.md | 2 +- packages/runtypes/README.md | 2 +- packages/solid/README.md | 2 +- packages/superstruct/README.md | 2 +- packages/typed-contracts/README.md | 2 +- packages/valibot/README.md | 2 +- packages/zod/README.md | 2 +- 19 files changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 5ecd74456..9b7fcf1d5 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -58,7 +58,7 @@ jobs: Latest canary version is ${{ steps.canary_info.outputs.canaryVersion }} - [More information about canary versions](https://farfetched.pages.dev/releases/canary.html) + [More information about canary versions](https://ff.effector.dev/releases/canary.html) --- @@ -76,7 +76,7 @@ jobs: Latest canary version is ${{ steps.canary_info.outputs.canaryVersion }} - [More information about canary versions](https://farfetched.pages.dev/releases/canary.html) + [More information about canary versions](https://ff.effector.dev/releases/canary.html) --- diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 11c638d54..f24c9cbcf 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -36,7 +36,7 @@ While writing RFC, keep in mind that the new API (or changes in the existing API 2. Be consistent. The new feature should be consistent with the existing API. It should not introduce new concepts or patterns that are not used in the existing API unless it is necessary. 3. Simple solutions for simple problems, complex solutions for complex problems. Not vice versa. -Read existing [ADRs](https://farfetched.pages.dev/adr/) to get an understanding of the existing API and principles. +Read existing [ADRs](https://ff.effector.dev/adr/) to get an understanding of the existing API and principles. ## How to create a good implementation diff --git a/README.md b/README.md index 1a614b049..8f5b145e0 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ The advanced data fetching tool for web applications ### Documentation -Continue reading about Farfetched in the [documentation](https://farfetched.pages.dev). It covers integration with the most popular UI-frameworks (such React and Solid), error handling, dependent queries, advanced contracts and other great tools. +Continue reading about Farfetched in the [documentation](https://ff.effector.dev). It covers integration with the most popular UI-frameworks (such React and Solid), error handling, dependent queries, advanced contracts and other great tools. ### Showcases diff --git a/apps/website/docs/api/factories/create_json_query.live.vue b/apps/website/docs/api/factories/create_json_query.live.vue index 4f62a57c7..3c99d3554 100644 --- a/apps/website/docs/api/factories/create_json_query.live.vue +++ b/apps/website/docs/api/factories/create_json_query.live.vue @@ -15,7 +15,7 @@ const randomQuotesQuery = createJsonQuery({ /* * We use runtypes to validate response, * but you can replace it with other library, see 👇 - * https://farfetched.pages.dev/tutorial/contracts.html#third-party-solutions + * https://ff.effector.dev/tutorial/contracts.html#third-party-solutions */ contract: runtypeContract( Array( diff --git a/packages/atomic-router/README.md b/packages/atomic-router/README.md index 89f510abf..3b7ee8eed 100644 --- a/packages/atomic-router/README.md +++ b/packages/atomic-router/README.md @@ -1,3 +1,3 @@ # @farfetched/atomic-router -Read documentation [here](https://farfetched.pages.dev/api/routers/atomic-router.html). +Read documentation [here](https://ff.effector.dev/api/routers/atomic-router.html). diff --git a/packages/core/README.md b/packages/core/README.md index ed2587813..8c96065a2 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -1,3 +1,3 @@ # @farfetched/core -Read documentation [here](https://farfetched.pages.dev). +Read documentation [here](https://ff.effector.dev). diff --git a/packages/core/src/attach/attach.ts b/packages/core/src/attach/attach.ts index 9877abc83..e8e91f3ba 100644 --- a/packages/core/src/attach/attach.ts +++ b/packages/core/src/attach/attach.ts @@ -13,7 +13,7 @@ import { /** * @deprecated Deprecated since 0.12 - * @see {@link https://farfetched.pages.dev/adr/attach_operation_deprecation.html#how-to-migrate} + * @see {@link https://ff.effector.dev/adr/attach_operation_deprecation.html#how-to-migrate} */ export function attachOperation< NewParams, @@ -34,7 +34,7 @@ export function attachOperation< /** * @deprecated Deprecated since 0.12 - * @see {@link https://farfetched.pages.dev/adr/attach_operation_deprecation.html#how-to-migrate} + * @see {@link https://ff.effector.dev/adr/attach_operation_deprecation.html#how-to-migrate} */ export function attachOperation>( operation: Q, @@ -48,7 +48,7 @@ export function attachOperation>( /** * @deprecated Deprecated since 0.12 - * @see {@link https://farfetched.pages.dev/adr/attach_operation_deprecation.html#how-to-migrate} + * @see {@link https://ff.effector.dev/adr/attach_operation_deprecation.html#how-to-migrate} */ export function attachOperation>( operation: Q @@ -58,7 +58,7 @@ export function attachOperation>( /** * @deprecated Deprecated since 0.12 - * @see {@link https://farfetched.pages.dev/adr/attach_operation_deprecation.html#how-to-migrate} + * @see {@link https://ff.effector.dev/adr/attach_operation_deprecation.html#how-to-migrate} */ export function attachOperation< NewParams, @@ -74,7 +74,7 @@ export function attachOperation< /** * @deprecated Deprecated since 0.12 - * @see {@link https://farfetched.pages.dev/adr/attach_operation_deprecation.html#how-to-migrate} + * @see {@link https://ff.effector.dev/adr/attach_operation_deprecation.html#how-to-migrate} */ export function attachOperation>( operation: M, @@ -83,7 +83,7 @@ export function attachOperation>( /** * @deprecated Deprecated since 0.12 - * @see {@link https://farfetched.pages.dev/adr/attach_operation_deprecation.html#how-to-migrate} + * @see {@link https://ff.effector.dev/adr/attach_operation_deprecation.html#how-to-migrate} */ export function attachOperation>( operation: M @@ -93,7 +93,7 @@ export function attachOperation>( /** * @deprecated Deprecated since 0.12 - * @see {@link https://farfetched.pages.dev/adr/attach_operation_deprecation.html#how-to-migrate} + * @see {@link https://ff.effector.dev/adr/attach_operation_deprecation.html#how-to-migrate} */ export function attachOperation< NewParams, diff --git a/packages/core/src/cache/key/key.ts b/packages/core/src/cache/key/key.ts index 872571677..d868d2a65 100644 --- a/packages/core/src/cache/key/key.ts +++ b/packages/core/src/cache/key/key.ts @@ -50,7 +50,7 @@ export function queryUniqId(query: Query) { } throw new Error( - 'Query does not have sid or uniq name, which is required for caching, read more https://farfetched.pages.dev/recipes/sids.html' + 'Query does not have sid or uniq name, which is required for caching, read more https://ff.effector.dev/recipes/sids.html' ); } diff --git a/packages/core/src/mutation/create_json_mutation.ts b/packages/core/src/mutation/create_json_mutation.ts index 5bd4e8fb5..52874ffa0 100644 --- a/packages/core/src/mutation/create_json_mutation.ts +++ b/packages/core/src/mutation/create_json_mutation.ts @@ -60,7 +60,7 @@ interface BaseJsonMutationConfigNoParams< >; /** * @deprecated Deprecated since 0.12, use `concurrency` operator instead - * @see {@link https://farfetched.pages.dev/adr/concurrency} + * @see {@link https://ff.effector.dev/adr/concurrency} */ concurrency?: ConcurrencyConfig; } @@ -83,7 +83,7 @@ interface BaseJsonMutationConfigWithParams< >; /** * @deprecated Deprecated since 0.12, use `concurrency` operator instead - * @see {@link https://farfetched.pages.dev/adr/concurrency} + * @see {@link https://ff.effector.dev/adr/concurrency} */ concurrency?: ConcurrencyConfig; } diff --git a/packages/core/src/query/create_json_query.ts b/packages/core/src/query/create_json_query.ts index 2c18ca4fa..95641b982 100644 --- a/packages/core/src/query/create_json_query.ts +++ b/packages/core/src/query/create_json_query.ts @@ -61,7 +61,7 @@ interface BaseJsonQueryConfigNoParams< >; /** * @deprecated Deprecated since 0.12, use `concurrency` operator instead - * @see {@link https://farfetched.pages.dev/adr/concurrency} + * @see {@link https://ff.effector.dev/adr/concurrency} */ concurrency?: ConcurrencyConfig; } @@ -84,7 +84,7 @@ interface BaseJsonQueryConfigWithParams< >; /** * @deprecated Deprecated since 0.12, use `concurrency` operator instead - * @see {@link https://farfetched.pages.dev/adr/concurrency} + * @see {@link https://ff.effector.dev/adr/concurrency} */ concurrency?: ConcurrencyConfig; } diff --git a/packages/dev-tools/README.md b/packages/dev-tools/README.md index a975e7d43..2b0b1dc3c 100644 --- a/packages/dev-tools/README.md +++ b/packages/dev-tools/README.md @@ -1,3 +1,3 @@ # @farfetched/dev-tools -Read documentation [here](https://farfetched.pages.dev/tutorial/devtools.html). +Read documentation [here](https://ff.effector.dev/tutorial/devtools.html). diff --git a/packages/io-ts/README.md b/packages/io-ts/README.md index d8de451f3..d09b2d769 100644 --- a/packages/io-ts/README.md +++ b/packages/io-ts/README.md @@ -1,3 +1,3 @@ # @farfetched/io-ts -Read documentation [here](https://farfetched.pages.dev/api/contracts/io-ts.html). +Read documentation [here](https://ff.effector.dev/api/contracts/io-ts.html). diff --git a/packages/json-schema/README.md b/packages/json-schema/README.md index 0fa104caa..ebf870db5 100644 --- a/packages/json-schema/README.md +++ b/packages/json-schema/README.md @@ -1,3 +1,3 @@ # @farfetched/json-schema -Read documentation [here](https://farfetched.pages.dev/api/contracts/json-schema.html). +Read documentation [here](https://ff.effector.dev/api/contracts/json-schema.html). diff --git a/packages/runtypes/README.md b/packages/runtypes/README.md index 97774f171..5e0580ac5 100644 --- a/packages/runtypes/README.md +++ b/packages/runtypes/README.md @@ -1,3 +1,3 @@ # @farfetched/runtypes -Read documentation [here](https://farfetched.pages.dev/api/contracts/runtypes.html). +Read documentation [here](https://ff.effector.dev/api/contracts/runtypes.html). diff --git a/packages/solid/README.md b/packages/solid/README.md index 57cd34fa6..607dea27b 100644 --- a/packages/solid/README.md +++ b/packages/solid/README.md @@ -1,3 +1,3 @@ # @farfetched/solid -Read documentation [here](https://farfetched.pages.dev/api/ui/solid.html). +Read documentation [here](https://ff.effector.dev/api/ui/solid.html). diff --git a/packages/superstruct/README.md b/packages/superstruct/README.md index 2d23aac1e..a19767c2c 100644 --- a/packages/superstruct/README.md +++ b/packages/superstruct/README.md @@ -1,3 +1,3 @@ # @farfetched/superstruct -Read documentation [here](https://farfetched.pages.dev/api/contracts/superstruct.html). +Read documentation [here](https://ff.effector.dev/api/contracts/superstruct.html). diff --git a/packages/typed-contracts/README.md b/packages/typed-contracts/README.md index b47c8559e..c26d2d5e8 100644 --- a/packages/typed-contracts/README.md +++ b/packages/typed-contracts/README.md @@ -1,3 +1,3 @@ # @farfetched/typed-contracts -Read documentation [here](https://farfetched.pages.dev/api/contracts/typed-contracts.html). +Read documentation [here](https://ff.effector.dev/api/contracts/typed-contracts.html). diff --git a/packages/valibot/README.md b/packages/valibot/README.md index 78b7fb7c8..74316d5fd 100644 --- a/packages/valibot/README.md +++ b/packages/valibot/README.md @@ -1,3 +1,3 @@ # @farfetched/valibot -Read documentation [here](https://farfetched.pages.dev/api/contracts/valibot.html). +Read documentation [here](https://ff.effector.dev/api/contracts/valibot.html). diff --git a/packages/zod/README.md b/packages/zod/README.md index 0eeac97bd..67c43b412 100644 --- a/packages/zod/README.md +++ b/packages/zod/README.md @@ -1,3 +1,3 @@ # @farfetched/zod -Read documentation [here](https://farfetched.pages.dev/api/contracts/zod.html). +Read documentation [here](https://ff.effector.dev/api/contracts/zod.html).