Skip to content

Commit

Permalink
Change site URL
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkamyshev committed May 13, 2024
1 parent d25c937 commit e9b1967
Show file tree
Hide file tree
Showing 19 changed files with 28 additions and 28 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
---
Expand All @@ -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)
---
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion apps/website/docs/api/factories/create_json_query.live.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion packages/atomic-router/README.md
Original file line number Diff line number Diff line change
@@ -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).
2 changes: 1 addition & 1 deletion packages/core/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# @farfetched/core

Read documentation [here](https://farfetched.pages.dev).
Read documentation [here](https://ff.effector.dev).
14 changes: 7 additions & 7 deletions packages/core/src/attach/attach.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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<NewParams, Q extends Query<any, any, any, any>>(
operation: Q,
Expand All @@ -48,7 +48,7 @@ export function attachOperation<NewParams, Q extends Query<any, any, any, any>>(

/**
* @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<Q extends Query<any, any, any, any>>(
operation: Q
Expand All @@ -58,7 +58,7 @@ export function attachOperation<Q extends Query<any, any, any, any>>(

/**
* @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,
Expand All @@ -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<NewParams, M extends Mutation<any, any, any>>(
operation: M,
Expand All @@ -83,7 +83,7 @@ export function attachOperation<NewParams, M extends Mutation<any, any, any>>(

/**
* @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<M extends Mutation<any, any, any>>(
operation: M
Expand All @@ -93,7 +93,7 @@ export function attachOperation<M extends Mutation<any, any, any>>(

/**
* @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,
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/cache/key/key.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function queryUniqId(query: Query<any, any, any>) {
}

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'
);
}

Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/mutation/create_json_mutation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/query/create_json_query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/dev-tools/README.md
Original file line number Diff line number Diff line change
@@ -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).
2 changes: 1 addition & 1 deletion packages/io-ts/README.md
Original file line number Diff line number Diff line change
@@ -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).
2 changes: 1 addition & 1 deletion packages/json-schema/README.md
Original file line number Diff line number Diff line change
@@ -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).
2 changes: 1 addition & 1 deletion packages/runtypes/README.md
Original file line number Diff line number Diff line change
@@ -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).
2 changes: 1 addition & 1 deletion packages/solid/README.md
Original file line number Diff line number Diff line change
@@ -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).
2 changes: 1 addition & 1 deletion packages/superstruct/README.md
Original file line number Diff line number Diff line change
@@ -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).
2 changes: 1 addition & 1 deletion packages/typed-contracts/README.md
Original file line number Diff line number Diff line change
@@ -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).
2 changes: 1 addition & 1 deletion packages/valibot/README.md
Original file line number Diff line number Diff line change
@@ -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).
2 changes: 1 addition & 1 deletion packages/zod/README.md
Original file line number Diff line number Diff line change
@@ -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).

0 comments on commit e9b1967

Please sign in to comment.