Skip to content

Commit

Permalink
Remove workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
jviide committed Sep 16, 2022
1 parent 3ab609c commit d351c3f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/core/src/index.ts
Expand Up @@ -634,13 +634,11 @@ function effect(compute: () => void): () => void {
return effect._dispose.bind(effect);
}

// Work around problems with the test runner not finding the exported Signal class object.
const _Signal = Signal;
export {
signal,
computed,
effect,
batch,
_Signal as Signal,
Signal,
type Computed as ReadonlySignal
};

0 comments on commit d351c3f

Please sign in to comment.