Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update queue (#126) #127

Merged
merged 1 commit into from
Jan 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update queue (#126)
* Start support for keepPendingForMs

* Add keepPendingForMs and updateQueue tests & fixes

* Fix keepPending issues with skipPendingDelay & add tests

* Add keepPendingForMs docs

* Some bundle optimizations & pre-10 publish
  • Loading branch information
incepter authored Jan 23, 2023
commit 467fb32d22fa4f5007370dbdbf4f4286d811a0b3
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"build:utils": "cd ./packages/react-async-states-utils && pnpm build && cd ../..",
"build:devtools": "cd ./packages/devtools-extension && pnpm build && cd ../..",
"build:all": "pnpm build:core && pnpm build:react && pnpm build:utils && pnpm build:devtools",
"build": "pnpm build:all",
"test": "cd ./packages/core && pnpm test && cd ../..&& cd ./packages/react-async-states && pnpm test"
}
}
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "incepter",
"sideEffects": false,
"name": "async-states",
"version": "1.0.0-pre-7",
"version": "1.0.0-pre-10",
"main": "dist/umd/index",
"types": "dist/es/src/index",
"module": "dist/es/src/index",
Expand Down
Loading