Skip to content

Commit 14dce11

Browse files
committed
Updates to new website
1 parent 6996233 commit 14dce11

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ evolution of this library then please consider
100100

101101
## Documentation
102102

103-
See the [official website](https://easy-peasy.now.sh) for tutorials, docs,
104-
recipes, and more.
103+
See the [official website](https://easy-peasy.dev) for tutorials, docs, recipes,
104+
and more.
105105

106106
<p>&nbsp;</p>
107107

index.d.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ export type State<Model extends object = {}> = RecursiveState<Model>;
327327
/**
328328
* Creates a store.
329329
*
330-
* https://easy-peasy.now.sh/docs/api/create-store.html
330+
* https://easy-peasy.dev/docs/api/create-store.html
331331
*
332332
* @example
333333
*
@@ -501,7 +501,7 @@ type Meta = {
501501
/**
502502
* Declares a thunk against your model type definition.
503503
*
504-
* https://easy-peasy.now.sh/docs/typescript-api/thunk.html
504+
* https://easy-peasy.dev/docs/typescript-api/thunk.html
505505
*
506506
* @param Model - The model that the thunk is being bound to.
507507
* @param Payload - The type of the payload expected. Set to undefined if none.
@@ -536,7 +536,7 @@ export type Thunk<
536536
* Thunks are typically used to encapsulate side effects and are able to
537537
* dispatch other actions.
538538
*
539-
* https://easy-peasy.now.sh/docs/api/thunk.html
539+
* https://easy-peasy.dev/docs/api/thunk.html
540540
*
541541
* @example
542542
*
@@ -619,7 +619,7 @@ export type Action<Model extends object, Payload = void> = {
619619
/**
620620
* Declares an action.
621621
*
622-
* https://easy-peasy.now.sh/docs/api/action
622+
* https://easy-peasy.dev/docs/api/action
623623
*
624624
* @example
625625
*
@@ -935,7 +935,7 @@ export function generic<T>(value: T): Generic<T>;
935935
/**
936936
* A React Hook allowing you to use state within your component.
937937
*
938-
* https://easy-peasy.now.sh/docs/api/use-store-state.html
938+
* https://easy-peasy.dev/docs/api/use-store-state.html
939939
*
940940
* Note: you can create a pre-typed version of this hook via "createTypedHooks"
941941
*
@@ -960,7 +960,7 @@ export function useStoreState<
960960
/**
961961
* A React Hook allowing you to use actions within your component.
962962
*
963-
* https://easy-peasy.now.sh/docs/api/use-store-actions.html
963+
* https://easy-peasy.dev/docs/api/use-store-actions.html
964964
*
965965
* Note: you can create a pre-typed version of this hook via "createTypedHooks"
966966
*
@@ -981,7 +981,7 @@ export function useStoreActions<
981981
/**
982982
* A react hook that returns the store instance.
983983
*
984-
* https://easy-peasy.now.sh/docs/api/use-store.html
984+
* https://easy-peasy.dev/docs/api/use-store.html
985985
*
986986
* Note: you can create a pre-typed version of this hook via "createTypedHooks"
987987
*

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"type": "git",
2323
"url": "https://github.com/ctrlplusb/easy-peasy.git"
2424
},
25-
"homepage": "https://easy-peasy.now.sh",
25+
"homepage": "https://easy-peasy.dev",
2626
"author": "Sean Matheson <sean@ctrlplusb.com>",
2727
"keywords": [
2828
"react",

website/now.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"version": 2,
33
"name": "easy-peasy",
4-
"alias": "easy-peasy.now.sh",
4+
"alias": "easy-peasy.dev",
55
"builds": [
66
{
77
"src": "package.json",
88
"use": "@now/static-build",
99
"config": { "distDir": "docs/.vuepress/dist" }
1010
}
1111
]
12-
}
12+
}

0 commit comments

Comments
 (0)