Skip to content

Commit

Permalink
chore: bump jotai to 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunvegda committed Mar 2, 2023
1 parent bf8364d commit f1a6574
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-watch-typeahead": "^2.2.1",
"jotai": "^2.0.2",
"jotai": "^2.0.3",
"jotai-tanstack-query": "^0.5.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
Expand Down
5 changes: 1 addition & 4 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ export type Store = ReturnType<typeof createStore>;
export type Options = Parameters<typeof useStore>[0];

export type AnyAtomValue = unknown;
export type AnyAtom = Atom<AnyAtomValue> & {
// FIXME remove this after [email protected] is added
debugPrivate?: boolean;
};
export type AnyAtom = Atom<AnyAtomValue>;
export type AtomsValues = Map<AnyAtom, AnyAtomValue>; // immutable
export type AtomsDependents = Map<AnyAtom, Set<AnyAtom>>; // immutable
export type AtomsSnapshot = Readonly<{
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8544,10 +8544,10 @@ jotai-tanstack-query@^0.5.0:
resolved "https://registry.yarnpkg.com/jotai-tanstack-query/-/jotai-tanstack-query-0.5.0.tgz#d6d5e3efbd9704f4c4c5c381f8b46f635e62d062"
integrity sha512-UXfI+I+bdrYL3R1o+OrADY9diizQD8/yqi+DJswOisKGzvNJs1FUIXi9ugtWVR9cjAfRuroG6fQzJhuNyUJ70g==

jotai@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/jotai/-/jotai-2.0.2.tgz#52728e91de61742263e40fda79a367ab4649506c"
integrity sha512-0yOked08Swa84LUbBjtj7ZLZrE05n3u50rHeZ+bsT86thUjcy0kFgQz9GmEWhYbQDFoT1G8Ww6edSj/MBJHO4A==
jotai@^2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/jotai/-/jotai-2.0.3.tgz#3b67cda9f6d5feb70a14db0b842a9873aacda8b5"
integrity sha512-MMjhSPAL3RoeZD9WbObufRT2quThEAEknHHridf2ma8Ml7ZVQmUiHk0ssdbR3F0h3kcwhYqSGJ59OjhPge7RRg==

joycon@^3.0.1:
version "3.1.1"
Expand Down

0 comments on commit f1a6574

Please sign in to comment.