This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
⚠️⚠️⚠️⚠️⚠️⚠️
main is currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, run changeset pre exit on main.
⚠️⚠️⚠️⚠️⚠️⚠️
Releases
miniplex@2.0.0-next.17
Patch Changes
94054ed: Now exporting queue, a simple queueing mechanism that is being provided for convenience, and to make upgrading from Miniplex 1.0 (which provided its own
queueing mechanism) a little easier.
import { queue } from "miniplex"
/* Queue some work */
queue(() => console.log("Hello, world!"))
/* Call flush to execute all queued work */
queue.flush()
Notequeue will likely be marked as deprecated in a future version, and eventually removed. It's simply an instance of a queue provided by the @hmans/queue package, which you can also just use directly.
Updated dependencies [a293a9c]
@miniplex/react@2.0.0-next.17
@miniplex/react@2.0.0-next.17
Patch Changes
a293a9c: The object returned by createReactAPI now contains the world originally passed into it, as world.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
⚠️⚠️⚠️⚠️⚠️⚠️
main
is currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, runchangeset pre exit
onmain
.⚠️⚠️⚠️⚠️⚠️⚠️
Releases
miniplex@2.0.0-next.17
Patch Changes
94054ed: Now exporting
queue
, a simple queueing mechanism that is being provided for convenience, and to make upgrading from Miniplex 1.0 (which provided its own queueing mechanism) a little easier.Updated dependencies [a293a9c]
@miniplex/react@2.0.0-next.17
Patch Changes
createReactAPI
now contains theworld
originally passed into it, asworld
.