feat(plugin): add namespaced hook API (#33416)

This commit is contained in:
Dax
2026-06-22 19:06:57 -04:00
committed by GitHub
parent dc468bdcfd
commit 909a1a6d78
150 changed files with 3286 additions and 3916 deletions
+2 -2
View File
@@ -35,7 +35,7 @@ describe("State", () => {
}),
)
it.effect("runs effectful transforms during every rebuild", () =>
it.effect("runs effectful transforms during every reload", () =>
Effect.gen(function* () {
let value = "first"
const state = State.create({
@@ -51,7 +51,7 @@ describe("State", () => {
expect(state.get().values).toEqual(["first"])
value = "second"
yield* state.rebuild()
yield* state.reload()
expect(state.get().values).toEqual(["second"])
}),
)